/* ===============
   HERO SECTION
   =============== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, rgba(31, 10, 56, 0.95) 0%, rgba(93, 21, 80, 0.8) 50%, rgba(204, 0, 102, 0.6) 100%);
    text-align: center;
    border-bottom: 3px solid #ff007f;
    box-shadow: 0 10px 40px rgba(255, 0, 127, 0.3);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px #ff007f, 0 0 45px #ff007f;
}

.hero-content p {
    font-size: 1.3rem;
    color: #f1f1f1;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

/* ===============
   SECTION HEADERS
   =============== */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    text-align: center;
    margin: 80px 0 50px;
    position: relative;
    text-transform: uppercase;
    font-weight: 800;
    color: #00ffff;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #00ffff, #ff007f);
    margin: 15px auto 0;
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.8);
}

/* ===============
   GAME FEATURE GRID
   =============== */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 35px;
    margin-bottom: 80px;
}

.game-card {
    background: linear-gradient(145deg, #230d42, #3e1663);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255, 0, 127, 0.1));
    z-index: 0;
}

.game-card > a {
    position: relative;
    z-index: 1;
    display: block;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 0, 127, 0.4);
    border-color: #ff007f;
}

.game-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 2px solid #ff007f;
}

.game-card-content {
    padding: 25px 20px;
    text-align: center;
}

.game-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 0 5px rgba(255,255,255,0.3);
    font-weight: 700;
}

.game-card-content p {
    color: #ffd700;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
}

/* ===============
   LATEST NEWS SECTION
   =============== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: rgba(30, 12, 58, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    transition: all var(--transition-speed);
}

.news-card:hover {
    background: rgba(43, 16, 85, 0.9);
    border-color: #00ffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.2);
}

.news-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.news-meta {
    font-size: 0.85rem;
    color: #00ffff;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #fff;
    transition: color var(--transition-speed);
    font-weight: 700;
}

.news-card:hover h4 {
    color: #ff007f;
}

.news-card p {
    color: #dcdcdc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===============
   RESPONSIVE
   =============== */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin: 50px 0 40px;
    }

    .game-grid {
        gap: 25px;
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.05rem;
        margin: 0 auto 20px;
    }

    .section-title {
        font-size: 1.9rem;
    }
}

/* ===============
   CUSTOM MARKETING SECTIONS
   =============== */
.cyan-text {
    color: #00ffff;
}

.marketing-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: var(--font-body);
}

.info-card {
    background: linear-gradient(145deg, rgba(35, 13, 66, 0.8), rgba(62, 22, 99, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    margin-bottom: 40px;
}

.info-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #00ffff;
    margin: 30px 0 20px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
.info-card .info-title:first-child {
    margin-top: 0;
}

.info-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #00ffff;
    margin: 25px 0 10px;
}

.info-card p, .info-list, .info-list-numbered {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.info-list {
    list-style: disc;
    padding-left: 20px;
}
.info-list-numbered {
    list-style: decimal;
    padding-left: 20px;
}

.info-list li, .info-list-numbered li {
    margin-bottom: 10px;
}

.text-link {
    color: #ff007f;
    text-decoration: underline;
}

/* Nidhhi Section */
.nidhhi-card {
    display: flex;
    flex-wrap: wrap;
    background: transparent;
    gap: 30px;
    align-items: center;
    margin-bottom: 60px;
}
.nidhhi-content {
    flex: 1;
    min-width: 300px;
}
.nidhhi-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}
.nidhhi-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(255,0,127,0.4);
}

/* Info Grid Boxes */
.info-grid-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.info-box {
    background: rgba(30, 10, 50, 0.8);
    border: 1px solid rgba(255, 0, 127, 0.3);
    border-radius: 10px;
    padding: 20px;
}
.info-box-full {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 20px;
}
.info-box-icon {
    font-size: 40px;
    color: #ffd700;
}
.info-box p {
    margin: 5px 0 0 0;
    color: #ddd;
    font-size: 0.95rem;
}

/* Promo Grid */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.promo-col {
    background: rgba(40, 15, 70, 0.6);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}
.promo-col-reverse {
    display: flex;
    flex-direction: column;
}
.promo-col-reverse .promo-img {
    order: 2;
}
.promo-col-reverse h3, .promo-col-reverse .promo-rules {
    order: 1;
}
.promo-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.promo-title {
    color: #ffd700;
    text-align: center;
    padding: 15px;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
}
.promo-rules {
    padding: 0 20px 20px;
    color: #00ffff;
    font-size: 0.9rem;
}
.rule-title {
    color: #ff9900;
    margin-bottom: 5px;
}
.promo-rules ol {
    padding-left: 20px;
}

/* Jili Section */
.jili-section {
    margin-bottom: 60px;
}
.jili-hero {
    text-align: center;
    margin-bottom: 40px;
}
.jili-main-img {
    max-width: 100%;
    border-radius: 12px;
}
.jili-gift-section, .jili-deposit-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}
.jili-gift-content, .jili-deposit-content {
    flex: 1;
    min-width: 300px;
}
.jili-gift-img, .jili-deposit-img {
    flex: 1;
    min-width: 300px;
    text-align: center;
}
.jili-gift-img img, .jili-deposit-img img {
    max-width: 100%;
}
.jili-title {
    color: #ffd700;
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
}
.jili-subtitle {
    color: #ff007f;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    margin-bottom: 15px;
}
.jili-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
    font-weight: 600;
}
.jili-list li {
    margin-bottom: 5px;
}
.payment-methods {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}
.payment-methods img {
    height: 40px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .info-card { padding: 20px; }
    .nidhhi-card { flex-direction: column; }
}