* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #fff;
}

.navbar {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out;
}

.navbar.scroll-down {
    transform: translateY(-100%);
}

.navbar.scroll-up {
    transform: translateY(0);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    padding-top: 80px;
}

.hero {
    text-align: center;
    padding: 80px 0 60px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.85;
    font-weight: 400;
}

.story {
    padding: 40px 0 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 35px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

.story-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.timeline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.timeline-dot {
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(240, 147, 251, 0.6);
}

.timeline h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.story-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.story-card strong {
    color: #f093fb;
    font-weight: 700;
}

.story-card em {
    font-style: italic;
    opacity: 0.9;
}

.highlight {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 4px 12px;
    border-radius: 5px;
    font-weight: 600;
}

footer {
    text-align: center;
    padding: 30px;
    opacity: 0.5;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }
    
    .nav-brand {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }

    main {
        padding: 0 20px;
        padding-top: 70px;
    }

    .hero {
        padding: 50px 0 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .story-card {
        padding: 25px;
    }

    .story-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 12px;
        padding: 12px 15px;
    }
    
    .nav-links {
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 0.95rem;
    }
}