* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.logo {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    z-index: 1;
}

/* Infinity Loader */
.infinity-loader {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
    z-index: 1;
}

#outline {
    stroke-dasharray: 2.427766571px, 242.7766571045px;
    stroke-dashoffset: 0;
    animation: infinityAnim 1.6s linear infinite;
}

.tagline {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #888;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease-out 2s forwards, bounce 2s ease-in-out 3s infinite;
    font-size: 2rem;
    color: #00d4ff;
    cursor: pointer;
    z-index: 1;
    user-select: none;
}

/* Content Section */
.content-section {
    min-height: 100vh;
    padding: 80px 20px;
    background: #0f0f0f;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.content-card {
    background: rgba(26, 26, 46, 0.5);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.2);
}

h2 {
    color: #00d4ff;
    margin-bottom: 20px;
    font-weight: 400;
}

p {
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 40px 20px;
    color: #555;
    background: #0a0a0a;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes infinityAnim {
    12.5% {
        stroke-dasharray: 33.9887319946px, 242.7766571045px;
        stroke-dashoffset: -26.7054322815px;
    }
    43.75% {
        stroke-dasharray: 84.9718299866px, 242.7766571045px;
        stroke-dashoffset: -84.9718299866px;
        stroke: #f5981c;
    }
    to {
        stroke-dasharray: 2.427766571px, 242.7766571045px;
        stroke-dashoffset: -240.3488905334px;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }
    
    .content-card {
        padding: 30px 20px;
    }
}
