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

:root {
    --gold: #fbbf24;
    --gold-light: #fcd34d;
    --gold-dark: #f59e0b;
    --royal-blue: #1e3a8a;
    --royal-dark: #1e1b4b;
    --navy: #0f172a;
    --navy-card: #1e293b;
    --navy-hover: #334155;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(251, 191, 36, 0.25);
    --glow: rgba(251, 191, 36, 0.4);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--navy);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(251, 191, 36, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 80%, rgba(30, 58, 138, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* VIP Banner */
.vip-banner {
    background: linear-gradient(90deg, var(--royal-dark), var(--royal-blue), var(--royal-dark));
    border-bottom: 2px solid var(--gold);
    color: var(--gold-light);
    text-align: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.vip-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    animation: vipShine 3s infinite;
}

@keyframes vipShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Header */
header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 26px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo .pkr {
    color: var(--text);
}

.logo .vip {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

nav a:hover,
nav a.active {
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

/* Hero */
.hero {
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content .vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-img img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid var(--border);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.15);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 15px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--glow);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 50px 0;
}

.stat-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.1);
}

.stat-card h3 {
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-card span {
    color: var(--text-muted);
    font-size: 14px;
}

/* Page Header */
.page-header {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.05) 0%, transparent 100%);
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header h1 span {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--text-muted);
    font-size: 18px;
}

/* Sections */
.section {
    padding: 70px 0;
}

.section-dark {
    background: var(--navy-card);
}

.sec-title {
    text-align: center;
    margin-bottom: 50px;
}

.sec-title .badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sec-title h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sec-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* VIP Cards */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.vip-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.vip-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, rgba(251, 191, 36, 0.1) 50%);
    border-radius: 0 16px 0 0;
}

.vip-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.15);
}

.vip-card .icon-box {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vip-card .icon-box img {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 4px;
}

.vip-card h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
}

.vip-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Two Column Layout */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse > * {
    direction: ltr;
}

.split-text .badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.split-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.split-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.split-text ul {
    list-style: none;
    margin: 20px 0 30px;
}

.split-text ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-muted);
}

.split-text ul li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 12px;
}

.split-img img {
    width: 100%;
    border-radius: 16px;
    border: 2px solid var(--border);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.1);
}

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

.step-item {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.1);
}

.step-item .step-num {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 18px;
}

.step-item img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.step-item h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-item p {
    color: var(--text-muted);
    font-size: 14px;
}

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

.faq-box {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-box:hover {
    border-color: var(--gold);
}

.faq-box h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gold-light);
}

.faq-box p {
    color: var(--text-muted);
    font-size: 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-dark));
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(251, 191, 36, 0.1) 50%, transparent 60%);
    animation: ctaShine 4s infinite;
}

@keyframes ctaShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-section .btn-group {
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: var(--navy-card);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    text-align: center;
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-grid,
    .split-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-section.reverse {
        direction: ltr;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

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

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

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .sec-title h2 {
        font-size: 28px;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .cta-section {
        padding: 40px 20px;
    }
}
