/* ===== CSS Variables ===== */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #16161f;
    --bg-card-hover: #1a1a25;
    --purple-primary: #0073D6;
    --purple-light: #3399ff;
    --purple-dark: #0056a3;
    --purple-glow: rgba(0, 115, 214, 0.3);
    --cyan-accent: #22d3ee;
    --green-accent: #22c55e;
    --yellow-accent: #eab308;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 115, 214, 0.3);
    --gradient-purple: linear-gradient(135deg, #0073D6 0%, #0056a3 100%);
    --gradient-card: linear-gradient(180deg, rgba(0, 115, 214, 0.1) 0%, transparent 50%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-purple);
    color: white;
    box-shadow: 0 4px 20px var(--purple-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px var(--purple-glow);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
}

.btn-large {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-buy {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    flex: 1;
    justify-content: center;
}

.btn-buy:hover {
    background: var(--bg-card-hover);
    border-color: var(--purple-primary);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(18, 18, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Navigation mit Banner (Products-Seite) */
body:has(.top-banner) .navbar {
    top: 32px;
}

/* Top Banner */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--purple-primary);
    color: white;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.top-banner a:hover {
    opacity: 0.8;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

/* Left Side - Logo & Status */
.nav-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.online-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.status-text {
    color: #22c55e;
}

/* Center - Navigation Pills */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-pills {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-pill svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.nav-pill:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-pill.active {
    background: var(--purple-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 115, 214, 0.4);
}

.nav-pill.active:hover {
    background: var(--purple-light);
}

/* Right Side - Icons & Button */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-icon-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: var(--purple-primary);
    color: white;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 115, 214, 0.4);
}

.customer-panel-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
}

.customer-panel-btn svg {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-pill {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .nav-pill span {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-center {
        display: none;
    }
    
    .online-status {
        display: none;
    }
    
    .nav-right {
        gap: 8px;
    }
    
    .customer-panel-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .customer-panel-btn span {
        display: none;
    }
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 152px 24px 60px; /* Banner (32px) + Navbar (~60px) + Spacing (60px) */
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 115, 214, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0, 86, 163, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0, 86, 163, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 115, 214, 0.1);
    border: 1px solid rgba(0, 115, 214, 0.3);
    border-radius: 50px;
    font-size: 13px;
    color: var(--purple-light);
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(0, 115, 214, 0.2);
    transform: translateY(-2px);
}

.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple-primary) 50%, var(--purple-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-badge svg {
    color: var(--purple-primary);
}

.section-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== Products Section ===== */
.products {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 115, 214, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}

.product-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-purple);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
    width: fit-content;
    color: white;
}

.product-badge.premium {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.product-icons {
    display: flex;
    gap: 8px;
}

.icon-badge {
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.product-info {
    padding: 20px;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.product-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.status-badge.undetected {
    background: rgba(34, 197, 94, 0.1);
    color: var(--green-accent);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.product-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.price-label {
    font-size: 12px;
    color: var(--text-muted);
}

.price-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--purple-primary);
}

.products-cta {
    text-align: center;
}

/* ===== Games Section ===== */
.games {
    background: var(--bg-secondary);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.games-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto;
}

/* New Game Cards Style */
.games-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .games-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .games-grid-new {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}

.game-card-new {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 24px;
    text-decoration: none;
}

.game-card-new:hover {
    transform: translateY(-8px) scale(1.03);
}

.game-card-new:hover .game-skin {
    transform: scale(1.08) translateY(-5px);
}

.game-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #1a1a2e 0%,
        #16213e 30%,
        #0f3460 60%,
        #1a1a2e 100%
    );
    z-index: 0;
}

.game-card-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        -45deg,
        transparent 0%,
        rgba(0, 200, 255, 0.15) 30%,
        rgba(0, 200, 255, 0.25) 50%,
        transparent 70%
    );
    transform: skewX(-15deg);
    transform-origin: top right;
}

.game-card-bg::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: linear-gradient(
        -30deg,
        transparent 0%,
        rgba(0, 180, 255, 0.2) 40%,
        rgba(0, 220, 255, 0.3) 60%,
        transparent 80%
    );
    transform: skewX(-20deg);
}

.game-skin {
    position: relative;
    z-index: 1;
    width: 85%;
    height: auto;
    max-height: 80%;
    object-fit: contain;
    object-position: bottom center;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    margin-bottom: auto;
    margin-top: 10%;
}

.game-skin.spoofer {
    width: 75%;
    margin-top: 15%;
}

.game-title-new {
    position: relative;
    z-index: 2;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: white;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-top: auto;
}

@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.game-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.game-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-image::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, var(--cyan-accent) 100%);
    opacity: 0.6;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    z-index: 2;
}

.game-title {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.game-title sub {
    font-size: 10px;
    vertical-align: middle;
}

/* ===== Features Section ===== */
.features {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.feature-card.wide {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .feature-card.wide:nth-child(4) {
        grid-column: span 1;
    }
    .feature-card.wide:nth-child(5) {
        grid-column: span 2;
    }
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card > p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-icon {
    height: 140px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

/* Instant Delivery Icon */
.instant-delivery {
    flex-direction: column;
    gap: 12px;
}

.icon-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--green-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3), inset 0 0 30px rgba(34, 197, 94, 0.1);
    animation: glow-green 2s ease-in-out infinite;
}

@keyframes glow-green {
    0%, 100% { box-shadow: 0 0 30px rgba(34, 197, 94, 0.3), inset 0 0 30px rgba(34, 197, 94, 0.1); }
    50% { box-shadow: 0 0 50px rgba(34, 197, 94, 0.5), inset 0 0 40px rgba(34, 197, 94, 0.2); }
}

.icon-inner {
    width: 60px;
    height: 60px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-accent);
}

.delivery-text {
    font-size: 10px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
}

/* Safe & Undetected Icon */
.safe-undetected {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(0, 115, 214, 0.1) 100%);
}

.shield-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 40px var(--purple-glow);
}

/* Config Panel */
.config-panel {
    flex-direction: column;
    padding: 16px;
}

.toggle-group {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 12px;
    width: 100%;
}

.toggle-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-primary);
}

.toggle-icon {
    width: 24px;
    height: 24px;
    background: var(--bg-secondary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.toggle {
    width: 40px;
    height: 22px;
    background: var(--bg-secondary);
    border-radius: 11px;
    margin-left: auto;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--text-muted);
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
}

.toggle.active {
    background: var(--purple-primary);
}

.toggle.active::after {
    left: 20px;
    background: white;
}

/* Payment Methods */
.payment-methods {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
}

.payment-icon {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 12px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.payment-icon:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.payment-icon svg {
    flex-shrink: 0;
}

.payment-icon.gpay { color: #4285f4; }
.payment-icon.paypal { color: #003087; }
.payment-icon.crypto { color: #f7931a; }
.payment-icon.visa { color: #1a1f71; }
.payment-icon.apple { color: var(--text-primary); }

/* Payment Image Icons */
.payment-img {
    height: 36px;
    width: auto;
    padding: 10px;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.payment-img:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    opacity: 1;
}

/* FAQ Page */
.faq-page-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-question {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    border-color: rgba(100, 100, 255, 0.3);
    background: rgba(100, 100, 255, 0.05);
}

.faq-question h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
}

.faq-question p {
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}

.faq-cta-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
}

.faq-cta-section h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px;
}

.faq-cta-section p {
    color: #aaa;
    font-size: 16px;
    margin: 0 0 32px;
}

.faq-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Support Page */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.support-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.support-card:hover {
    border-color: rgba(100, 100, 255, 0.3);
    transform: translateY(-5px);
    background: rgba(100, 100, 255, 0.05);
}

.support-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.support-card-icon.discord { background: #5865F2; }
.support-card-icon.email { background: #0073D6; }
.support-card-icon.faq { background: #10B981; }
.support-card-icon.kb { background: #8B5CF6; }

.support-card h3 {
    color: #fff;
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
}

.support-card p {
    color: #aaa;
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.5;
}

.support-link {
    color: #6366f1;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.support-card:hover .support-link {
    color: #818cf8;
}

.support-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    margin: 40px 0;
}

.support-section h2 {
    color: #fff;
    margin: 0 0 24px;
    font-size: 24px;
    font-weight: 600;
}

.support-form {
    max-width: 600px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ccc;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: rgba(13, 13, 26, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Payment Page Icons */
.payment-page-icon {
    height: 40px;
    width: auto;
    padding: 12px;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.payment-page-icon:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px) scale(1.05);
    opacity: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Easy Setup */
.easy-setup {
    flex-direction: row;
    gap: 20px;
    padding: 16px;
    height: auto;
    min-height: 200px;
}

.setup-panel {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 12px;
    flex: 1;
}

.setup-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 12px;
    color: var(--text-secondary);
}

.setup-icon {
    width: 20px;
    height: 20px;
    background: var(--bg-secondary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Interactive Toggle Switch */
.toggle-switch {
    position: relative;
    width: 36px;
    height: 20px;
    margin-left: auto;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-secondary);
    transition: 0.3s;
    border-radius: 20px;
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: var(--text-muted);
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--purple-primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(16px);
    background-color: white;
}

/* Interactive Range Slider */
.slider-input {
    -webkit-appearance: none;
    appearance: none;
    width: 80px;
    height: 4px;
    background: var(--bg-secondary);
    border-radius: 2px;
    outline: none;
    margin-left: auto;
    cursor: pointer;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--purple-primary);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 10px var(--purple-glow);
}

.slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--purple-glow);
}

.slider-input::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--purple-primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.slider-input::-moz-range-track {
    background: linear-gradient(to right, var(--purple-primary) 0%, var(--purple-primary) var(--value, 50%), var(--bg-secondary) var(--value, 50%), var(--bg-secondary) 100%);
    height: 4px;
    border-radius: 2px;
}

.interact-hint {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-size: 11px;
    color: var(--text-muted);
}

.interact-hint svg {
    color: var(--text-muted);
    opacity: 0.5;
}

/* ===== Media Program Section ===== */
.media-program {
    background: var(--bg-primary);
    padding: 100px 0;
}

.media-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .media-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.media-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.media-item {
    display: flex;
    gap: 16px;
}

.media-dot {
    width: 8px;
    height: 8px;
    background: var(--purple-primary);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.media-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.media-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.media-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.media-preview {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    display: flex;
    gap: 8px;
}

.phone-mockup-single {
    position: relative;
}

.phone-screen-large {
    width: 280px;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 32px 28px;
    border: 1px solid var(--border-color);
}

.phone-screen-large h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.phone-screen-large ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-screen-large li {
    font-size: 14px;
    color: var(--text-secondary);
}

.phone-screen {
    width: 200px;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 24px 20px;
    border: 1px solid var(--border-color);
}

.phone-header {
    margin-bottom: 20px;
}

.phone-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.phone-logo svg {
    color: var(--purple-primary);
}

.phone-screen h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.phone-screen ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-screen li {
    font-size: 12px;
    color: var(--text-secondary);
}

.phone-screen .highlight {
    color: var(--purple-primary);
}

.phone-side {
    width: 160px;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 115, 214, 0.2) 100%);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.side-content {
    flex: 1;
}

.side-badge {
    display: inline-block;
    font-size: 8px;
    color: var(--purple-light);
    margin-bottom: 8px;
}

.phone-side h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--purple-primary);
    line-height: 1.2;
    margin-bottom: 8px;
}

.phone-side p {
    font-size: 7px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 12px;
}

.side-buttons {
    display: flex;
    gap: 6px;
}

.btn-mini {
    padding: 4px 8px;
    font-size: 8px;
    background: var(--purple-primary);
    border-radius: 4px;
    color: white;
}

.btn-mini.outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--purple-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 24px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-secondary);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.badge-dot.green {
    background: var(--green-accent);
}

.badge-dot.yellow {
    background: var(--yellow-accent);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 640px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--purple-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.status-online {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--green-accent);
}

.status-online .status-dot {
    background: var(--green-accent);
    animation: pulse 2s infinite;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }
    
    .hero {
        padding: 100px 20px 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card.wide {
        grid-column: span 1;
    }
    
    .easy-setup {
        flex-direction: column;
    }
    
    .phone-mockup {
        flex-direction: column;
        align-items: center;
    }
    
    .phone-side {
        width: 200px;
    }
}

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.product-card,
.game-card,
.feature-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }

.game-card:nth-child(1) { animation-delay: 0.1s; }
.game-card:nth-child(2) { animation-delay: 0.15s; }
.game-card:nth-child(3) { animation-delay: 0.2s; }
.game-card:nth-child(4) { animation-delay: 0.25s; }
.game-card:nth-child(5) { animation-delay: 0.3s; }
.game-card:nth-child(6) { animation-delay: 0.35s; }
.game-card:nth-child(7) { animation-delay: 0.4s; }
.game-card:nth-child(8) { animation-delay: 0.45s; }
