/* Luminous Cyberpunk Pulse Background */
.ambient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #0d0615 0%, #040914 100%);
    background-size: cover;
}

.ambient-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(79, 70, 229, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(16, 185, 129, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.orb-1 {
    width: 40vw;
    height: 40vw;
    background: rgba(139, 92, 246, 0.2);
    top: -10%;
    right: -10%;
    animation: drift 15s infinite alternate ease-in-out;
}

.orb-2 {
    width: 35vw;
    height: 35vw;
    background: rgba(16, 185, 129, 0.2);
    bottom: -15%;
    left: -10%;
    animation: drift 20s infinite alternate-reverse ease-in-out;
}

.orb-3 {
    width: 50vw;
    height: 20vh;
    background: rgba(79, 70, 229, 0.25);
    bottom: 0;
    left: 25%;
    filter: blur(100px);
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 40px) scale(1.1);
    }
}

/* Glass & Neon Effects */
.glass-panel {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.neon-glow {
    position: relative;
}

.neon-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    z-index: -1;
    border-radius: 14px;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s;
}

.neon-glow:hover::before {
    opacity: 1;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 20%, var(--primary-color) 60%, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-color);
    opacity: 0.3;
    z-index: -1;
    transform: skewX(-15deg);
}

/* Hero Section Refinements */
.hero {
    position: relative;
    padding: 12rem 0 8rem;
    background: transparent;
    display: flex;
    align-items: center;
    min-height: 90vh;
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
}

.hero-text-content {
    flex: 1;
    max-width: 650px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(16, 185, 129, 0.05);
    animation: floating 6s ease-in-out infinite;
    width: 100%;
    max-width: 450px;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.pulse-animation {
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    0% {
        transform: scale(0.95);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        opacity: 0.8;
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.15;
    letter-spacing: -2px;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 210, 255, 0.5);
}

.btn-secondary {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 500;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 2px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Feature Grid Improvements */
.game-features {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.game-card.premium-hover {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
}

.game-card.premium-hover:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 210, 255, 0.1);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
    border-radius: 24px 24px 0 0;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(5, 7, 10, 1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.game-card.premium-hover:hover .overlay-gradient {
    opacity: 1;
}

.game-card.premium-hover:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.game-info {
    padding: 2rem;
}

.game-info h3 {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.game-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cyber-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-weight: 500;
    color: var(--text-main);
    transition: all 0.3s;
}

.cyber-btn svg {
    transition: transform 0.3s;
}

.game-card:hover .cyber-btn {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

.game-card:hover .cyber-btn svg {
    transform: translateX(4px);
}

/* News Section GLOW Refinements */
.dark-section {
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.4) 20%, rgba(15, 23, 42, 0.4) 80%, transparent);
    padding: 8rem 0;
}

.news-grid-glow {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2.5rem;
}

.news-card-glow {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.news-card-glow:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
    border-color: rgba(79, 70, 229, 0.4);
}

.news-glow-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.news-glow-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.news-card-glow:hover .news-glow-img img {
    transform: scale(1.08);
}

.news-badge-glow {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(4, 9, 20, 0.85);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.news-glow-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-glow-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 800;
}

.news-glow-content h3 a {
    color: #fff;
    transition: color 0.3s;
}

.news-card-glow:hover .news-glow-content h3 a {
    color: var(--accent-color);
}

.news-glow-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: auto;
}

.read-more-glow {
    display: inline-flex;
    align-items: center;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.news-card-glow:hover .read-more-glow {
    color: var(--primary-color);
}

.read-more-glow i {
    transition: transform 0.3s;
}

.news-card-glow:hover .read-more-glow i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-text-content {
        max-width: 100%;
        text-align: center !important;
    }

    .hero-text-content p {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem !important;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .glass-panel {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 1rem;
    }

    .hero {
        padding: 8rem 5% 4rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-desc {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .news-grid.modern-grid,
    .grid-container {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .dark-section {
        padding: 4rem 0;
    }

    .game-features {
        padding: 4rem 0;
    }

    .ad-container {
        margin: 2rem auto;
    }
}

@media (max-width: 480px) {
    .glass-panel {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .game-info {
        padding: 1.5rem;
    }

    .game-info h3 {
        font-size: 1.25rem;
    }

    .news-content {
        padding: 1.5rem;
    }

    .card-img-wrapper,
    .news-img-container {
        height: 200px;
    }
}

/* New UI Styles for Updated Layout */
.text-muted-light {
    color: #a0a0a0;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-green {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-green:hover {
    background: #059669;
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-yellow {
    background: #f59e0b;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-yellow:hover {
    background: #d97706;
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.hero-glow-bg {
    position: relative;
    z-index: 1;
    padding: 10rem 5% 5rem;
    text-align: center;
}

.hero-glow-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(79, 70, 229, 0) 0%, rgba(4, 9, 20, 1) 100%);
    z-index: -1;
}

.cards-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cards-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Feature Grid and Feature Boxes */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.feature-box {
    background: rgba(30, 20, 100, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.features-grid-modern .feature-box:nth-child(1),
.features-grid-modern .feature-box:nth-child(2) {
    grid-column: span 3;
}

.features-grid-modern .feature-box:nth-child(3),
.features-grid-modern .feature-box:nth-child(4),
.features-grid-modern .feature-box:nth-child(5) {
    grid-column: span 2;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    border-color: rgba(139, 92, 246, 0.6);
}

.feature-icon {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-box h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.dark-panel-bg {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.border-top-dark {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pay-logo {
    height: 30px;
    object-fit: contain;
}

.dot-btn {
    background: #333;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
    font-weight: bold;
    padding-bottom: 8px;
}

.dot-btn:hover {
    background: #555;
    color: white;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.game-card-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
    cursor: pointer;
}

.game-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.game-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.game-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.game-card-modern:hover .game-card-bg {
    transform: scale(1.1);
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 9, 20, 0.95) 0%, rgba(4, 9, 20, 0.5) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.5rem;
    transition: background 0.4s;
}

.game-card-modern:hover .game-card-overlay {
    background: linear-gradient(to top, rgba(4, 9, 20, 0.98) 0%, rgba(4, 9, 20, 0.8) 50%, rgba(79, 70, 229, 0.2) 100%);
}

.game-card-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.game-card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
    line-height: 1.5;
    opacity: 0.8;
    transition: opacity 0.4s, transform 0.4s;
    transform: translateY(10px);
}

.game-card-modern:hover .game-card-desc {
    opacity: 1;
    transform: translateY(0);
}

.game-card-action {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.game-card-modern:hover .game-card-action {
    opacity: 1;
    transform: translateY(0);
}

.fb-share-inner {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.fb-share-body {
    padding: 4rem 3rem;
}

.fb-share-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.fb-share-btn {
    display: inline-block;
    min-width: 220px;
}

.countdown .cd-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown .num {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.countdown .label {
    font-size: 0.75rem;
    color: #ffca28;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: bold;
    letter-spacing: 1px;
}

.countdown .colon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    line-height: 1;
    margin: 0 5px;
}

.text-green {
    color: var(--primary-color);
}

.text-white {
    color: #ffffff;
}

.text-warning {
    color: #f59e0b !important;
}

@media (max-width: 992px) {

    .cards-3-col,
    .cards-4-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .news-grid-glow {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .info-grid {
        flex-direction: column;
        gap: 2rem !important;
    }

    .info-img {
        width: 100% !important;
    }

    .payment-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .features-grid-modern .feature-box:nth-child(n) {
        grid-column: span 1 !important;
    }

    .hero-glow-bg {
        padding: 8rem 5% 4rem;
    }

    .hero-stats {
        gap: 2rem !important;
        flex-wrap: wrap;
        justify-content: center;
    }

    .ambient-background::after {
        width: 60vw;
        height: 60vw;
        bottom: 35%;
    }

    .orb-1 {
        width: 50vw;
        height: 50vw;
        top: -10%;
        right: -10%;
    }

    .orb-2 {
        width: 40vw;
        height: 40vw;
        bottom: -5%;
        left: -5%;
    }

    /* Fixed visibility for mobile (no hover) */
    .game-card-overlay {
        background: linear-gradient(to top, rgba(4, 9, 20, 0.98) 0%, rgba(4, 9, 20, 0.8) 50%, rgba(79, 70, 229, 0.4) 100%);
    }

    .game-card-desc,
    .game-card-action {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .news-card-glow {
        box-shadow: 0 15px 30px rgba(79, 70, 229, 0.15) !important;
        border-color: rgba(79, 70, 229, 0.2) !important;
    }

    .news-glow-content h3 a {
        color: var(--accent-color);
    }

    .read-more-glow {
        color: var(--primary-color) !important;
    }
}

@media (max-width: 576px) {

    .premium-grid,
    .news-grid-glow,
    .cards-3-col,
    .cards-4-col {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .features-grid-modern {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1rem !important;
    }

    .stat-item h4 {
        font-size: 1.1rem !important;
    }

    .stat-item p {
        font-size: 0.7rem !important;
    }

    .hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .hero .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero .hero-actions a {
        width: 100%;
        text-align: center;
    }

    .fb-share-body {
        padding: 2.5rem 1.25rem;
    }

    .fb-share-title {
        font-size: 1.5rem;
    }

    .fb-share-btn {
        width: 100%;
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .countdown {
        gap: 0.6rem !important;
    }

    .countdown .num {
        font-size: 2rem;
    }

    .countdown .colon {
        font-size: 1.6rem;
    }

    .news-card-glow .news-glow-content h3 {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .section-prefix {
        font-size: 0.75rem !important;
        letter-spacing: 2px !important;
    }

    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .countdown .num {
        font-size: 1.5rem;
    }

    .countdown .colon {
        font-size: 1.5rem;
    }

    .payment-bar .d-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-register-banner .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-register-banner h3 {
        font-size: 1.2rem;
    }
}

/* Flexbox and Layout Utilities */
.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.gap-4 {
    gap: 1.5rem;
}

.gap-5 {
    gap: 3rem;
}

.flex-grow-1 {
    flex-grow: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.me-2 {
    margin-right: 0.5rem;
}

/* Spacing Utilities */
.m-0 {
    margin: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.ms-auto {
    margin-left: auto;
}

.p-0 {
    padding: 0 !important;
}

.p-3 {
    padding: 1rem;
}

.p-5 {
    padding: 3rem;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-4 {
    padding-top: 1.5rem;
}

.pb-4 {
    padding-bottom: 1.5rem;
}

.pb-5 {
    padding-bottom: 3rem;
}

.px-5 {
    padding-left: 3rem;
    padding-right: 3rem;
}

/* Typography and Other Utilities */
.text-center {
    text-align: center;
}

.text-start {
    text-align: left;
}

.fw-bold {
    font-weight: bold;
}

.fs-5 {
    font-size: 1.25rem;
}

.d-inline-block {
    display: inline-block;
}

.border-0 {
    border: none !important;
}

.background-none {
    background: none !important;
}

.d-none {
    display: none;
}

@media (min-width: 768px) {
    .d-md-block {
        display: block;
    }
}

/* Why Choose Section Styles */
.why-choose-section .glass-panel {
    padding: 5rem 3rem;
}

.why-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.why-col {
    flex: 1;
    min-width: 320px;
}

.why-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.05), transparent 70%);
    pointer-events: none;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.why-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.text-accent {
    color: var(--accent-color);
}

.payment-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: auto;
}

.pay-method-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.pay-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: all 0.3s;
}

.why-card:hover .pay-icon {
    border-color: var(--primary-color);
    background: rgba(16, 185, 129, 0.1);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .why-choose-section .glass-panel {
        padding: 3rem 1.5rem;
    }
    
    .why-card {
        padding: 2.5rem 1.5rem;
    }

    .why-grid {
        flex-direction: column;
    }

    .why-col {
        min-width: 100%;
    }
}

/* ================================================
   LIVE WINS SECTION
   ================================================ */
.live-wins-section .section-header {
    margin-bottom: 2.5rem;
}

.live-wins-ticker {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 1.5rem;
    overflow: hidden;
}

.wins-feed {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.win-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 0.85rem 1.25rem;
    animation: slideInWin 0.5s ease forwards;
    transition: background 0.3s;
}

.win-card:hover {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
}

@keyframes slideInWin {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}

.win-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.win-info {
    flex: 1;
    min-width: 0;
}

.win-name {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.win-game {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 2px;
}

.win-amount {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.05rem;
    white-space: nowrap;
    text-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
}

.win-time {
    color: var(--text-muted);
    font-size: 0.75rem;
    white-space: nowrap;
}

/* ================================================
   VIP PROGRAM SECTION
   ================================================ */
.vip-tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.vip-tier-card {
    position: relative;
    border-radius: 20px;
    padding: 2.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.vip-tier-card:hover {
    transform: translateY(-8px);
}

.tier-bronze {
    border-color: rgba(205, 127, 50, 0.3);
}
.tier-bronze:hover {
    box-shadow: 0 20px 40px rgba(205, 127, 50, 0.2);
    border-color: rgba(205, 127, 50, 0.6);
}
.tier-bronze .vip-tier-icon { background: linear-gradient(135deg, #cd7f32, #f4a460); }

.tier-silver {
    border-color: rgba(192, 192, 192, 0.3);
}
.tier-silver:hover {
    box-shadow: 0 20px 40px rgba(192, 192, 192, 0.15);
    border-color: rgba(192, 192, 192, 0.6);
}
.tier-silver .vip-tier-icon { background: linear-gradient(135deg, #a0a0a0, #e8e8e8); }

.tier-gold {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.04);
}
.tier-gold:hover {
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.25);
    border-color: rgba(245, 158, 11, 0.7);
}
.tier-gold .vip-tier-icon { background: linear-gradient(135deg, #f59e0b, #fbbf24); }

.tier-diamond {
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.04);
}
.tier-diamond:hover {
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.7);
}
.tier-diamond .vip-tier-icon { background: linear-gradient(135deg, #6366f1, #a5b4fc); }

.vip-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #fde68a);
    color: #1a0e00;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.vip-tier-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.vip-tier-name {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
}

.vip-tier-xp {
    color: var(--text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    margin: 0 0 1rem;
}

.vip-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.vip-perks li {
    color: var(--text-muted);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vip-perks li i {
    color: var(--primary-color);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.mt-auto { margin-top: auto; }

/* ================================================
   HOW TO PLAY SECTION
   ================================================ */
.htp-steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
}

.htp-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.htp-step:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 16px 35px rgba(16, 185, 129, 0.12);
}

.htp-step-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.htp-step-icon {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.htp-step-title {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.htp-step-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

.htp-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    padding-top: 3rem;
}

.htp-connector span {
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0.4;
    position: relative;
}

.htp-connector span::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid var(--accent-color);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    opacity: 0.6;
}

/* Responsive: new sections */
@media (max-width: 1100px) {
    .vip-tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .htp-steps-grid {
        grid-template-columns: 1fr;
    }

    .htp-connector {
        display: none;
    }

    .vip-tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .vip-tiers-grid {
        grid-template-columns: 1fr;
    }

    .win-card {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .win-time {
        width: 100%;
    }
}
