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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #00c6ff, transparent),
        radial-gradient(2px 2px at 40px 70px, #1e40af, transparent),
        radial-gradient(1px 1px at 90px 40px, #00c6ff, transparent),
        radial-gradient(1px 1px at 130px 80px, #1e40af, transparent),
        radial-gradient(2px 2px at 160px 30px, #00c6ff, transparent),
        radial-gradient(1px 1px at 200px 90px, #1e40af, transparent),
        radial-gradient(2px 2px at 250px 20px, #00c6ff, transparent),
        radial-gradient(1px 1px at 300px 60px, #1e40af, transparent),
        radial-gradient(3px 3px at 350px 100px, #ff6b35, transparent),
        radial-gradient(1px 1px at 10px 120px, #ffd700, transparent),
        radial-gradient(2px 2px at 280px 50px, #ff4500, transparent);
    background-repeat: repeat;
    background-size: 350px 200px;
    animation: bg-shift 30s linear infinite, color-cycle 15s ease-in-out infinite alternate;
    opacity: 0.06;
    z-index: -1;
    pointer-events: none;
    will-change: transform, background;
}

@keyframes bg-shift {
    from { transform: translateX(0) translateY(0); }
    to { transform: translateX(-350px) translateY(-200px); }
}

@keyframes color-cycle {
    0% { 
        background-image: 
            radial-gradient(2px 2px at 20px 30px, #00c6ff, transparent),
            radial-gradient(2px 2px at 40px 70px, #1e40af, transparent),
            /* ... keep existing, but change colors */
            radial-gradient(2px 2px at 160px 30px, #00c6ff, transparent),
            /* etc. */
    }
    50% { 
        background-image: 
            radial-gradient(2px 2px at 20px 30px, #ff6b35, transparent),
            radial-gradient(2px 2px at 40px 70px, #ffd700, transparent),
            radial-gradient(1px 1px at 90px 40px, #ff4500, transparent),
            radial-gradient(1px 1px at 130px 80px, #ff6b35, transparent),
            radial-gradient(2px 2px at 160px 30px, #ffd700, transparent),
            radial-gradient(1px 1px at 200px 90px, #ff4500, transparent),
            radial-gradient(2px 2px at 250px 20px, #ff6b35, transparent),
            radial-gradient(1px 1px at 300px 60px, #ffd700, transparent),
            radial-gradient(3px 3px at 350px 100px, #00c6ff, transparent),
            radial-gradient(1px 1px at 10px 120px, #1e40af, transparent),
            radial-gradient(2px 2px at 280px 50px, #00c6ff, transparent);
    }
    100% { 
        background-image: 
            radial-gradient(2px 2px at 20px 30px, #1e40af, transparent),
            radial-gradient(2px 2px at 40px 70px, #00c6ff, transparent),
            /* cycle back with variations */
            radial-gradient(1px 1px at 90px 40px, #ff4500, transparent),
            /* etc. */
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0,198,255,0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(30,64,175,0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 10%, rgba(0,198,255,0.02) 0%, transparent 40%),
        radial-gradient(ellipse at 10% 80%, rgba(30,64,175,0.02) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 20%, rgba(255,107,53,0.025) 0%, transparent 45%),
        radial-gradient(ellipse at 40% 90%, rgba(255,215,0,0.02) 0%, transparent 35%);
    animation: nebula-shift 50s ease-in-out infinite, nebula-color 20s ease-in-out infinite alternate;
    z-index: -1;
    pointer-events: none;
    will-change: transform, background;
}

@keyframes nebula-shift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(5%, 2%) scale(1.02); }
    66% { transform: translate(-3%, -1%) scale(0.98); }
}

@keyframes nebula-color {
    0% { 
        background: 
            radial-gradient(ellipse at 20% 30%, rgba(0,198,255,0.03) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 70%, rgba(30,64,175,0.03) 0%, transparent 50%);
    }
    50% { 
        background: 
            radial-gradient(ellipse at 20% 30%, rgba(255,107,53,0.04) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 70%, rgba(255,215,0,0.035) 0%, transparent 50%);
    }
    100% { 
        background: 
            radial-gradient(ellipse at 20% 30%, rgba(255,69,0,0.025) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 70%, rgba(0,198,255,0.03) 0%, transparent 50%);
    }
}

#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
}

.star {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    will-change: transform, opacity;
    transform-origin: center;
    animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.3); }
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(var(--drift-x), var(--drift-y)); }
}

@keyframes shooting {
    0% { 
        left: 100%; 
        opacity: 1; 
        transform: translateX(0) translateY(0) scale(1); 
        width: 2px; height: 2px; 
    }
    100% { 
        left: -10%; 
        opacity: 0; 
        transform: translateX(-200px) translateY(-100px) scale(0.5); 
        width: 1px; height: 1px; 
        box-shadow: 0 0 0 #ffffff;
    }
}

#floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,198,255,0.4) 0%, transparent 70%);
    will-change: transform;
    animation: orb-float 20s ease-in-out infinite, orb-color 10s ease-in-out infinite alternate;
}

@keyframes orb-float {
    0%, 100% { transform: translateY(0px) scale(1); }
    33% { transform: translateY(-30px) scale(1.1); }
    66% { transform: translateY(20px) scale(0.9); }
}

@keyframes orb-color {
    0% { background: radial-gradient(circle, rgba(0,198,255,0.4) 0%, transparent 70%); }
    50% { background: radial-gradient(circle, rgba(255,107,53,0.4) 0%, transparent 70%); }
    100% { background: radial-gradient(circle, rgba(255,215,0,0.4) 0%, transparent 70%); }
}

#wave-layer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(10,10,15,0.8), transparent);
    z-index: -1;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, transparent, rgba(0,198,255,0.1), transparent);
    animation: wave-move 8s linear infinite, wave-color 12s ease-in-out infinite;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

@keyframes wave-move {
    0% { transform: translateX(-50%) translateY(0); }
    100% { transform: translateX(0) translateY(-20px); }
}

@keyframes wave-color {
    0% { background: linear-gradient(90deg, transparent, rgba(0,198,255,0.1), transparent); }
    50% { background: linear-gradient(90deg, transparent, rgba(255,107,53,0.1), transparent); }
    100% { background: linear-gradient(90deg, transparent, rgba(30,64,175,0.1), transparent); }
}

/* New Moving Background Elements */
#moving-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,198,255,0.05) 2px, rgba(0,198,255,0.05) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,107,53,0.05) 2px, rgba(255,107,53,0.05) 4px);
    animation: grid-move 20s linear infinite;
}

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

#particle-cloud {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.cloud-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,215,0,0.6);
    border-radius: 50%;
    animation: cloud-drift 15s linear infinite;
}

@keyframes cloud-drift {
    0% { transform: translateX(-100px) translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(100vw) translateY(50px); opacity: 0; }
}

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

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

#background-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bg-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00c6ff;
    border-radius: 50%;
    opacity: 0.6;
    animation: bg-float 10s linear infinite;
}

@keyframes bg-float {
    0% { transform: translateY(100vh); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh); opacity: 0; }
}

#logo-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 10;
}

#flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,107,53,0.6) 50%, transparent 100%);
    opacity: 0;
    pointer-events: none;
    z-index: 10001;
    transform: scale(0);
}

#tynixor-explode {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: 900;
    color: #ff4500;
    text-shadow: 0 0 50px #ff4500, 0 0 100px #ff6b35;
    opacity: 0;
    z-index: 10000;
    margin: 0;
    background: linear-gradient(45deg, #ff4500, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: none;
}

@keyframes tynixor-burst {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); filter: blur(10px); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.5); filter: blur(0px); text-shadow: 0 0 100px #ff4500; }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(2); filter: blur(5px); }
}

#bomb-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, #ff4500 0%, #ff0000 50%, #8b0000 100%);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    box-shadow: 0 0 50px #ff4500;
    z-index: 9999;
}

.logo-particle {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 198, 255, 0.8);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.5), inset 0 0 20px rgba(255,255,255,0.1);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease-out;
    z-index: 9998;
}

.logo-particle.appear {
    opacity: 1;
    transform: scale(1);
}

@keyframes converge {
    0% {
        opacity: 0;
        transform: scale(0.5) translate(0, 0);
    }
    70% {
        opacity: 1;
        transform: scale(2) translate(var(--tx), var(--ty));
    }
    100% {
        opacity: 1;
        transform: scale(1.8) translate(var(--tx), var(--ty));
    }
}

@keyframes compress {
    0% {
        transform: scale(1.8) translate(var(--tx), var(--ty));
        opacity: 1;
        box-shadow: 0 0 30px rgba(0, 198, 255, 0.5);
    }
    100% {
        transform: scale(1.2) translate(var(--tx), var(--ty));
        opacity: 0.8;
        box-shadow: 0 0 50px #ff4500;
    }
}

@keyframes bomb-flash {
    0% { opacity: 0; transform: scale(0); }
    30% { opacity: 0.9; transform: scale(1.2); }
    70% { opacity: 0.9; transform: scale(2.5); }
    100% { opacity: 0; transform: scale(4); }
}

@keyframes bomb-expand {
    0% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(0); 
        box-shadow: 0 0 0 #ff4500;
    }
    40% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.5); 
        box-shadow: 0 0 150px #ff4500;
    }
    100% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(4); 
        box-shadow: 0 0 0 #ff4500;
    }
}

@keyframes explode {
    0% { 
        opacity: 1; 
        transform: scale(1.2) translate(var(--tx), var(--ty)); 
    }
    20% { 
        opacity: 1; 
        transform: scale(2.5) translate(var(--tx), var(--ty)); 
    }
    100% { 
        opacity: 0; 
        transform: scale(0) translate(var(--explode-dir-x), var(--explode-dir-y)); 
        box-shadow: 0 0 40px #ff6b35;
    }
}

.spark {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ffd700;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 9997;
    box-shadow: 0 0 10px #ffd700;
}

@keyframes spark-burst {
    0% { 
        opacity: 1; 
        transform: scale(0) translate(var(--spark-tx), var(--spark-ty)); 
    }
    50% { 
        opacity: 1; 
        transform: scale(2) translate(var(--spark-tx), var(--spark-ty)); 
    }
    100% { 
        opacity: 0; 
        transform: scale(0) translate(var(--spark-tx), var(--spark-ty)); 
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 198, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(0, 198, 255, 0.5));
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00c6ff, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-desktop a {
    color: #e0e7ff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-desktop a:hover {
    color: #00c6ff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid #00c6ff;
    color: #00c6ff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    animation: menuPulse 2s infinite alternate;
}

@keyframes menuPulse {
    from { box-shadow: 0 0 5px #00c6ff; }
    to { box-shadow: 0 0 15px #00c6ff; }
}

.menu-toggle:hover {
    background: #00c6ff;
    color: #0a0a0f;
    transform: scale(1.1);
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: transform 0.3s ease;
    animation: profileFloat 3s ease-in-out infinite;
}

@keyframes profileFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.profile-pic:hover {
    transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.98), rgba(30, 64, 175, 0.1));
    backdrop-filter: blur(20px);
    transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0;
    z-index: 999;
    box-shadow: -5px 0 20px rgba(0, 198, 255, 0.2);
}

.mobile-menu.open {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 198, 255, 0.2);
    background: rgba(0, 198, 255, 0.05);
}

.menu-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    filter: drop-shadow(0 0 5px rgba(0, 198, 255, 0.5));
}

.menu-title {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #00c6ff, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.close-btn {
    background: none;
    border: none;
    color: #e0e7ff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(0, 198, 255, 0.2);
    color: #00c6ff;
    transform: scale(1.2);
}

.mobile-menu ul {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 198, 255, 0.1);
}

.mobile-menu a {
    color: #e0e7ff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: block;
    padding: 1rem 2rem;
    position: relative;
    overflow: hidden;
}

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

.mobile-menu a:hover::before {
    width: 100%;
}

.mobile-menu a:hover {
    color: #00c6ff;
    background: rgba(0, 198, 255, 0.05);
    padding-left: 2.5rem;
    transform: translateX(10px);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    background: radial-gradient(ellipse at top, rgba(0, 198, 255, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,198,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    animation: grid-pulse 4s ease-in-out infinite alternate, grid-color 8s ease-in-out infinite;
}

@keyframes grid-pulse {
    from { opacity: 0.3; }
    to { opacity: 0.6; }
}

@keyframes grid-color {
    0% { background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,198,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'); }
    50% { background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'); }
    100% { background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(30,64,175,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'); }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroGlow 3s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    from { filter: drop-shadow(0 0 10px rgba(0,198,255,0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(0,198,255,0.8)); }
}

.animated-keywords-container {
    margin-bottom: 1rem;
}

#animated-keywords {
    font-size: 1.4rem;
    color: #00c6ff;
    animation: typewriter 4s steps(40) infinite, blink 1s infinite, colorShift 5s ease-in-out infinite;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #00c6ff;
    padding-right: 5px;
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 50% { border-color: transparent; }
    51%, 100% { border-color: #00c6ff; }
}

@keyframes colorShift {
    0% { color: #00c6ff; }
    50% { color: #1e40af; }
    100% { color: #00c6ff; }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #b3b3cc;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(135deg, #00c6ff, #1e40af);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 198, 255, 0.3);
    animation: ctaBounce1 2s infinite;
}

@keyframes ctaBounce1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.cta-primary::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;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 198, 255, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #00c6ff;
    border-color: #00c6ff;
    animation: ctaPulse2 2s infinite;
}

@keyframes ctaPulse2 {
    from { box-shadow: 0 0 10px #00c6ff; }
    to { box-shadow: 0 0 20px #00c6ff; }
}

.cta-secondary:hover {
    background: #00c6ff;
    color: #0a0a0f;
    transform: translateY(-3px) scale(1.05);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-shapes {
    position: relative;
    width: 1000px;
    height: 200px;
}

.shape {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 198, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.2);
    animation: float 6s ease-in-out infinite;
    opacity: 0;
    transform: scale(0) translateY(-50%);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    top: 50%;
}

.shape.load-shape {
    animation: loadEntrance 1.5s ease-out forwards;
}

@keyframes loadEntrance {
    0% { opacity: 0; transform: scale(0) translateY(-50%); }
    50% { opacity: 0.5; transform: scale(1.2) translateY(-50%); }
    100% { opacity: 1; transform: scale(1) translateY(-50%); }
}

.shape-1 {
    left: 0%;
    animation-delay: 0s;
}

.shape-2 {
    left: 17%;
    animation-delay: -1s;
}

.shape-3 {
    left: 34%;
    animation-delay: -2s;
}

.shape-4 {
    left: 51%;
    animation-delay: -3s;
}

.shape-5 {
    left: 68%;
    animation-delay: -4s;
}

.shape-6 {
    left: 85%;
    animation-delay: -5s;
}

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

/* Teaser Section */
.teaser {
    padding: 2rem 0;
    background: rgba(0, 198, 255, 0.02);
}

.teaser-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.teaser-content p {
    font-size: 1.1rem;
    color: #b3b3cc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Platforms */
.platforms {
    padding: 5rem 0;
    background: rgba(0, 198, 255, 0.02);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00c6ff, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: sectionPulse 2s ease-in-out infinite alternate;
}

@keyframes sectionPulse {
    from { transform: scale(1); }
    to { transform: scale(1.02); }
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b3b3cc;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.platform-card {
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 198, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 198, 255, 0.1), transparent);
    transition: left 0.6s;
}

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

/* Unique Card Animations (removed rotations) */
.card-1:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00c6ff;
    box-shadow: 0 20px 60px rgba(0, 198, 255, 0.2);
    animation: cardFlip1 0.6s ease;
}

@keyframes cardFlip1 {
    0% { transform: scale(1); }
    50% { transform: scale(1.1) translateY(-10px); }
    100% { transform: scale(1.02) translateY(-10px); }
}

.card-2:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: #ff6b35;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
    animation: cardBounce2 0.8s ease;
}

@keyframes cardBounce2 {
    0%, 100% { transform: translateY(-15px) scale(1.05); }
    50% { transform: translateY(-25px) scale(1.1); }
}

.card-3:hover {
    transform: translateX(10px) scale(1.03);
    border-color: #ffd700;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
    animation: cardSkew3 0.5s ease;
}

@keyframes cardSkew3 {
    0% { transform: scale(1); }
    100% { transform: scale(1.03); }
}

.card-4:hover {
    transform: scale(1.1);
    border-color: #ff4500;
    box-shadow: 0 20px 60px rgba(255, 69, 0, 0.2);
    animation: cardSpin4 1s ease-in-out;
}

@keyframes cardSpin4 {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.card-5:hover {
    transform: translateY(-20px) scale(1.05);
    border-color: #1e40af;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.2);
    animation: cardLift5 0.7s ease;
}

@keyframes cardLift5 {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-20px) scale(1.05); }
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 198, 255, 0.3));
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.platform-card:hover .platform-icon {
    transform: scale(1.2);
}

.platform-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.platform-card p {
    color: #b3b3cc;
    margin-bottom: 2rem;
    font-weight: 300;
}

.platform-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Updated Button Styles - Made Visit Site and View Details consistent with unified base styling, unique hovers intact */
.platform-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    min-width: 120px; /* Ensure consistency in size */
    text-align: center;
}

.visit-site {
    background: linear-gradient(135deg, #00c6ff, #1e40af);
    color: #ffffff;
}

.view-details {
    background: transparent;
    color: #00c6ff;
    border-color: #00c6ff;
}

/* Unified hover for both */
.platform-link:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 198, 255, 0.3);
}

.view-details:hover {
    background: #00c6ff;
    color: #0a0a0f;
}

/* Retain unique animations but tone down for consistency */
.btn-1, .btn-3, .btn-5, .btn-7, .btn-9 {
    animation: btnGlow1 2s infinite alternate;
}

@keyframes btnGlow1 {
    from { box-shadow: 0 0 5px rgba(0, 198, 255, 0.3); }
    to { box-shadow: 0 0 15px rgba(0, 198, 255, 0.5); }
}

.btn-2, .btn-4, .btn-6, .btn-8, .btn-10 {
    animation: btnPulse2 1.5s infinite;
}

@keyframes btnPulse2 {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Coming Soon */
.coming-soon {
    padding: 5rem 0;
    text-align: center;
}

.coming-visual {
    position: relative;
    height: 200px;
    margin-top: 2rem;
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 2;
    animation: gentlePulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 198, 255, 0.5));
}

@keyframes gentlePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.8; }
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(0, 198, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    z-index: 1;
}

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

/* About */
.about {
    padding: 5rem 0;
    background: rgba(30, 64, 175, 0.02);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro {
    font-size: 1.2rem;
    color: #b3b3cc;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(10, 10, 15, 0.5);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00c6ff, #1e40af);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

/* Unique Feature Animations (removed rotations) */
.feat-1:hover {
    background: rgba(0, 198, 255, 0.05);
    transform: translateX(10px) scale(1.02);
    animation: featSlide1 0.5s ease;
}

@keyframes featSlide1 {
    0% { transform: translateX(0); }
    100% { transform: translateX(20px); }
}

.feat-2:hover {
    background: rgba(255, 107, 53, 0.05);
    transform: scale(1.02);
    animation: featScale2 0.6s ease;
}

@keyframes featScale2 {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1.02); }
}

.feat-3:hover {
    background: rgba(255, 215, 0, 0.05);
    transform: scale(1.02);
    animation: featSkew3 0.4s ease;
}

@keyframes featSkew3 {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

.feat-4:hover {
    background: rgba(255, 69, 0, 0.05);
    transform: scale(1.02);
    animation: featRotate4 0.8s ease-in-out;
}

@keyframes featRotate4 {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

.feature-icon {
    font-size: 1.5rem;
    min-width: 30px;
    animation: iconBounce 2s infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #00c6ff;
}

.feature-item p {
    color: #b3b3cc;
    font-weight: 300;
}

.stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #00c6ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b3b3cc;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Article Section */
.article-section {
    padding: 5rem 0;
    background: rgba(0, 198, 255, 0.01);
}

.article-content {
    max-width: 1000px;
    margin: 0 auto;
}

.article-intro, .article-conclusion {
    background: rgba(0, 198, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 4px solid #00c6ff;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.article-topics h3, .website-deep-dive h3 {
    color: #00c6ff;
    margin: 3rem 0 2rem 0;
    font-size: 1.8rem;
    text-align: center;
    position: relative;
}

.article-topics h3::after, .website-deep-dive h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00c6ff, #1e40af);
    border-radius: 2px;
}

.pillar-item, .website-subsection {
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(10, 10, 15, 0.6);
    border-radius: 15px;
    border-left: 4px solid #60a5fa;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Unique Pillar Animations (removed rotations) */
.pillar-1:hover, .sub-1:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 198, 255, 0.1);
    background: rgba(0, 198, 255, 0.08);
    animation: pillarSlide1 0.5s ease;
}

@keyframes pillarSlide1 {
    0% { transform: translateX(0); }
    100% { transform: translateX(15px); }
}

.pillar-2:hover, .sub-2:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
    background: rgba(255, 107, 53, 0.08);
    animation: pillarRotate2 0.6s ease;
}

@keyframes pillarRotate2 {
    0% { transform: scale(1); }
    100% { transform: scale(1.03); }
}

.pillar-3:hover, .sub-3:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
    background: rgba(255, 215, 0, 0.08);
    animation: pillarLift3 0.4s ease;
}

@keyframes pillarLift3 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.pillar-4:hover, .sub-4:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.1);
    background: rgba(255, 69, 0, 0.08);
    animation: pillarScale4 0.7s ease;
}

@keyframes pillarScale4 {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1.05); }
}

.pillar-5:hover {
    transform: translateX(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.1);
    background: rgba(30, 64, 175, 0.08);
    animation: pillarSlideLeft5 0.5s ease;
}

@keyframes pillarSlideLeft5 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-15px); }
}

.pillar-6:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 198, 255, 0.1);
    background: rgba(0, 198, 255, 0.08);
    animation: pillarTilt6 0.6s ease;
}

@keyframes pillarTilt6 {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

.pillar-7:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
    background: rgba(255, 107, 53, 0.08);
    animation: pillarSkew7 0.4s ease;
}

@keyframes pillarSkew7 {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

.pillar-8:hover {
    transform: translateY(5px) scale(0.98);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
    background: rgba(255, 215, 0, 0.08);
    animation: pillarSink8 0.5s ease;
}

@keyframes pillarSink8 {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

.pillar-9:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.1);
    background: rgba(255, 69, 0, 0.08);
    animation: pillarRotate9 0.8s ease-in-out;
}

@keyframes pillarRotate9 {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

.pillar-10:hover {
    transform: scale(1.02) translateX(5px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.1);
    background: rgba(30, 64, 175, 0.08);
    animation: pillarGrow10 0.6s ease;
}

@keyframes pillarGrow10 {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.pillar-11:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 198, 255, 0.1);
    background: rgba(0, 198, 255, 0.08);
    animation: pillarFlip11 0.7s ease;
}

@keyframes pillarFlip11 {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

.pillar-item::before, .website-subsection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #00c6ff, #1e40af);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar-item:hover::before, .website-subsection:hover::before {
    opacity: 1;
}

.pillar-item h4, .website-subsection h4 {
    color: #00c6ff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.pillar-item p, .website-subsection p {
    color: #e0e7ff;
    line-height: 1.7;
}

/* Quick Links */
.quick-links {
    padding: 3rem 0;
    background: rgba(0, 198, 255, 0.01);
    text-align: center;
}

.quick-links h3 {
    margin-bottom: 2rem;
    color: #e0e7ff;
    font-size: 1.5rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.link-item {
    padding: 1rem;
    background: rgba(10, 10, 15, 0.6);
    color: #e0e7ff;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 198, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Unique Quick Link Buttons (removed rotations) */
.ql-btn-1 { animation: qlPulse1 2s infinite; }
@keyframes qlPulse1 { from { box-shadow: 0 0 5px #00c6ff; } to { box-shadow: 0 0 15px #00c6ff; } }
.ql-btn-1:hover { background: #00c6ff; transform: translateY(-5px) scale(1.05); }

.ql-btn-2 { animation: qlBounce2 1.5s infinite; }
@keyframes qlBounce2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.ql-btn-2:hover { background: #ff6b35; transform: scale(1.1); }

.ql-btn-3 { animation: qlSpin3 3s ease-in-out infinite; }
@keyframes qlSpin3 { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
.ql-btn-3:hover { background: #ffd700; transform: scale(1.05); }

.ql-btn-4 { animation: qlShake4 1s infinite; }
@keyframes qlShake4 { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-2px); } 75% { transform: translateX(2px); } }
.ql-btn-4:hover { background: #ff4500; transform: translateY(-5px); }

.ql-btn-5 { animation: qlWave5 2s infinite; }
@keyframes qlWave5 { 0% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } 50% { clip-path: polygon(0 0, 100% 50%, 100% 100%, 0 100%); } 100% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
.ql-btn-5:hover { background: #1e40af; transform: scale(1.05); }

.ql-btn-6 { animation: qlFade6 2s infinite; }
@keyframes qlFade6 { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.ql-btn-6:hover { background: #00c6ff; transform: translateX(10px); }

.ql-btn-7 { animation: qlLift7 1s infinite alternate; }
@keyframes qlLift7 { from { transform: translateY(0); } to { transform: translateY(-3px); } }
.ql-btn-7:hover { background: #ff6b35; transform: scale(1.05); }

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

.link-item:hover::before {
    left: 100%;
}

.link-item:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Footer */
.footer {
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 198, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-brand p {
    color: #b3b3cc;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 1rem;
}

/* Unique Social Buttons (removed rotations) */
.soc-btn-1 { animation: socPulse1 2s infinite; }
@keyframes socPulse1 { from { transform: scale(1); } to { transform: scale(1.1); } }
.soc-btn-1:hover img { filter: grayscale(0) drop-shadow(0 0 10px #00c6ff); transform: scale(1.2); }

.soc-btn-2 { animation: socBounce2 1.5s infinite; }
@keyframes socBounce2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }
.soc-btn-2:hover img { filter: grayscale(0) drop-shadow(0 0 10px #ff0000); transform: scale(1.3); }

.soc-btn-3 { animation: socSpin3 3s ease-in-out infinite; }
@keyframes socSpin3 { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
.soc-btn-3:hover img { filter: grayscale(0) drop-shadow(0 0 10px #0088cc); transform: scale(1.2); }

.social-link img {
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
    filter: grayscale(1);
}

.social-link:hover img {
    filter: grayscale(0) drop-shadow(0 0 10px #00c6ff);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #666680;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #0a0a0f;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    border: 1px solid #00c6ff;
    box-shadow: 0 10px 30px rgba(0, 198, 255, 0.2);
}

.modal-content h3 {
    color: #00c6ff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-content p {
    color: #e0e7ff;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

#allow-btn {
    background: linear-gradient(135deg, #00c6ff, #1e40af);
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: allowGlow 1.5s infinite alternate;
}

@keyframes allowGlow {
    from { box-shadow: 0 0 10px #00c6ff; }
    to { box-shadow: 0 0 20px #00c6ff; }
}

#allow-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 198, 255, 0.3);
}

#deny-btn {
    background: transparent;
    color: #00c6ff;
    border: 1px solid #00c6ff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: denyPulse 1s infinite;
}

@keyframes denyPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

#deny-btn:hover {
    background: #00c6ff;
    color: #0a0a0f;
    transform: translateY(-2px) scale(1.05);
}

#close-visit-modal {
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

#close-visit-modal:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-desktop {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 8rem 1rem 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        justify-content: space-evenly;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .platform-buttons {
        flex-direction: column;
        align-items: center;
    }

    #animated-keywords {
        font-size: 1.1rem;
    }

    .pillar-item, .website-subsection {
        padding: 1.5rem;
    }

    .floating-shapes {
        width: 95vw;
        height: 100px;
    }

    .shape {
        width: 60px;
        height: 60px;
    }

    .shape-1 {
        left: 2%;
    }

    .shape-2 {
        left: 20%;
    }

    .shape-3 {
        left: 38%;
    }

    .shape-4 {
        left: 56%;
    }

    .shape-5 {
        left: 74%;
    }

    .shape-6 {
        left: 92%;
    }

    .center-logo {
        width: 60px;
        height: 60px;
    }

    .coming-visual {
        height: 150px;
    }

    .pulse-ring {
        width: 80px;
        height: 80px;
    }

    .teaser-content p {
        font-size: 1rem;
    }

    .modal-content {
        margin: 20% auto;
        width: 90%;
        padding: 1.5rem;
    }

    .modal-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .logo-particle {
        width: 60px;
        height: 60px;
    }

    #tynixor-explode {
        font-size: 4rem;
    }

    .platform-link {
        min-width: 100%; /* Full width on mobile for consistency */
    }
}

/* Scroll Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos].fade-up {
    opacity: 1;
    transform: translateY(0);
}