/* ==========================================
   POGZY — Premium Website Stylesheet
   Color Palette: Deep Navy → Royal Blue → Cyan Accents
   ========================================== */

/* === CSS Variables === */
:root {
    /* Core Colors - From OBS direction */
    --bg-darkest: #050b15;
    --bg-dark: #0a1628;
    --bg-medium: #0f1f3a;
    --bg-light: #162d50;
    --blue-primary: #1a3f6e;
    --blue-secondary: #1e5a9a;
    --blue-accent: #2a7dd4;
    --blue-bright: #4a9eff;
    --blue-glow: #60b4ff;
    --cyan-accent: #00d4ff;
    --cyan-light: #7eefff;
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-08: rgba(255, 255, 255, 0.08);
    --white-05: rgba(255, 255, 255, 0.05);

    /* Gradients */
    --gradient-main: linear-gradient(135deg, #0a1628 0%, #0f2847 40%, #1a3f6e 100%);
    --gradient-card: linear-gradient(135deg, rgba(26, 63, 110, 0.3), rgba(10, 22, 40, 0.6));
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    --gradient-text: linear-gradient(135deg, var(--blue-bright), var(--cyan-accent));
    --gradient-btn: linear-gradient(135deg, var(--blue-accent), var(--cyan-accent));

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Borders */
    --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
    --border-glow: 1px solid rgba(42, 125, 212, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-darkest);
    color: var(--white-90);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* === Particle Canvas === */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* === Geometric Background === */
.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(26, 63, 110, 0.15), rgba(10, 22, 40, 0.05));
    border: 1px solid rgba(42, 125, 212, 0.06);
}

.geo-shape-1 {
    width: 60%;
    height: 120%;
    top: -10%;
    left: -15%;
    transform: rotate(-15deg);
    background: linear-gradient(160deg, rgba(15, 40, 71, 0.5), transparent);
}

.geo-shape-2 {
    width: 50%;
    height: 100%;
    top: -5%;
    right: -10%;
    transform: rotate(10deg);
    background: linear-gradient(200deg, rgba(26, 63, 110, 0.3), transparent);
}

.geo-shape-3 {
    width: 35%;
    height: 80%;
    bottom: -20%;
    left: 20%;
    transform: rotate(-25deg);
    background: linear-gradient(135deg, rgba(30, 90, 154, 0.1), transparent);
}

.geo-shape-4 {
    width: 25%;
    height: 60%;
    top: 10%;
    right: 5%;
    transform: rotate(20deg);
    background: linear-gradient(180deg, rgba(42, 125, 212, 0.08), transparent);
}

.geo-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(42, 125, 212, 0.15), transparent);
    transform-origin: center;
}

.geo-line-1 {
    width: 120%;
    top: 30%;
    left: -10%;
    transform: rotate(-12deg);
}

.geo-line-2 {
    width: 100%;
    top: 55%;
    left: 0;
    transform: rotate(-8deg);
    opacity: 0.5;
}

.geo-line-3 {
    width: 80%;
    top: 75%;
    right: -5%;
    transform: rotate(-15deg);
    opacity: 0.3;
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    padding: 10px 40px;
    background: rgba(5, 11, 21, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: var(--border-subtle);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.nav-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--blue-accent);
    transition: var(--transition-smooth);
    object-fit: cover;
}

.nav-avatar:hover {
    border-color: var(--cyan-accent);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.nav-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 3px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--white-70);
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: var(--white-08);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gradient-text);
    border-radius: 2px;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.nav-burger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-burger.active span:nth-child(2) {
    opacity: 0;
}

.nav-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(5, 11, 21, 0.97);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--white-70);
    transition: var(--transition-smooth);
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu.active .mobile-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.4s; }

.mobile-link:hover {
    color: var(--cyan-accent);
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: var(--container-max);
    width: 100%;
}

.hero-avatar-container {
    position: relative;
    flex-shrink: 0;
}

.hero-avatar {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    position: relative;
    z-index: 3;
    border: 3px solid var(--blue-accent);
    animation: float 6s ease-in-out infinite;
    object-fit: cover;
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 125, 212, 0.3), transparent 70%);
    filter: blur(30px);
    z-index: 1;
    animation: pulse-glow 4s ease-in-out infinite;
}

.avatar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid;
    z-index: 2;
}

.avatar-ring-1 {
    width: 320px;
    height: 320px;
    border-color: rgba(42, 125, 212, 0.2);
    animation: ring-rotate 20s linear infinite;
}

.avatar-ring-2 {
    width: 360px;
    height: 360px;
    border-color: rgba(0, 212, 255, 0.1);
    animation: ring-rotate 30s linear infinite reverse;
}

.avatar-ring-3 {
    width: 400px;
    height: 400px;
    border-color: rgba(42, 125, 212, 0.05);
    animation: ring-rotate 25s linear infinite;
}

.avatar-ring-1::before,
.avatar-ring-2::before,
.avatar-ring-3::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--cyan-accent);
    border-radius: 50%;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--cyan-accent);
}

.avatar-ring-2::before {
    background: var(--blue-bright);
    box-shadow: 0 0 10px var(--blue-bright);
    width: 6px;
    height: 6px;
    top: auto;
    bottom: -3px;
}

.avatar-ring-3::before {
    width: 4px;
    height: 4px;
    top: 50%;
    left: -2px;
    transform: none;
    opacity: 0.7;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--white-05);
    border: var(--border-glow);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--blue-bright);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan-accent);
    box-shadow: 0 0 10px var(--cyan-accent);
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.title-line {
    display: block;
    font-size: clamp(4rem, 10vw, 8rem);
    letter-spacing: 8px;
    background: linear-gradient(135deg, var(--white) 0%, var(--blue-bright) 50%, var(--cyan-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 40px rgba(42, 125, 212, 0.3));
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--white-70);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-subtitle strong {
    color: var(--cyan-accent);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-btn);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(42, 125, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(42, 125, 212, 0.5);
}

.btn-secondary {
    background: var(--white-08);
    color: var(--white);
    border: var(--border-glow);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white-15);
    transform: translateY(-3px);
    border-color: var(--cyan-accent);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
}

.btn-discord {
    background: #5865F2;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.5);
    background: #6c78f5;
}

/* === Scroll Indicator === */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white-50);
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    animation: fadeInUp 1s ease-out 1.2s both;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--white-30);
    border-radius: 14px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--cyan-accent);
    border-radius: 4px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-bounce 2s ease-in-out infinite;
}

/* === Sections === */
.section {
    position: relative;
    padding: var(--section-padding);
    z-index: 1;
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--blue-bright);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--white-05);
    border-radius: 50px;
    border: 1px solid rgba(42, 125, 212, 0.15);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--gradient-btn);
    border-radius: 3px;
    margin: 20px auto 0;
}

/* === About Section === */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-card {
    background: var(--gradient-glass);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-btn);
    opacity: 0;
    transition: var(--transition-smooth);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(42, 125, 212, 0.2);
    background: linear-gradient(135deg, rgba(26, 63, 110, 0.2), rgba(10, 22, 40, 0.4));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-card:hover::before {
    opacity: 1;
}

.about-card-main {
    grid-column: span 2;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(42, 125, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-bright);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.about-card:hover .card-icon {
    background: rgba(0, 212, 255, 0.15);
    color: var(--cyan-accent);
    transform: scale(1.1);
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.about-card p {
    color: var(--white-70);
    line-height: 1.8;
    font-size: 0.95rem;
}

.about-card p strong {
    color: var(--cyan-accent);
}

/* === NeoSky Section === */
.neosky-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.neosky-glass {
    background: var(--gradient-glass);
    border: var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.neosky-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(42, 125, 212, 0.08), transparent 60%);
    pointer-events: none;
}

.neosky-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.neosky-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--cyan-accent);
    padding: 6px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 20px;
}

.neosky-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 4px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.neosky-desc {
    color: var(--white-70);
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.neosky-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--white-90);
}

.feature-icon {
    color: var(--cyan-accent);
    flex-shrink: 0;
}

.neosky-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* === NeoSky 3D Visual === */
.neosky-visual {
    position: relative;
    width: 240px;
    height: 240px;
    flex-shrink: 0;
}

.cube-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    perspective: 600px;
}

.cube {
    width: 100px;
    height: 100px;
    position: relative;
    transform-style: preserve-3d;
    animation: cube-rotate 15s linear infinite;
}

.cube-face {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(42, 125, 212, 0.4);
    background: rgba(42, 125, 212, 0.08);
    backdrop-filter: blur(5px);
}

.cube-front  { transform: translateZ(50px); }
.cube-back   { transform: rotateY(180deg) translateZ(50px); }
.cube-right  { transform: rotateY(90deg) translateZ(50px); }
.cube-left   { transform: rotateY(-90deg) translateZ(50px); }
.cube-top    { transform: rotateX(90deg) translateZ(50px); }
.cube-bottom { transform: rotateX(-90deg) translateZ(50px); }

.floating-blocks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-block {
    position: absolute;
    border-radius: 4px;
    background: var(--gradient-btn);
    opacity: 0.4;
}

.block-1 {
    width: 16px;
    height: 16px;
    top: 10%;
    left: 10%;
    animation: float-block 4s ease-in-out infinite;
}

.block-2 {
    width: 10px;
    height: 10px;
    top: 75%;
    left: 20%;
    animation: float-block 5s ease-in-out infinite 0.5s;
}

.block-3 {
    width: 12px;
    height: 12px;
    top: 20%;
    right: 15%;
    animation: float-block 4.5s ease-in-out infinite 1s;
}

.block-4 {
    width: 8px;
    height: 8px;
    bottom: 15%;
    right: 25%;
    animation: float-block 3.5s ease-in-out infinite 1.5s;
}

.block-5 {
    width: 14px;
    height: 14px;
    top: 50%;
    left: 0;
    animation: float-block 6s ease-in-out infinite 2s;
}

/* === Social Cards === */
.socials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.social-card {
    position: relative;
    background: var(--gradient-glass);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.03;
    transition: var(--transition-smooth);
}

.social-bg-icon svg {
    width: 180px;
    height: 180px;
}

.social-card:hover .social-bg-icon {
    opacity: 0.08;
    transform: translate(-50%, -50%) scale(1.1);
}

.social-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.social-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--white);
}

.social-handle {
    font-size: 0.85rem;
    color: var(--white-50);
    font-weight: 400;
}

.social-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: 0;
    transform: translate(-5px, 5px);
    transition: var(--transition-smooth);
    color: var(--white-50);
}

.social-card:hover .social-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* Social Card Colors */
.social-youtube .social-icon {
    background: rgba(255, 0, 0, 0.12);
    color: #ff4444;
}

.social-youtube:hover {
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.1);
    transform: translateY(-8px);
}

.social-tiktok .social-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.social-tiktok:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.05);
    transform: translateY(-8px);
}

.social-instagram .social-icon {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.15), rgba(253, 29, 29, 0.15), rgba(252, 176, 69, 0.15));
    color: #e1306c;
}

.social-instagram:hover {
    border-color: rgba(225, 48, 108, 0.3);
    box-shadow: 0 15px 40px rgba(225, 48, 108, 0.1);
    transform: translateY(-8px);
}

.social-discord-card .social-icon {
    background: rgba(88, 101, 242, 0.15);
    color: #5865F2;
}

.social-discord-card:hover {
    border-color: rgba(88, 101, 242, 0.3);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.1);
    transform: translateY(-8px);
}

/* === Footer === */
.footer {
    position: relative;
    z-index: 1;
    padding: 60px 40px;
    border-top: var(--border-subtle);
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--blue-accent);
    object-fit: cover;
}

.footer-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--white);
}

.footer-text {
    color: var(--white-50);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.footer-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white-05);
    border: var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-50);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--cyan-accent);
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-3px);
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: var(--white-15);
    margin: 0 auto 20px;
}

.footer-copy {
    color: var(--white-30);
    font-size: 0.8rem;
}

/* === Reveal Animations === */
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-up {
    transform: translateY(60px);
}

.reveal-left.revealed,
.reveal-right.revealed,
.reveal-up.revealed {
    opacity: 1;
    transform: translate(0);
}

/* === Keyframe Animations === */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--cyan-accent); }
    50% { opacity: 0.5; box-shadow: 0 0 20px var(--cyan-accent); }
}

@keyframes ring-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes cube-rotate {
    from { transform: rotateX(0) rotateY(0); }
    to { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes float-block {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-15px) rotate(45deg); opacity: 0.7; }
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-avatar {
        width: 220px;
        height: 220px;
    }

    .avatar-ring-1 { width: 260px; height: 260px; }
    .avatar-ring-2 { width: 300px; height: 300px; }
    .avatar-ring-3 { width: 340px; height: 340px; }
    .avatar-glow { width: 260px; height: 260px; }

    .about-card-main {
        grid-column: span 1;
    }

    .neosky-glass {
        flex-direction: column;
        padding: 40px;
    }

    .neosky-visual {
        width: 180px;
        height: 180px;
    }

    .socials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .navbar {
        padding: 12px 20px;
    }

    .navbar.scrolled {
        padding: 8px 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .scroll-indicator {
        display: none;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-avatar {
        width: 180px;
        height: 180px;
    }

    .avatar-ring-1 { width: 220px; height: 220px; }
    .avatar-ring-2 { width: 260px; height: 260px; }
    .avatar-ring-3 { width: 300px; height: 300px; }
    .avatar-glow { width: 220px; height: 220px; }

    .title-line {
        letter-spacing: 4px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .section-container {
        padding: 0 20px;
    }

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

    .about-card-main {
        grid-column: span 1;
    }

    .about-card {
        padding: 28px;
    }

    .neosky-glass {
        padding: 28px;
    }

    .neosky-features {
        grid-template-columns: 1fr;
    }

    .neosky-buttons {
        flex-direction: column;
    }

    .neosky-buttons .btn {
        max-width: 100%;
    }

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

    .social-card {
        padding: 30px 24px;
    }

    .footer {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .hero-avatar {
        width: 150px;
        height: 150px;
    }

    .avatar-ring-1 { width: 190px; height: 190px; }
    .avatar-ring-2 { width: 230px; height: 230px; }
    .avatar-ring-3 { width: 260px; height: 260px; }

    .section-title {
        font-size: 1.8rem;
    }
}
