:root {
    --bg: #07070b;
    --bg-card: #0f0f16;
    --bg-hover: #161620;
    --border: #252536;
    --text: #f1f1f4;
    --muted: #9ca3af;
    --primary: #ff5a36;
    --primary-hover: #ff6b4a;
    --primary-glow: rgba(255, 90, 54, 0.15);
    --success: #22c55e;
    --error: #ef4444;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 90, 54, 0.08);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 90, 54, 0.05);
    top: 500px;
    left: -150px;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Header */
.header {
    background: rgba(15, 15, 22, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(255, 90, 54, 0.2);
}

.logo span {
    color: var(--primary);
}

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    color: var(--muted);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-login {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid var(--primary);
    transition: all 0.2s;
}

.header-login:hover {
    background: var(--primary);
    color: #fff;
}

.header-user {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 14px 6px 6px;
    border-radius: 50px;
    border: 1px solid var(--border);
    transition: all 0.2s;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-user:hover {
    border-color: rgba(255, 90, 54, 0.3);
}

.header-user img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.lang-switch {
    display: flex;
    gap: 8px;
}

.lang-switch a {
    color: var(--muted);
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.lang-switch a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.discord-header-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    color: #fff;
    margin-left: 12px;
    transition: transform 0.2s;
}

.discord-header-link:hover {
    transform: scale(1.1);
}

.mobile-header .nav,
.mobile-header .header-actions {
    display: flex;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(15, 15, 22, 0.98);
    border-top: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text);
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}

.mobile-menu a:hover {
    background: var(--bg-hover);
}

.mobile-menu-lang {
    display: flex;
    gap: 10px;
    padding: 12px 0;
    margin-top: 8px;
    border-top: 1px solid var(--border);
}

.mobile-menu-lang a {
    flex: 1;
    text-align: center;
    border: 1px solid var(--border);
    padding: 10px;
    font-size: 13px;
}

.mobile-discord {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    color: #fff !important;
    margin-top: 8px;
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 80px 24px 100px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 320px;
    max-width: 580px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-visual {
    flex: 0 0 320px;
    position: relative;
    z-index: 1;
}

.game-showcase {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.game-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 90, 54, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.badge {
    display: inline-block;
    background: rgba(255, 90, 54, 0.1);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 90, 54, 0.25);
}

.hero h1 {
    font-size: 52px;
    font-weight: 900;
    margin: 0 0 24px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--primary);
    text-shadow: 0 0 40px rgba(255, 90, 54, 0.3);
}

.hero p {
    font-size: 19px;
    color: var(--muted);
    margin: 0 0 36px;
}

/* Buttons */
.btn-primary, .btn-secondary, button[type="submit"] {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-primary, button[type="submit"] {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 90, 54, 0.25);
}

.btn-primary:hover, button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 90, 54, 0.35);
}

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

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

/* Sections */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    margin-bottom: 56px;
    font-size: 17px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 90, 54, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 90, 54, 0.15) 0%, rgba(255, 90, 54, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 90, 54, 0.15);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.feature-card h3 {
    margin: 0 0 12px;
    font-size: 19px;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

/* Brand banner */
.brand-section {
    padding: 60px 24px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 90, 54, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.015) 100%);
}

.brand-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 0 auto 24px;
    border-radius: 3px;
    opacity: 0.6;
}

.brand-label {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 18px;
}

.brand-banner {
    display: inline-block;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 90, 54, 0.08),
        0 0 60px rgba(255, 90, 54, 0.06);
    transition: all 0.35s ease;
}

.brand-banner:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 90, 54, 0.15),
        0 0 80px rgba(255, 90, 54, 0.1);
    border-color: rgba(255, 90, 54, 0.2);
}

.brand-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Games */
.games-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.games-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.game-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 48px;
    text-align: center;
    min-width: 220px;
    transition: all 0.3s;
}

.game-card:hover {
    border-color: rgba(255, 90, 54, 0.3);
    transform: translateY(-4px);
}

.game-img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin-bottom: 16px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-card h3 {
    margin: 0 0 6px;
    font-size: 19px;
}

.game-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* Plans - Horizontal List */
.plans-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.plan-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 28px;
    transition: all 0.3s ease;
}

.plan-row:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 90, 54, 0.3);
    transform: translateX(-4px);
}

.plan-row.popular {
    border-color: rgba(255, 90, 54, 0.45);
    background: linear-gradient(90deg, rgba(255, 90, 54, 0.08) 0%, rgba(255, 255, 255, 0.02) 50%);
    border-right: 3px solid var(--primary);
}

.plan-row.lifetime {
    border-color: rgba(255, 90, 54, 0.4);
    background: linear-gradient(90deg, rgba(255, 90, 54, 0.1) 0%, rgba(255, 255, 255, 0.02) 50%);
    border-right: 3px solid var(--primary);
}

.plan-row-info {
    flex: 1;
    min-width: 0;
}

.plan-row-name {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.plan-row-name h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.plan-row-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lifetime-badge {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8a66 100%);
}

.plan-row-duration {
    color: var(--muted);
    font-size: 13px;
    margin: 0 0 10px;
}

.plan-row-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.plan-row-features span {
    font-size: 12px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.plan-row-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    min-width: 140px;
}

.plan-row-price {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 25px rgba(255, 90, 54, 0.2);
}

.plan-row-currency {
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 12px;
}

.plan-row-action .btn-primary {
    padding: 10px 28px;
    font-size: 14px;
}

/* How it works */
.how-section {
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 90, 54, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(255, 90, 54, 0.03) 0%, transparent 40%);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    counter-reset: step;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: rgba(255, 90, 54, 0.25);
}

.step-card::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -16px;
    left: 28px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(255, 90, 54, 0.3);
}

.step-card h3 {
    margin: 18px 0 10px;
    font-size: 18px;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* Forms */
input[type="text"],
input[type="email"],
select {
    width: 100%;
    padding: 15px 18px;
    margin: 10px 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    transition: all 0.2s;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

input::placeholder {
    color: #6b7280;
}

/* Container cards */
.container {
    max-width: 520px;
    margin: 80px auto;
    padding: 0 24px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card h1, .card h2 {
    color: var(--text);
    margin-top: 0;
}

.card h1 {
    font-size: 28px;
    margin-bottom: 24px;
}

.note {
    background: var(--bg);
    padding: 16px;
    border-radius: 12px;
    color: var(--muted);
    font-size: 14px;
    border: 1px solid var(--border);
}

.error {
    color: #fff;
    background: rgba(239, 68, 68, 0.12);
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.key-box {
    background: var(--bg);
    border: 1px dashed var(--primary);
    border-radius: 14px;
    padding: 28px;
    margin: 24px 0;
    text-align: center;
}

.license-key {
    display: block;
    font-size: 20px;
    font-family: 'Courier New', monospace;
    color: var(--success);
    margin: 14px 0;
    word-break: break-all;
}

/* Checkout */
.checkout-card {
    max-width: 460px;
}

@media (max-width: 768px) {
    .checkout-card {
        max-width: 100%;
    }
    .checkout-summary {
        padding: 16px;
        border-radius: 12px;
    }
    .checkout-summary h3 {
        font-size: 13px;
    }
    .summary-row {
        font-size: 14px;
        padding: 8px 0;
    }
    .summary-row.total {
        font-size: 14px;
    }
    .summary-row.total strong {
        font-size: 18px;
    }
    .auto-renew-label {
        font-size: 14px;
    }
    .auto-renew-label small {
        font-size: 12px;
    }
}

.checkout-summary {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 28px;
}

.checkout-summary h3 {
    margin: 0 0 16px;
    color: var(--primary);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 2px solid var(--border);
    font-size: 18px;
    color: var(--text);
}

.summary-row.total strong {
    color: var(--primary);
    font-size: 22px;
}

/* Legal pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.legal-content h1 {
    color: var(--text);
    font-size: 32px;
}

.legal-content h2 {
    margin-top: 36px;
    color: var(--primary);
    font-size: 20px;
}

.legal-content p, .legal-content li {
    color: var(--muted);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 40px 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: var(--muted);
    margin-left: 24px;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-copy {
    color: var(--muted);
    font-size: 14px;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    color: var(--muted);
    font-weight: 600;
}

/* Why section */
.why-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* FAQ */
.faq-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 90, 54, 0.04) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255, 90, 54, 0.03) 0%, transparent 30%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.faq-item:hover {
    border-color: rgba(255, 90, 54, 0.25);
}

.faq-item h3 {
    margin: 0 0 10px;
    font-size: 17px;
    color: var(--text);
}

.faq-item p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Auth */
    .auth-section {
        min-height: calc(100vh - 80px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 12px;
    }

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 36px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.auth-card h1 {
    margin: 0 0 8px;
    font-size: 28px;
}

.auth-subtitle {
    color: var(--muted);
    margin: 0 0 28px;
    font-size: 15px;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 20px;
    background: #fff;
    color: #222;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.btn-google svg {
    width: 20px;
    height: 20px;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--muted);
    font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-form {
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}

.form-group input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 15px;
    outline: none;
    transition: all 0.2s;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: rgba(255, 90, 54, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 90, 54, 0.08);
}

.btn-full {
    width: 100%;
    margin-top: 8px;
}

.auth-link {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.auth-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.g-recaptcha {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
}

.auth-error {
    color: #ff5a5a;
    font-size: 13px;
    margin: 16px 0 0;
    min-height: 18px;
}

/* Profile */
.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.profile-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: 0 0 25px rgba(255, 90, 54, 0.2);
}

.profile-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 90, 54, 0.2), rgba(255, 90, 54, 0.05));
    color: var(--primary);
    font-size: 28px;
    font-weight: 900;
}

.profile-header h1 {
    margin: 0 0 6px;
    font-size: 24px;
}

.profile-header p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.profile-info {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 28px;
}

.profile-info div {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--muted);
}

.profile-info div:last-child {
    margin-bottom: 0;
}

.profile-info strong {
    color: var(--text);
}

.profile-info code {
    background: rgba(255, 255, 255, 0.04);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 12px;
}

.profile-orders-title {
    font-size: 18px;
    margin: 0 0 16px;
}

.profile-empty {
    color: var(--muted);
    font-size: 14px;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
}

.order-status {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
}

.status-pending {
    background: rgba(255, 193, 7, 0.12);
    color: #ffc107;
}

.status-paid {
    background: rgba(40, 167, 69, 0.12);
    color: #28a745;
}

/* Responsive */
@media (max-width: 900px) {
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        gap: 5px;
    }
    .logo {
        font-size: 18px;
    }
    .logo img {
        width: 34px;
        height: 34px;
    }
    .mobile-header .nav,
    .mobile-header .header-actions {
        display: none;
    }
    .mobile-header .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }
    [dir="rtl"] .mobile-header .mobile-menu-toggle {
        margin-left: 0;
        margin-right: auto;
    }
    .hero {
        padding: 30px 15px;
        text-align: center;
    }
    .hero-content {
        width: 100%;
        order: 1;
    }
    .hero h1 {
        font-size: 24px;
        word-wrap: break-word;
    }
    .hero p {
        font-size: 14px;
        word-wrap: break-word;
    }
    .hero-visual {
        width: 100%;
        order: 2;
        margin-top: 20px;
    }
    .game-showcase {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    .game-showcase-img {
        width: 100%;
        height: 100%;
        border-radius: 15px;
    }
    .showcase-glow {
        width: 120%;
        height: 120%;
    }
    .badge {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 16px;
    }
    .section {
        padding: 30px 15px;
    }
    .section-title {
        font-size: 22px;
    }
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .feature-card {
        padding: 18px;
        border-radius: 16px;
    }
    .feature-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        margin-bottom: 14px;
    }
    .feature-icon svg {
        width: 22px;
        height: 22px;
    }
    .feature-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .feature-card p {
        font-size: 13px;
        line-height: 1.5;
    }
    .plans-list {
        padding: 0;
    }
    .plan-row {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px 18px;
        border-radius: 14px;
    }
    .plan-row-name h3 {
        font-size: 17px;
    }
    .plan-row-features {
        gap: 6px;
    }
    .plan-row-features span {
        font-size: 11px;
        padding: 4px 10px;
    }
    .plan-row-action {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        min-width: auto;
    }
    .plan-row-price {
        font-size: 24px;
    }
    .plan-row-currency {
        margin-bottom: 0;
        font-size: 11px;
    }
    .plan-row-action .btn-primary {
        width: auto;
        padding: 8px 20px;
        font-size: 13px;
    }
    .games-grid {
        gap: 12px;
    }
    .game-card {
        padding: 20px 24px;
        min-width: auto;
        width: 100%;
        max-width: 260px;
        border-radius: 16px;
    }
    .game-img {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    .game-card h3 {
        font-size: 16px;
    }
    .steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .step-card {
        padding: 20px 18px;
    }
    .step-card h3 {
        font-size: 16px;
    }
    .step-card p {
        font-size: 13px;
    }
    .brand-section {
        padding: 40px 16px;
    }
    .brand-banner {
        max-width: 100%;
        border-radius: 12px;
    }
    .container {
        max-width: 100%;
        margin: 20px auto;
        padding: 0 12px;
    }
    .card {
        padding: 20px 16px;
        border-radius: 16px;
        width: 100%;
    }
    .card h1 {
        font-size: 20px;
    }
    .auth-card {
        padding: 22px 16px;
        border-radius: 16px;
        max-width: 100%;
    }
    .auth-card h1 {
        font-size: 22px;
    }
    .btn-google {
        font-size: 14px;
        padding: 11px 16px;
    }
    .profile-card {
        padding: 20px;
        border-radius: 18px;
    }
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }
    .profile-avatar {
        width: 60px;
        height: 60px;
    }
    .profile-avatar-placeholder {
        font-size: 24px;
    }
    .profile-info {
        padding: 14px;
    }
    .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 14px;
    }
    .checkout-card {
        padding: 20px;
    }
    .checkout-summary {
        padding: 16px;
    }
    .summary-row.total {
        font-size: 15px;
    }
    .summary-row.total strong {
        font-size: 18px;
    }
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }
    .footer-links a {
        margin: 0 8px;
        font-size: 12px;
    }
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    input[type="text"],
    input[type="email"],
    select {
        font-size: 16px; /* prevent zoom on iOS */
    }
    .btn-primary, .btn-secondary, button[type="submit"] {
        padding: 12px 24px;
        font-size: 15px;
    }
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 16px;
    }
    .logo img {
        width: 30px;
        height: 30px;
    }
    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
        padding: 7px;
    }
    .hero h1 {
        font-size: 24px;
    }
    .hero p {
        font-size: 14px;
    }
    .game-showcase {
        width: 110px;
        height: 110px;
    }
    .section-title {
        font-size: 20px;
    }
    .plan-row-name {
        flex-wrap: wrap;
    }
    .plan-row-action {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .plan-row-action .btn-primary {
        width: 100%;
        text-align: center;
    }
    .faq-item {
        padding: 16px;
    }
    .faq-item h3 {
        font-size: 15px;
    }
    .faq-item p {
        font-size: 13px;
    }
}
