/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Rajdhani', 'Exo 2', sans-serif;
    line-height: 1.6;
    color: #333;
    background: 
        linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)),
        url('images/background.jpg') center/cover no-repeat fixed;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    color: #00d4ff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Orbitron', monospace;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00d4ff;
    text-shadow: 
        0 0 5px #00d4ff,
        0 0 10px #00d4ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #00d4ff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(22, 33, 62, 0.8) 100%),
        url('images/background.jpg') center/cover no-repeat fixed;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.hero-container {
    text-align: center;
    z-index: 2;
    position: relative;
}

.pfp-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #00d4ff;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.7),
        0 0 40px rgba(0, 212, 255, 0.5),
        0 0 80px rgba(0, 212, 255, 0.3),
        inset 0 0 20px rgba(0, 212, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 1),
        0 0 60px rgba(0, 212, 255, 0.8),
        0 0 120px rgba(0, 212, 255, 0.6),
        inset 0 0 30px rgba(0, 212, 255, 0.2);
}

.pfp-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: conic-gradient(from 0deg, #00d4ff, #0066ff, #00d4ff);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
    opacity: 0.7;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #00d4ff, #0066ff);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 25px rgba(0, 212, 255, 0.6),
        0 0 20px rgba(0, 212, 255, 0.8),
        inset 0 0 10px rgba(0, 212, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-secondary:hover {
    background: #00d4ff;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 
        0 10px 25px rgba(0, 212, 255, 0.6),
        0 0 20px rgba(0, 212, 255, 0.8);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: 
        linear-gradient(rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.9)),
        url('images/background.jpg') center/cover no-repeat fixed;
}

/* Gallery Container */
.gallery-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.gallery-slider {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 212, 255, 0.2);
    border: 2px solid rgba(0, 212, 255, 0.3);
    width: 100%;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gallery-slide {
    min-width: 100%;
    position: relative;
}

.gallery-slide img {
    width: 100%;
    height: 70vh;
    max-height: 600px;
    min-height: 400px;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
}

.gallery-slide:hover img {
    transform: scale(1.05);
}

/* Gallery Navigation Buttons */
.gallery-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.gallery-btn {
    background: rgba(0, 212, 255, 0.8);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.gallery-btn:hover {
    background: rgba(0, 212, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.5);
}

.gallery-btn:active {
    transform: scale(0.95);
}

/* Gallery Indicators */
.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-indicator.active {
    background: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    transform: scale(1.2);
}

.gallery-indicator:hover {
    background: rgba(0, 212, 255, 0.7);
    transform: scale(1.1);
}

/* Gallery Counter */
.gallery-counter {
    text-align: center;
    margin-top: 20px;
    color: #fff;
    font-family: 'Tomorrow', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Gallery Auto-slide Animation */
@keyframes slideGlow {
    0%, 100% {
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(0, 212, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.3),
            0 0 50px rgba(0, 212, 255, 0.4);
    }
}

.gallery-slider.auto-sliding {
    animation: slideGlow 2s ease-in-out;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #00d4ff, #0066ff);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}



/* Narrative Section */
.narrative {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 46, 0.85) 100%),
        url('images/background.jpg') center/cover no-repeat fixed;
}

.narrative-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 4rem;
}

.narrative-text {
    color: #fff;
}

.narrative-text h3 {
    color: #00d4ff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.narrative-text h3:first-child {
    margin-top: 0;
}

.narrative-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00d4ff, #0066ff);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 12px;
    height: 12px;
    background: #00d4ff;
    border-radius: 50%;
    border: 3px solid #0a0a0a;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.timeline-content h4 {
    color: #00d4ff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #ccc;
    line-height: 1.6;
}

/* Social Section */
.social {
    padding: 100px 0;
    background: 
        linear-gradient(rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.9)),
        url('images/background.jpg') center/cover no-repeat fixed;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.social-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-card:hover::before {
    left: 100%;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.social-card.twitter {
    border-left: 4px solid #1da1f2;
}

.social-card.dexscreener {
    border-left: 4px solid #00d4ff;
}

.social-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.twitter i {
    color: #1da1f2;
}

.dexscreener i {
    color: #00d4ff;
}

.social-card h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.social-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.link-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    color: #00d4ff;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-card:hover .link-arrow {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #00d4ff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
}

/* Large Screen Optimization */
@media (min-width: 1400px) {
    .gallery-container {
        max-width: 1600px;
        padding: 0 40px;
    }
    
    .gallery-slide img {
        height: 75vh;
        max-height: 700px;
    }
}

/* Ultra Wide Screen */
@media (min-width: 1920px) {
    .gallery-container {
        max-width: 1800px;
        padding: 0 60px;
    }
    
    .gallery-slide img {
        height: 80vh;
        max-height: 800px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .profile-pic {
        width: 150px;
        height: 150px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .narrative-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .social-card {
        min-width: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Gallery Responsive */
    .gallery-container {
        padding: 0 10px;
    }
    
    .gallery-slide img {
        height: 50vh;
        min-height: 300px;
        max-height: 400px;
    }

    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .gallery-nav {
        padding: 0 5px;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .profile-pic {
        width: 120px;
        height: 120px;
    }

    .section-title {
        font-size: 2rem;
    }

    .social-card {
        padding: 2rem 1.5rem;
    }

    /* Gallery Mobile */
    .gallery-container {
        padding: 0 5px;
    }
    
    .gallery-slide img {
        height: 45vh;
        min-height: 250px;
        max-height: 350px;
    }

    .gallery-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .gallery-nav {
        padding: 0;
    }

    .gallery-indicator {
        width: 8px;
        height: 8px;
    }

    .gallery-counter {
        font-size: 0.9rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 896px) and (orientation: landscape) {
    .gallery {
        padding: 40px 0;
    }
    
    .gallery-slide img {
        height: 85vh;
        min-height: 300px;
        max-height: none;
    }
    
    .gallery-container {
        padding: 0 20px;
    }
}

/* Enhanced Typography */
h1, h2, h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

h4, h5, h6 {
    font-family: 'Tomorrow', sans-serif;
    font-weight: 600;
}

p, a, span {
    font-family: 'Rajdhani', sans-serif;
}

.nav-link {
    font-family: 'Tomorrow', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Glitch Effect */
.glitch {
    position: relative;
    color: #00d4ff;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    text-transform: uppercase;
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 2s infinite;
    color: #ff0040;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 2s infinite;
    color: #00ff41;
    z-index: -2;
}

@keyframes glitch {
    0%, 14%, 15%, 49%, 50%, 99%, 100% {
        transform: translate3d(0, 0, 0);
    }
    1%, 13% {
        transform: translate3d(-2px, 0, 0);
    }
    16%, 48% {
        transform: translate3d(2px, 0, 0);
    }
}

@keyframes glitch-1 {
    0%, 14%, 15%, 49%, 50%, 99%, 100% {
        transform: translate3d(0, 0, 0);
    }
    1%, 13% {
        transform: translate3d(2px, 0, 0);
    }
    16%, 48% {
        transform: translate3d(-2px, 0, 0);
    }
}

@keyframes glitch-2 {
    0%, 14%, 15%, 49%, 50%, 99%, 100% {
        transform: translate3d(0, 0, 0);
    }
    1%, 13% {
        transform: translate3d(-1px, 0, 0);
    }
    16%, 48% {
        transform: translate3d(1px, 0, 0);
    }
}

/* Glitch Logo Effect */
.glitch-logo {
    position: relative;
    display: inline-block;
}

.glitch-logo:hover::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #ff0040;
    animation: glitch-logo 0.3s infinite;
}

.glitch-logo:hover::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #00ff41;
    animation: glitch-logo-2 0.3s infinite;
}

@keyframes glitch-logo {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-logo-2 {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(2px, -2px);
    }
    40% {
        transform: translate(2px, 2px);
    }
    60% {
        transform: translate(-2px, -2px);
    }
    80% {
        transform: translate(-2px, 2px);
    }
}

/* Glow Text Effect */
.glow-text {
    color: #fff;
    text-shadow: 
        0 0 5px #00d4ff,
        0 0 10px #00d4ff,
        0 0 20px #00d4ff,
        0 0 40px #00d4ff,
        0 0 80px #00d4ff;
    animation: glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    from {
        text-shadow: 
            0 0 5px #00d4ff,
            0 0 10px #00d4ff,
            0 0 20px #00d4ff,
            0 0 40px #00d4ff,
            0 0 80px #00d4ff;
    }
    to {
        text-shadow: 
            0 0 2px #00d4ff,
            0 0 5px #00d4ff,
            0 0 10px #00d4ff,
            0 0 20px #00d4ff,
            0 0 40px #00d4ff;
    }
}

/* Enhanced Hero Title */
.hero-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    font-family: 'Orbitron', monospace;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    font-weight: 400;
    font-family: 'Tomorrow', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Enhanced Section Titles */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 3rem;
    position: relative;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Enhanced About Cards */
.about-card h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-family: 'Tomorrow', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-card p {
    color: #ccc;
    line-height: 1.8;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Enhanced Timeline */
.timeline-content h4 {
    color: #00d4ff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Tomorrow', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.timeline-content p {
    color: #ccc;
    line-height: 1.6;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 400;
}

/* Enhanced Narrative Text */
.narrative-text h3 {
    color: #00d4ff;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-family: 'Tomorrow', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.narrative-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Enhanced Social Cards */
.social-card h3 {
    color: #fff;
    font-size: 1.9rem;
    margin-bottom: 1rem;
    font-family: 'Tomorrow', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.social-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Enhanced Buttons */
.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Tomorrow', sans-serif;
    font-size: 0.95rem;
}

/* Enhanced Footer */
.footer-section h4 {
    color: #00d4ff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Tomorrow', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-section p,
.footer-section a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 400;
}

/* Cyberpunk Glow Effects */
.cyber-glow {
    box-shadow: 
        0 0 5px #00d4ff,
        0 0 10px #00d4ff,
        0 0 20px #00d4ff,
        inset 0 0 5px #00d4ff;
}

.cyber-border {
    border: 1px solid #00d4ff;
    box-shadow: 
        0 0 5px #00d4ff,
        inset 0 0 5px rgba(0, 212, 255, 0.1);
}

/* Background Enhancement */
.background-overlay {
    position: relative;
}

.background-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Animated Background Particles */
@keyframes float-particles {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-10px) translateX(5px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) translateX(-5px);
        opacity: 1;
    }
    75% {
        transform: translateY(-10px) translateX(10px);
        opacity: 0.7;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 10%, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 90% 90%, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px, 120px 120px;
    animation: float-particles 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Enhanced Background Parallax */
@media (prefers-reduced-motion: no-preference) {
    .hero,
    .about,
    .narrative,
    .social {
        background-attachment: fixed;
    }
}

/* Background Blur Effect on Scroll */
.blur-on-scroll {
    transition: filter 0.3s ease;
}

.blur-on-scroll.scrolled {
    filter: blur(2px);
}