/* ===== CAMADAS Z-INDEX (Organizadas) ===== */
/*
Layer 0: Background elements (liquid-bg, grid)
Layer 100: Main content
Layer 500: Dashboard, Products, Services
Layer 1000: Header fixed
Layer 5000: Modals e overlays
Layer 10000: Loader
*/

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0e1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TELA DE CARREGAMENTO ===== */
.surreal-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 50%, #0a0e1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    overflow: hidden;
}

.surreal-loader.hidden {
    animation: fadeOutLoader 1s ease forwards;
}

@keyframes fadeOutLoader {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.loader-3d-container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.loader-cube {
    width: 120px;
    height: 120px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 3s infinite linear;
    margin: 0 auto 40px;
}

@keyframes rotateCube {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

.cube-face {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(139, 92, 246, 0.4));
    border: 2px solid rgba(59, 130, 246, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.5), inset 0 0 30px rgba(59, 130, 246, 0.2);
}

.cube-front  { transform: rotateY(0deg) translateZ(60px); }
.cube-back   { transform: rotateY(180deg) translateZ(60px); }
.cube-right  { transform: rotateY(90deg) translateZ(60px); }
.cube-left   { transform: rotateY(-90deg) translateZ(60px); }
.cube-top    { transform: rotateX(90deg) translateZ(60px); }
.cube-bottom { transform: rotateX(-90deg) translateZ(60px); }

.loader-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    z-index: 5;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3b82f6;
    border-right-color: #8b5cf6;
    animation: rotateRing 2s linear infinite;
}

.ring-1 {
    width: 180px;
    height: 180px;
    margin: -90px 0 0 -90px;
    animation-duration: 1.5s;
}

.ring-2 {
    width: 220px;
    height: 220px;
    margin: -110px 0 0 -110px;
    animation-duration: 2s;
    animation-direction: reverse;
}

.ring-3 {
    width: 260px;
    height: 260px;
    margin: -130px 0 0 -130px;
    animation-duration: 2.5s;
}

@keyframes rotateRing {
    0% { transform: rotateZ(0deg); }
    100% { transform: rotateZ(360deg); }
}

.loader-text {
    position: relative;
    z-index: 20;
    margin-top: 180px;
}

.loader-text h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 30px rgba(59, 130, 246, 0.8); }
    50% { text-shadow: 0 0 50px rgba(59, 130, 246, 1); }
}

.loader-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 25px;
}

.loading-bar {
    width: 300px;
    height: 6px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #3b82f6);
    background-size: 200% 100%;
    animation: loadingProgress 3s ease-in-out infinite;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

@keyframes loadingProgress {
    0% { width: 0%; background-position: 0% 50%; }
    50% { width: 100%; background-position: 100% 50%; }
    100% { width: 100%; background-position: 0% 50%; }
}

.loader-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* ===== GLASS MORPHISM ===== */
.glass-morphism {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-button {
    background: rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-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.6s;
}

.glass-button:hover::before {
    left: 100%;
}

.glass-button:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

.glass-pill {
    background: rgba(59, 130, 246, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

/* ===== HEADER ===== */
.header-3d {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 1200px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-3d.scrolled {
    top: 10px;
}

.nav-3d {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.nav-3d:hover {
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 120px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.nav-container-centered {
    padding: 15px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nav-logo-3d {
    flex-shrink: 0;
    z-index: 1;
}

.logo-image-3d {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 4px 20px rgba(59, 130, 246, 0.4));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-image-3d:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 30px rgba(59, 130, 246, 0.8));
}

.nav-menu-centered {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-link-3d {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link-3d::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-link-3d:hover::before,
.nav-link-3d.active::before {
    opacity: 1;
}

.nav-link-3d:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-link-3d.active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
}

.nav-discord-3d {
    flex-shrink: 0;
}

.discord-btn-3d {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    color: white;
    font-size: 15px;
}

/* ===== HERO SECTION ===== */
.hero-3d {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 150px 0 80px;
    overflow: hidden;
}

.liquid-bg-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 50%);
    animation: liquidMove3D 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes liquidMove3D {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.15); }
    66% { transform: translate(-40px, 40px) scale(0.85); }
}

#particles-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.glass-grid-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.04) 2px, transparent 2px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.04) 2px, transparent 2px);
    background-size: 80px 80px;
    opacity: 0.6;
    pointer-events: none;
    animation: gridPulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.3; }
}

.hero-container {
    position: relative;
    z-index: 100;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content-3d {
    animation: floatIn 1s ease-out;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-3d {
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-glow {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 15px #10b981;
    display: inline-block;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
}

.title-line {
    display: block;
}

.title-line-sub {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.highlight {
    color: #3b82f6;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-badge {
    margin-bottom: 25px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    color: white;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Dashboard */
.visual-3d {
    position: relative;
    z-index: 100;
}

.dashboard-glass {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.header-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.red { background: #ef4444; }
.control-dot.yellow { background: #f59e0b; }
.control-dot.green { background: #10b981; }

.status-badge {
    font-size: 14px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.dashboard-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    font-size: 24px;
}

.feature-info {
    flex: 1;
}

.feature-name {
    display: block;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.feature-status {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.feature-toggle {
    width: 48px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
}

.feature-toggle.on {
    background: #10b981;
}

.feature-toggle::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
}

.feature-toggle.on::after {
    transform: translateX(24px);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 100px 0;
    position: relative;
    z-index: 100;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-glass {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 500;
}

.product-glass:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.4);
    z-index: 501;
}

.glass-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    border-radius: 24px;
    pointer-events: none;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
}

.popular-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.premium-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.lifetime-badge {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.product-header {
    margin-bottom: 30px;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #3b82f6;
}

.product-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.product-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.product-features {
    margin-bottom: 30px;
}

.feature-item {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:last-child {
    border-bottom: none;
}

.product-price {
    margin-bottom: 25px;
    text-align: center;
}

.currency {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    vertical-align: top;
}

.price {
    font-size: 56px;
    font-weight: 900;
    color: #3b82f6;
}

.period {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

.btn-product {
    width: 100%;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 15px;
    border: none;
    color: white;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 0;
    position: relative;
    z-index: 100;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-glass {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 500;
}

.service-glass:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.4);
    z-index: 501;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-glass h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-glass p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    position: relative;
    z-index: 100;
}

.contact-glass {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-glass h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
}

.contact-glass p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.btn-contact {
    padding: 18px 36px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    color: white;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 100;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
    .hero-container {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .header-3d {
        width: calc(100% - 20px);
        top: 10px;
    }

    .nav-container-centered {
        padding: 12px 20px;
        gap: 15px;
        flex-wrap: wrap;
    }

    .nav-menu-centered {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }

    .nav-link-3d {
        padding: 8px 16px;
        font-size: 13px;
    }

    .logo-image-3d {
        height: 40px;
    }

    .discord-btn-3d {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .title-line-sub {
        font-size: 28px;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .loader-cube {
        width: 80px;
        height: 80px;
    }

    .cube-face {
        width: 80px;
        height: 80px;
    }

    .cube-front, .cube-back { transform: rotateY(0deg) translateZ(40px); }
    .cube-right, .cube-left { transform: rotateY(90deg) translateZ(40px); }
    .cube-top, .cube-bottom { transform: rotateX(90deg) translateZ(40px); }

    .loader-text h2 {
        font-size: 32px;
    }

    .loading-bar {
        width: 200px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .contact-glass {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .title-line-sub {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .contact-glass h2 {
        font-size: 28px;
    }
}   