body {
    font-family: Arial, sans-serif;
    background-color: #16091E;
    color: white;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    z-index: 1;
}

/* Fixed gradient backgrounds */
body::before, body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

body::before {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, #FF00E5 0%, transparent 70%);
}

body::after {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, #21FF00 0%, transparent 70%);
}

/* Header styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px 0;
    z-index: 100;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.5s ease;
}

.header.visible {
    transform: translateY(0);
    opacity: 1;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    margin: 0;
    font-size: 1.5rem;
    color: white;
    font-family: 'Onder';
}

/* Hero section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
}

.main-title {
    font-size: 2rem;
    margin: 0;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
    font-family: 'Onder';
}

.subtitle-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.subtitle {
    font-size: 1.8rem;
    opacity: 1;
    transition: all 0.5s ease;
    font-family: 'Nauryz RedKeds';
}

/* Intro section */
.intro-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.intro-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.intro-text {
    margin-bottom: 40px;
    font-size: 1.2rem;
    font-family: 'BIM';
}

/* Quote box */
.quote-box {
    border-left: 3px solid #FF00E5;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 40px 0;
    text-align: left;
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.quote-box.visible {
    transform: scale(1);
}

.quote-box.large {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    border-left: 5px solid #21FF00;
}

blockquote {
    margin: 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: bold;
    color: #aaa;
}

/* Timeline */
.timeline {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.timeline-item {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.timeline-header h2 {
    margin: 0;
    font-size: 2rem;
    color: #FF00E5;
}

.timeline-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-left: 30px;
    background-size: cover;
    background-position: center;
    border: 3px solid #21FF00;
    box-shadow: 0 0 20px rgba(33, 255, 0, 0.3);
}

.timeline-content {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50px;
    width: 20px;
    height: 20px;
    background-color: #FF00E5;
    transform: rotate(45deg);
}

.timeline-content p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.timeline-content strong {
    color: #21FF00;
}

/* Fact box */
.fact-box {
    background-color: rgba(33, 255, 0, 0.1);
    border-left: 3px solid #21FF00;
    padding: 15px;
    margin: 20px 0;
    font-size: 0.9rem;
}

/* Gallery */
.gallery {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.gallery-item {
    flex: 1;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Final quote */
.final-quote {
    padding: 80px 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.final-quote.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer h3 {
    font-family: 'Onder', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: white;
}

.footer ul {
    list-style-type: none;
}

.footer li {
    margin-bottom: 0.6rem;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer a:hover {
    color: #FF00E5;
}

.footer-copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
}
/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .subtitle-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-image {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .gallery {
        flex-direction: column;
    }
}
/* Font faces */
@font-face {
    font-family: 'Onder';
    src: url('fonts/Onder.ttf') format('truetype');
}

@font-face {
    font-family: 'Nauryz RedKeds';
    src: url('fonts/NAURYZREDKEDS.ttf') format('truetype');
}

@font-face {
    font-family: 'BIM';
    src: url('fonts/BIM.otf') format('truetype');
}

@font-face {
    font-family: 'Etud Noire';
    src: url('fonts/EtudNoire.ttf') format('truetype');
}

