@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

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

:root {
    --purple-main: #4d0fff;
    --bg-dark: #010105;
    --bg-light: #2919aa;
    --white: #ffffff;
    --glow-purple: rgba(77, 15, 255, 0.8);
}
/* Prevent horizontal scroll on mobile */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-light) 100%);
    color: var(--white);
    overflow-x: hidden;
    
}

/* Navigation - Force exact sizing */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(1, 1, 5, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 1000;
    border-bottom: 1px solid rgba(77, 15, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    box-sizing: border-box;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1;
    height: 100%;
}

nav ul li {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1;
    list-style: none;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    display: inline-block;
    line-height: 1.2;
    box-sizing: border-box;
}

nav ul li a:hover {
    color: var(--purple-main);
    text-shadow: 0 0 10px var(--glow-purple);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple-main);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}
/* About Hero Section */
.about-hero {
    position: relative;
    padding-top: 100px;
    padding-bottom: 40px;  /* Reduced from 60px */
    text-align: center;
    background: linear-gradient(180deg, rgba(1, 1, 5, 0.9) 0%, rgba(41, 25, 170, 0.3) 100%);
    overflow: hidden;
    min-height: auto;  /* Changed from 500px */
    max-height: none;  /* Changed from 600px */
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.about-logo {
    width: 120px;
    height: auto;
	border-radius: 20px;
    margin-bottom: 2rem;
	border: 2px solid var(--purple-main);
    filter: drop-shadow(0 0 30px var(--glow-purple));
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #2718a1, var(--purple-main), #7b2fff, var(--purple-main), #2718a1);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    text-shadow: 0 0 40px var(--glow-purple);
}
@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #d0d0d0;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Main Content */
.about-content {
    padding: 4rem 2rem;
    line-height: 1.8;
}

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

.story-section {
    background: rgba(20, 20, 30, 0.6);
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 10px;
    border: 2px solid rgba(77, 15, 255, 0.3);
    transition: all 0.3s ease;
}

.story-section:hover {
    border-color: var(--purple-main);
    box-shadow: 0 0 30px rgba(77, 15, 255, 0.3);
}

.story-section h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px var(--glow-purple), 0 0 10px rgba(255, 255, 255, 0.5);
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #d0d0d0;
}

/* Highlight Sections */
.highlight-section {
    background: rgba(77, 15, 255, 0.1);
    border: 3px solid var(--purple-main);
    box-shadow: 0 0 40px rgba(77, 15, 255, 0.4);
}

.highlight-section:hover {
    box-shadow: 0 0 60px rgba(77, 15, 255, 0.6);
}

/* Tweet Embed */
.tweet-embed {
    margin-top: 2rem;
    text-align: center;
}

.tweet-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: rgba(77, 15, 255, 0.2);
    border: 2px solid var(--purple-main);
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tweet-link:hover {
    background: var(--purple-main);
    box-shadow: 0 0 30px var(--glow-purple);
    transform: translateY(-5px);
}

.tweet-icon {
    font-size: 2rem;
}

/* Footer */
footer {
    background: var(--bg-dark);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(77, 15, 255, 0.3);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-socials a {
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-socials a img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(50%) brightness(1.2);
    transition: all 0.3s ease;
}

.footer-socials a:hover img {
    filter: grayscale(0%) brightness(1.5) drop-shadow(0 0 20px var(--glow-purple));
    transform: scale(1.2);
}
.footer-links {
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: var(--purple-main);
}
.copyright {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 0.8rem 1rem;
    }
    
    nav ul {
        gap: 0.5rem;
    }

    nav ul li a {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
        letter-spacing: 0.5px;
    }

    /* About Hero */
    .about-hero {
        padding-top: 80px;
        padding-bottom: 30px;
    }
    
    .about-hero-content {
        padding: 1.5rem;
    }
    
    .about-logo {
        width: 80px;
        margin-bottom: 1.5rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Main Content */
    .about-content {
        padding: 3rem 1.5rem;
    }

    .story-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .story-section h2 {
        font-size: 1.5rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .story-section p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Tweet Link */
    .tweet-embed {
        margin-top: 1.5rem;
    }
    
    .tweet-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tweet-icon {
        font-size: 1.5rem;
    }

    /* Footer */
    footer {
        padding: 2rem 1rem;
    }
    
    .footer-socials {
        gap: 2rem;
    }
    
    .footer-socials a img {
        width: 35px;
        height: 35px;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .about-logo {
        width: 70px;
    }
    
    .story-section {
        padding: 1.5rem 1rem;
    }
    
    .story-section h2 {
        font-size: 1.3rem;
    }
    
    .story-section p {
        font-size: 0.95rem;
    }
    
    .tweet-link {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    nav ul li a {
        font-size: 0.7rem;
        padding: 0.3rem 0.4rem;
    }
}

@media (max-width: 360px) {
    .about-hero h1 {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .story-section h2 {
        font-size: 1.2rem;
    }
}

/* About Hero Canvas */
#about-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}


