:root {
    --primary-gradient: linear-gradient(135deg, #10b981 0%, #c6ef32 100%);
    --secondary-gradient: linear-gradient(135deg, #3b82f6 0%, #2dd4bf 100%);
    --bg-gradient: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --accent-color: #10b981;
    --success-color: #059669;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    animation: fadeIn 1s ease-in;
}

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

/* Glassmorphism Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    /* Lighter shadow */
}

/* Header & Nav */
header {
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 5px 0px;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    /* White text */
}



.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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


/* Hero Section */
.hero {
    padding: 80px 0 40px;
    text-align: center;
}

.hero-content {
    position: relative;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.hero-content:hover {
    transform: none;
}

.hero-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-logo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -1px;
}


.badge {
    font-size: 0.8rem;
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    vertical-align: middle;
    margin-left: 10px;
}

.bonus {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.bonus span {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 2rem;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Buttons */
.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.btn-secondary {
    background: var(--secondary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 112, 243, 0.4);
}

.btn-secondary:hover {
    transform: scale(1.05);
}

/* Game Cards Enhancements */
.icon-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.serial-no {
    position: absolute;
    top: -0px;
    left: -0px;
    background: #ff5252;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 2px 2px 20px 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .5rem;
    font-weight: 500;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.game-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.472);
}

.game-card .game-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.game-card h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

/* Star Rating Styles */
.star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
    margin-top: 2px;
}

.star {
    font-size: 1rem;
    line-height: 1;
}

.star.full {
    color: #f59e0b;
    text-shadow: 0 0 4px rgba(245, 158, 11, 0.3);
}

.star.half {
    color: #fbbf24;
    opacity: 0.7;
}

.star.empty {
    color: #d1d5db;
}

.rating-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: #f59e0b;
    margin-left: 3px;
    background: rgba(245, 158, 11, 0.1);
    padding: 1px 5px;
    border-radius: 4px;
}

.tag-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 6px;
}

.bonus-icon {
    color: #ef4444;
    /* Red for bonus */
}

.withdraw-icon {
    color: #10b981;
    /* Green for withdrawal */
}

.bonus-tag,
.withdraw-tag {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #334155;
    margin: 0;
}

.bonus-tag span,
.withdraw-tag span {
    font-weight: 700;
    margin-left: 4px;
}

.bonus-tag span {
    color: #ef4444;
}

.withdraw-tag span {
    color: #10b981;
}

/* Games Grid */
.games-list {
    padding: 80px 0;
}

.games-list h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--text-primary);
}

.grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Smaller gap for single column rows */
    max-width: 800px;
    /* Centered narrow column */
    margin: 0 auto;
}

.game-card {
    padding: 20px;
    display: flex;
    flex-direction: row;
    /* Horizontal layout for the row */
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s;
}

.game-card:hover {
    transform: translateX(5px);
    /* Slide effect instead of lift */
}

.game-info {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 0;
    /* Remove bottom margin as it's flex-row now */
}




.game-details h3 {
    margin-bottom: 5px;
    color: var(--text-primary);
}

.bonus-tag {
    color: var(--accent-color);
    font-weight: 600;
}

.withdraw-tag {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.btn-download {
    background: var(--primary-gradient);
    /* Green button */
    color: white;
    text-align: center;
}

.btn-download:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}


/* FAQ */
.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 20px;
    padding: 25px;
}

.faq-item h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    background: #f1f5f9;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.disclaimer {

    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 20px;
}


/* Animated Coins Background */
#coin-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background: transparent;
}

.hero-branding,
.bonus,
.cta-group,
.hero>p {
    position: relative;
    z-index: 2;
}

.coin {
    position: absolute;
    width: 35px;
    height: 35px;
    background: radial-gradient(circle at 30% 30%, #fff7ad 0%, #ffd700 30%, #b8860b 80%, #5d4037 100%);
    border-radius: 50%;
    box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, 0.5),
        inset -2px -2px 4px rgba(0, 0, 0, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    will-change: transform;
    animation: coinFall var(--fall-duration, 4s) ease-in infinite;
    animation-delay: var(--fall-delay, 0s);
    contain: layout style;
    border: 1px solid #ffd700;
}


.coin::before {
    content: '$';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(184, 134, 11, 0.8);
    font-weight: 900;
    font-size: 0.8em;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.3);
}

.coin::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            transparent 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 60%,
            transparent 100%);
    border-radius: 50%;
    animation: coinShine 4s infinite linear;
    background-size: 200% 200%;
}

@keyframes coinFall {
    0% {
        top: -10%;
        transform: translateX(var(--sway-x, 0)) rotateX(0deg) rotateY(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 110%;
        transform: translateX(calc(var(--sway-x, 0) * 1.5)) rotateX(360deg) rotateY(720deg);
        opacity: 0;
    }
}

@keyframes coinSpin {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

@keyframes coinShine {
    0% {
        background-position: -200% -200%;
    }

    100% {
        background-position: 200% 200%;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
/* Notice Section */
.notice-section {
    padding: 60px 0;
    background: #e30000;
    /* Light red background */
}

.notice-box {
    padding: 40px;
    background: #ffffff;
    border: 1px solid rgba(255, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.05);
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.warning-icon {
    width: 40px;
    height: 40px;
    color: #ef4444;
    /* Red warning icon */
}

.notice-header h3 {
    font-size: 1.5rem;
    color: #1e293b;
}

.notice-content p {
    margin-bottom: 15px;
    color: #334155;
    font-size: 1.1rem;
    line-height: 1.8;
}

.notice-content a {
    color: #ef4444;
    text-decoration: none;
    font-weight: 600;
}

.notice-footer {
    margin-top: 30px;
    text-align: center;
}

.notice-footer p {
    color: #10b981;
    /* Green text from image */
    font-weight: 600;
    font-size: 1.2rem;
}

/* Earnings Popup */
.notification-popup {
    position: fixed;
    top: 90px;
    /* Below navbar */
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 999;
    border-left: 4px solid #10b981;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 320px;
}

.notification-popup.show {
    transform: translateX(0);
}

.notif-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
}

.notif-content {
    flex: 1;
}

.notif-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.notif-text {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
}

.notif-text span {
    color: #10b981;
    font-weight: 700;
}

/* SEO Content Section */
.seo-content {
    padding: 60px 0;
}

.seo-content .content-box {
    padding: 40px;
    line-height: 1.8;
}

.seo-content h2 {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 2rem;
}

.seo-content h3 {
    color: #1e293b;
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.seo-content p {
    margin-bottom: 20px;
    color: #475569;
    font-size: 1.1rem;
}

.seo-content strong {
    color: #10b981;
}

@media (max-width: 768px) {



    .hero h1 {
        font-size: 2.5rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .game-card {
        padding: 15px;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .game-icon {
        width: 50px;
        height: 50px;
        border-radius: 10px;
    }

    .serial-no {
        width: 18px;
        height: 18px;
        font-size: 0.8rem;
        top: -0px;
        left: -0px;
    }

    .game-details h3 {
        font-size: 1rem;
    }

    .btn-download {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .bonus-tag,
    .withdraw-tag {
        font-size: 0.8rem;
    }

    .star-rating {
        font-size: 0.75rem;
    }

    .star {
        font-size: 0.85rem;
    }

    .rating-num {
        font-size: 0.65rem;
    }
}

.arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: rgba(5, 5, 5, 0.303);
    margin-top: 20px;
    font-weight: 700;

}