/* General Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #020d02; /* Ultra Dark Green for Casino Vibe */
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

/* Header */
.site-header {
    position: relative;
    border-bottom: 2px solid #d4af37; /* Gold border */
}

.full-header-img {
    width: 100%;
}

.header-logo-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.brand-logo {
    width: 100px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

/* Deep Dark Green Hero Section */
.premium-hero {
    background: linear-gradient(180deg, #041a04 0%, #020d02 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Golden Rotating Shine */
.shine-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(212, 175, 55, 0.05) 180deg, transparent 360deg);
    animation: rotate-shine 8s linear infinite;
}

@keyframes rotate-shine {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.badge-row {
    margin-bottom: 20px;
}

.badge {
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    margin: 0 5px;
    display: inline-block;
}

.hot { background: linear-gradient(90deg, #ff4b2b, #ff416c); animation: shake 0.5s infinite; }
.new { background: linear-gradient(90deg, #11998e, #38ef7d); animation: bounce 1s infinite; }

.main-title {
    font-size: 4.5rem;
    color: #ffd700; /* Gold */
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 2px 2px #000;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 15px;
    display: inline-block;
    border-radius: 10px;
    margin: 20px 0;
}

.bonus-card span {
    color: #ffd700;
    font-size: 1.8rem;
    font-weight: bold;
}

.dl-button-img {
    width: 320px;
    max-width: 90%;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    transition: 0.3s;
}

.dl-button-img:hover { transform: scale(1.05); }

/* Promo & Overlap Button */
.promo-section {
    position: relative;
    width: 100%;
}

.promo-img { width: 100%; }

.overlap-btn-container {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    text-align: center;
}

.bonus-btn-img { width: 250px; }

.pulse-animation {
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Features */
.features-grid {
    display: flex;
    justify-content: space-around;
    padding: 40px 10px;
    background: #031403;
}

.feature-item h3 { color: #ffd700; margin-bottom: 5px; }

/* Sticky Mobile Footer */
.sticky-footer-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
    text-align: center;
    z-index: 999;
    border-top: 2px solid #ffd700;
}

.sticky-img {
    width: 80%;
    max-width: 300px;
}

/* Animations */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 768px) {
    .main-title { font-size: 3rem; }
    .sticky-footer-mobile { display: block; }
    body { padding-bottom: 80px; } /* Space for sticky bar */
    .header-logo-box { width: 80px; }
}

/* --- Simple & Attractive Header --- */
.main-header {
    background-color: #010801; /* Hero section se bhi zyada dark green */
    padding: 10px 20px;
    border-bottom: 2px solid #ffd700; /* Patli gold line niche */
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Left aur Right ko alag karne ke liye */
    align-items: center;
}

/* 3D Gold Text Style */
.logo-3d {
    font-size: 2.5rem;
    font-family: 'Arial Black', sans-serif;
    color: #ffd700; /* Gold Color */
    text-transform: uppercase;
    margin: 0;
    /* 3D Effect using text-shadow */
    text-shadow: 
        1px 1px 0px #b8860b, 
        2px 2px 0px #b8860b, 
        3px 3px 0px #8b6508, 
        4px 4px 5px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

/* Right Side Image Style */
.header-bonus-img {
    height: 60px; /* Header ke hisab se sahi size */
    width: auto;
    display: block;
    filter: drop-shadow(0px 0px 5px rgba(255, 215, 0, 0.3));
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .logo-3d {
        font-size: 1.8rem;
    }
    .header-bonus-img {
        height: 45px;
    }
    .main-header {
        padding: 8px 15px;
    }
}