/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
    cursor: auto;
}

/* Neural Canvas */
#neuralCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 170, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 170, 0.03) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: -2;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Scanlines effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.02) 2px,
        rgba(255, 255, 255, 0.02) 4px
    );
    animation: scanlines 0.1s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes scanlines {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(4px);
    }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Header styles */
.main-header {
    text-align: center;
    margin-bottom: 60px;
}

.name {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    margin: 0;
    animation: textGlow 4s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 40px rgba(0, 136, 204, 0.4);
    }
}

.subtitle {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.7;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Idea section */
.idea-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.idea-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.idea-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.idea-card.featured {
    border-color: rgba(120, 0, 255, 0.5);
    box-shadow: 0 0 20px rgba(120, 0, 255, 0.2);
}

.idea-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.idea-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.idea-badge {
    background: linear-gradient(135deg, rgba(120, 0, 255, 0.3), rgba(255, 0, 120, 0.3));
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.idea-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.idea-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-top: 10px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.idea-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #ccc;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.1);
}

.idea-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.idea-list li {
    padding-left: 25px;
    position: relative;
    color: #ccc;
    line-height: 1.6;
}

.idea-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: rgba(120, 0, 255, 0.8);
    font-weight: bold;
}

.idea-list li strong {
    color: #fff;
    font-weight: 600;
}

/* Tech tags */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.tech-tag {
    background: rgba(120, 0, 255, 0.2);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(120, 0, 255, 0.4);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(120, 0, 255, 0.3);
    border-color: rgba(120, 0, 255, 0.6);
    transform: translateY(-2px);
}

/* Status badge */
.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid;
}

.status-badge.planning {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border-color: rgba(255, 165, 0, 0.4);
}

.status-badge.development {
    background: rgba(0, 170, 255, 0.2);
    color: #00aaff;
    border-color: rgba(0, 170, 255, 0.4);
}

.status-badge.completed {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border-color: rgba(0, 255, 0, 0.4);
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .idea-card {
        padding: 20px;
    }
    
    .idea-title {
        font-size: 1.5rem;
    }
    
    .idea-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 10px;
    }
    
    .name {
        font-size: 1.8rem;
    }
    
    .idea-card {
        padding: 15px;
    }
    
    .idea-title {
        font-size: 1.3rem;
    }
}

