:root {
    --bg-dark: #0a0e0a;
    --bg-card: #121812;
    --bg-card-hover: #1a221a;
    --gold: #e5b962;
    --gold-hover: #f0c978;
    --text-primary: #ffffff;
    --text-secondary: #a0a8a0;
    --text-muted: #6e766e;
    --border-color: #242c24;
    
    --glow-green: rgba(46, 204, 113, 0.2);
    --glow-yellow: rgba(241, 196, 15, 0.2);
    --glow-blue: rgba(52, 152, 219, 0.2);
    --glow-purple: rgba(155, 89, 182, 0.2);
    --glow-pink: rgba(232, 67, 147, 0.2);
}

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

body {
    font-family: 'Hind Siliguri', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.5;
    background-image: radial-gradient(circle at 20% 30%, rgba(20, 30, 20, 0.8) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(20, 30, 20, 0.8) 0%, transparent 50%);
}

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

/* Helpers */
.text-red { color: #ff4757; }
.text-gold { color: var(--gold); }
.text-green { color: #2ecc71; }
.text-purple { color: #9b59b6; }
.text-blue { color: #3498db; }
.text-yellow { color: #f1c40f; }

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.2);
    border-radius: 20px;
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 24px;
}

.badge i {
    font-size: 10px;
    margin-right: 6px;
    vertical-align: middle;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e5b962 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(229, 185, 98, 0.2);
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 40px;
}

/* Game Collage Display */
.game-collage {
    position: relative;
    height: 250px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.collage-img {
    position: absolute;
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 15px var(--glow-blue);
    border: 3px solid rgba(255,255,255,0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.collage-img:hover {
    transform: scale(1.1) translateY(-10px) !important;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 25px var(--glow-green);
    border-color: rgba(255,255,255,0.3);
}

.collage-img.left {
    transform: rotate(-10deg) translateX(-80px) translateY(10px);
    z-index: 1;
}

.collage-img.center {
    transform: rotate(0deg) scale(1.15);
    z-index: 3;
    width: 160px;
    height: 160px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.7), 0 0 20px var(--glow-purple);
}

.collage-img.right {
    transform: rotate(10deg) translateX(80px) translateY(10px);
    z-index: 2;
}

.hero-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.feature-tag {
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-tag i {
    color: var(--gold);
    margin-right: 6px;
}

/* Subscription Box */
.hero-sidebar {
    width: 400px;
}

.subscription-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.subscription-box h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.sub-text {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

.steps {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--text-muted);
}

.step {
    display: flex;
    align-items: center;
    gap: 6px;
}

.step.active {
    color: var(--gold);
}

.step-num {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--text-muted);
    color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    font-weight: bold;
}

.step.active .step-num {
    background-color: var(--gold);
}

.step-arrow {
    font-size: 10px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 24px;
}

.benefits-list li {
    margin-bottom: 12px;
    font-size: 14px;
}

.benefits-list i {
    margin-right: 8px;
}

.input-group {
    display: flex;
    background-color: rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.prefix {
    padding: 12px 16px;
    background-color: rgba(255,255,255,0.05);
    border-right: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: white;
    font-size: 16px;
    outline: none;
}

.charge-notice {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 24px;
    align-items: flex-start;
}

.charge-notice i {
    color: var(--gold);
    margin-top: 2px;
}

.primary-btn {
    width: 100%;
    background-color: var(--gold);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Hind Siliguri', sans-serif;
}

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

.primary-btn i {
    margin-left: 8px;
}

/* Sections */
.section {
    margin-bottom: 80px;
}

.section-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
    position: relative;
}

.section-title span {
    background-color: var(--bg-dark);
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border-color);
    z-index: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg-card-hover);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px;
    font-size: 20px;
}

.green-glow { background-color: var(--glow-green); color: #2ecc71; }
.yellow-glow { background-color: var(--glow-yellow); color: #f1c40f; }
.blue-glow { background-color: var(--glow-blue); color: #3498db; }
.shield-glow { background-color: rgba(52, 152, 219, 0.2); color: #3498db; }
.pink-glow { background-color: var(--glow-pink); color: #e84393; }

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

.feature-card p {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Game Modes Grid */
.modes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mode-card {
    background: linear-gradient(to bottom, rgba(20,26,20,1) 0%, rgba(10,14,10,1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}

.mode-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.1);
}

.mode-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.mode-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.mode-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    flex-grow: 1;
}

.outline-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.outline-btn:hover {
    border-color: var(--text-secondary);
    background-color: rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
    }
    
    .hero-sidebar {
        width: 100%;
        max-width: 500px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .modes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 36px;
    }
}

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