/* Custom Fonts */
.font-orbitron {
    font-family: 'Orbitron', monospace;
}

/* Advanced Parallax Layers */
.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.parallax-bg-1 {
    background: radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    transform: translateZ(-2px) scale(1.1);
}

.parallax-bg-2 {
    background: linear-gradient(45deg, transparent 30%, rgba(6, 182, 212, 0.05) 50%, transparent 70%);
    transform: translateZ(-1px) scale(1.05);
}

.parallax-bg-3 {
    background: conic-gradient(from 0deg at 50% 50%, 
                transparent 0deg, 
                rgba(6, 182, 212, 0.1) 60deg, 
                transparent 120deg, 
                rgba(59, 130, 246, 0.1) 180deg, 
                transparent 240deg, 
                rgba(139, 92, 246, 0.1) 300deg, 
                transparent 360deg);
    transform: translateZ(0px);
    animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
    0% { transform: translateZ(0px) rotate(0deg); }
    100% { transform: translateZ(0px) rotate(360deg); }
}

/* Interactive Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.custom-cursor-trail {
    position: fixed;
    width: 4px;
    height: 4px;
    background: rgba(6, 182, 212, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    animation: cursor-trail 0.5s ease-out forwards;
}

@keyframes cursor-trail {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Advanced Particle System */
.particle-system {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(6, 182, 212, 0.8);
    border-radius: 50%;
    animation: particle-float 8s linear infinite;
}

.particle:nth-child(odd) {
    background: rgba(59, 130, 246, 0.6);
    animation-duration: 12s;
}

.particle:nth-child(3n) {
    background: rgba(139, 92, 246, 0.4);
    animation-duration: 15s;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) scale(0);
        opacity: 0;
    }
}

/* Tesla Beam Floating Animations */
.tesla-beam {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, 
                transparent 0%, 
                rgba(6, 182, 212, 0.8) 20%, 
                rgba(59, 130, 246, 1) 50%, 
                rgba(6, 182, 212, 0.8) 80%, 
                transparent 100%);
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.6);
    animation: tesla-beam-float 4s ease-in-out infinite;
}

.tesla-beam:nth-child(2n) {
    animation-delay: 1s;
    background: linear-gradient(to bottom, 
                transparent 0%, 
                rgba(139, 92, 246, 0.8) 20%, 
                rgba(168, 85, 247, 1) 50%, 
                rgba(139, 92, 246, 0.8) 80%, 
                transparent 100%);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
}

.tesla-beam:nth-child(3n) {
    animation-delay: 2s;
    background: linear-gradient(to bottom, 
                transparent 0%, 
                rgba(34, 197, 94, 0.8) 20%, 
                rgba(16, 185, 129, 1) 50%, 
                rgba(34, 197, 94, 0.8) 80%, 
                transparent 100%);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

@keyframes tesla-beam-float {
    0% {
        transform: translateY(-100px) translateX(0) scaleY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scaleY(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(20px) scaleY(0);
        opacity: 0;
    }
}

/* Tesla Energy Orbs */
.tesla-orb {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(6, 182, 212, 1) 0%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.8);
    animation: tesla-orb-float 6s ease-in-out infinite;
}

.tesla-orb:nth-child(2n) {
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(139, 92, 246, 1) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
}

.tesla-orb:nth-child(3n) {
    animation-delay: 4s;
    background: radial-gradient(circle, rgba(34, 197, 94, 1) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.8);
}

@keyframes tesla-orb-float {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px) scale(0);
        opacity: 0;
    }
}

/* Tesla Lightning Bolts */
.tesla-lightning {
    position: absolute;
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, 
                rgba(255, 255, 255, 1) 0%, 
                rgba(6, 182, 212, 1) 30%, 
                rgba(59, 130, 246, 1) 60%, 
                rgba(6, 182, 212, 1) 100%);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    animation: tesla-lightning-strike 3s ease-in-out infinite;
    transform-origin: top;
}

.tesla-lightning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    width: 7px;
    height: 100%;
    background: linear-gradient(to bottom, 
                rgba(255, 255, 255, 0.3) 0%, 
                rgba(6, 182, 212, 0.3) 30%, 
                rgba(59, 130, 246, 0.3) 60%, 
                rgba(6, 182, 212, 0.3) 100%);
    border-radius: 3px;
    filter: blur(2px);
}

@keyframes tesla-lightning-strike {
    0% {
        transform: translateY(-60px) scaleY(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
        transform: scaleY(1);
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) scaleY(0);
        opacity: 0;
    }
}

/* Tesla Parachuting Soldiers */
.tesla-parachute-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.tesla-parachute-soldier {
    position: absolute;
    top: -200px;
    width: 60px;
    height: 120px;
    animation: parachute-descent 8s ease-in-out infinite;
    transform-origin: center;
}

.parachute-canopy {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    background: linear-gradient(135deg, 
                rgba(6, 182, 212, 0.9) 0%, 
                rgba(59, 130, 246, 0.9) 50%, 
                rgba(139, 92, 246, 0.9) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 
        0 0 20px rgba(6, 182, 212, 0.6),
        inset 0 0 10px rgba(255, 255, 255, 0.3);
    animation: parachute-sway 2s ease-in-out infinite;
}

.parachute-lines {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, 
                rgba(255, 255, 255, 0.8) 0%, 
                rgba(6, 182, 212, 0.6) 50%, 
                rgba(59, 130, 246, 0.4) 100%);
    box-shadow: 0 0 5px rgba(6, 182, 212, 0.5);
}

.parachute-lines::before,
.parachute-lines::after {
    content: '';
    position: absolute;
    top: 0;
    width: 2px;
    height: 60px;
    background: inherit;
    box-shadow: inherit;
}

.parachute-lines::before {
    left: -15px;
    transform: rotate(-15deg);
}

.parachute-lines::after {
    right: -15px;
    transform: rotate(15deg);
}

.soldier-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 80px;
    object-fit: contain;
    filter: 
        drop-shadow(0 0 10px rgba(6, 182, 212, 0.8))
        drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
    animation: soldier-sway 2.5s ease-in-out infinite;
}

/* Parachute Animation Variations */
.tesla-parachute-soldier:nth-child(2n) .parachute-canopy {
    background: linear-gradient(135deg, 
                rgba(139, 92, 246, 0.9) 0%, 
                rgba(168, 85, 247, 0.9) 50%, 
                rgba(6, 182, 212, 0.9) 100%);
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.6),
        inset 0 0 10px rgba(255, 255, 255, 0.3);
}

.tesla-parachute-soldier:nth-child(3n) .parachute-canopy {
    background: linear-gradient(135deg, 
                rgba(34, 197, 94, 0.9) 0%, 
                rgba(16, 185, 129, 0.9) 50%, 
                rgba(6, 182, 212, 0.9) 100%);
    box-shadow: 
        0 0 20px rgba(34, 197, 94, 0.6),
        inset 0 0 10px rgba(255, 255, 255, 0.3);
}

.tesla-parachute-soldier:nth-child(4n) .parachute-canopy {
    background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.9) 0%, 
                rgba(6, 182, 212, 0.9) 50%, 
                rgba(59, 130, 246, 0.9) 100%);
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.6),
        inset 0 0 10px rgba(6, 182, 212, 0.3);
}

/* Animation Keyframes */
@keyframes parachute-descent {
    0% {
        transform: translateY(-200px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(50px) rotate(5deg);
        opacity: 0;
    }
}

@keyframes parachute-sway {
    0%, 100% {
        transform: translateX(-50%) rotate(-2deg);
    }
    50% {
        transform: translateX(-50%) rotate(2deg);
    }
}

@keyframes soldier-sway {
    0%, 100% {
        transform: translateX(-50%) rotate(-1deg);
    }
    50% {
        transform: translateX(-50%) rotate(1deg);
    }
}

/* Electric Beam Effects */
.electric-beam {
    position: relative;
    overflow: hidden;
}

.electric-beam::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(6, 182, 212, 0.3) 50%, 
                transparent 100%);
    animation: electric-sweep 3s ease-in-out infinite;
}

@keyframes electric-sweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* 3D Transform Effects */
.transform-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.card-3d:hover {
    transform: rotateY(10deg) rotateX(5deg) translateZ(20px);
}

/* Interactive Hover Effects */
.interactive-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.interactive-hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.interactive-hover:hover::before {
    width: 300px;
    height: 300px;
}

.interactive-hover:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(6, 182, 212, 0.4);
}

/* Scroll-triggered Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Dynamic Background Animations */
.dynamic-bg {
    position: relative;
    overflow: hidden;
}

.dynamic-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
                transparent 0deg, 
                rgba(6, 182, 212, 0.1) 60deg, 
                transparent 120deg, 
                rgba(59, 130, 246, 0.1) 180deg, 
                transparent 240deg, 
                rgba(139, 92, 246, 0.1) 300deg, 
                transparent 360deg);
    animation: dynamic-rotate 30s linear infinite;
}

@keyframes dynamic-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Magnetic Hover Effect */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.magnetic:hover {
    transform: scale(1.1);
}

/* Glitch Effect */
.glitch {
    position: relative;
    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 0.5s infinite;
    color: #ff0000;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: #00ff00;
    z-index: -2;
}

@keyframes glitch {
    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-1 {
    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-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); }
}

/* Electric Grid Background */
.electric-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(6, 182, 212, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* Logo Glow Effect */
.logo-container {
    position: relative;
    display: inline-block;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(6, 182, 212, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(6, 182, 212, 0.3);
}

/* Social Buttons */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.social-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #006699);
    color: white;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-btn i {
    margin-right: 8px;
    font-size: 1.2em;
}

/* Game Container */
.game-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(6, 182, 212, 0.2);
}

.game-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-wrapper > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Roadmap Cards */
.roadmap-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.roadmap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    transition: left 0.5s ease;
}

.roadmap-card:hover::before {
    left: 100%;
}

.roadmap-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(6, 182, 212, 0.3);
    border-color: rgba(6, 182, 212, 0.4);
}

.phase-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(6, 182, 212, 0.3);
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

/* Copy Button */
.copy-btn {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.4);
}

.copy-btn:active {
    transform: scale(0.95);
}

/* Buy Button */
.buy-button {
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.buy-button:hover::before {
    left: 100%;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

/* Electric Beam Effect */
@keyframes electric-beam {
    0% {
        box-shadow: 0 0 5px rgba(6, 182, 212, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(6, 182, 212, 0.8), 0 0 30px rgba(6, 182, 212, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(6, 182, 212, 0.5);
    }
}

.electric-beam {
    animation: electric-beam 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-wrapper {
        padding-bottom: 75%; /* 4:3 aspect ratio for mobile */
    }
    
    .roadmap-card {
        padding: 1.5rem;
    }
    
    .phase-number {
        font-size: 2rem;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .game-wrapper {
        padding-bottom: 100%; /* 1:1 aspect ratio for very small screens */
    }
    
    .social-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .social-btn i {
        margin-right: 6px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0891b2, #0e7490);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    border-top-color: #06b6d4;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    color: #06b6d4;
    font-weight: 600;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

/* Hover Effects for Interactive Elements */
.interactive:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}

/* Electric Pulse Effect */
@keyframes electric-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(6, 182, 212, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0);
    }
}

.electric-pulse {
    animation: electric-pulse 2s infinite;
}
