    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

    * {
    font-family: 'Inter', sans-serif;
    }
    body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #2a0845 0%, #6441A5 100%);
    color: white;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    }

    @keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
    }

    .floating-animation {
    animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
    }

    .pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
    }

    @keyframes pulse-glow {
    0%, 100% {
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.5), 0 0 40px rgba(255, 193, 7, 0.3), 0 0 60px rgba(255, 193, 7, 0.1);
    }
    50% {
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.8), 0 0 60px rgba(255, 193, 7, 0.5), 0 0 90px rgba(255, 193, 7, 0.3);
    }
    }

    .card-hover {
    transition: all 0.3s ease;
    }

    .card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .slide-in {
    animation: slideIn 0.8s ease-out;
    }

    @keyframes slideIn {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
    }

    .slot-spin {
    animation: spin 3s linear infinite;
    }

    @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
    }

    .gradient-text {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    }

    .game-card {
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.8), rgba(139, 92, 246, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* hero section */

    .hero-section {
    background: linear-gradient(to right, #111827, #1f2937);
    padding: 150px 0px 100px 0px;
    color: white;
    text-align: center;
    }

    .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    }

    .hero-content {
    max-width: 800px;
    }

    .hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    }

    .hero-title .highlight {
    color: #f59e0b;
    }

    .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #d1d5db;
    }

    .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    }

    .hero-buttons a {
    text-decoration: none;
    }

    .hero-button {
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: bold;
    color: white;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    }

    .hero-button.primary {
    background: linear-gradient(to right, #f59e0b, #ef4444);
    }

    .hero-button.primary:hover {
    transform: scale(1.05);
    }

    .hero-button.secondary {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .hero-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    }

    .hero-image {
    margin-top: 2rem;
    }

    .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    }

    @media (min-width: 768px) {
    .hero-section {
    text-align: left;
    }
    .hero-container {
    flex-direction: row;
    }
    /* .hero-content {
    max-width: 50%;
    } */
    .hero-title {
    font-size: 4rem;
    }
    .hero-buttons {
    justify-content: flex-start;
    }
    .hero-image {
    margin-top: 0;
    max-width: 40%;
    }
    }

    /* Internal CSS for Feature Section (responsive, does not affect other styles) */
    #feature {
    padding: 80px 0;
    background: #2d3748;
    }
    .feature-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    }
    .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    }
    @media (min-width: 768px) {
    .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    }
    }
    .feature-card {
    text-align: center;
    padding: 32px;
    border-radius: 24px;
    background: #23272f;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
    }
    .feature-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(80,70,255,0.12);
    }
    .feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    color: #fff;
    }
    .icon-blue {
    background: linear-gradient(90deg, #3b82f6 0%, #a78bfa 100%);
    }
    .icon-green {
    background: linear-gradient(90deg, #22c55e 0%, #3b82f6 100%);
    }
    .icon-pink {
    background: linear-gradient(90deg, #ec4899 0%, #ef4444 100%);
    }
    .feature-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #fff;
    }
    .feature-card p {
    color: #d1d5db;
    font-size: 1rem;
    }

    /* Internal CSS for About Us Section */
    #about {
    padding: 80px 0;
    background: #1a202c;
    }
    .about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
    }
    .about-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 32px;
    background: linear-gradient(90deg, #a78bfa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    }
    .about-desc {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    }
    .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 24px;
    }
    @media (min-width: 768px) {
    .about-grid {
    grid-template-columns: repeat(3, 1fr);
    }
    }
    .about-card {
    background: #23272f;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
    }
    .about-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(80,70,255,0.12);
    }
    .about-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    color: #fff;
    }
    .icon-yellow {
    background: linear-gradient(90deg, #f59e42 0%, #fbbf24 100%);
    }
    .icon-purple {
    background: linear-gradient(90deg, #a78bfa 0%, #ec4899 100%);
    }
    .icon-greenblue {
    background: linear-gradient(90deg, #22c55e 0%, #3b82f6 100%);
    }
    .about-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #fff;
    }
    .about-card-desc {
    color: #d1d5db;
    font-size: 1rem;
    }

    /* Internal CSS for Top Games Section */
    #top-games {
    padding: 80px 0;
    background: #2d3748;
    }
    .top-games-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    }
    .top-games-header {
    max-width: 900px;
    margin: 0 auto 48px auto;
    text-align: center;
    }
    .top-games-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #a78bfa 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    }
    .top-games-desc {
    color: #d1d5db;
    font-size: 1.25rem;
    margin-bottom: 0;
    }
    .top-games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
    }
    @media (min-width: 768px) {
    .top-games-grid {
    grid-template-columns: repeat(3, 1fr);
    }
    }
    .game-card {
    border-radius: 20px;
    overflow: hidden;
    background: #23272f;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    }
    .game-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(80,70,255,0.12);
    }
    .game-card-img-wrap {
    position: relative;
    background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    }
    .game-card-img-wrap img {
    max-width: 100%;
    /*max-height: 140px;*/
    object-fit: cover;
    display: block;
    margin: 0 auto;
    }
    .game-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: bold;
    background: #fbbf24;
    color: #23272f;
    }
    .game-card-badge.green {
    background: #22c55e;
    color: #23272f;
    }
    .game-card-badge.red {
    background: #ef4444;
    color: #fff;
    }
    .game-card-content {
    padding: 32px 24px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    }
    .game-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #fff;
    text-align: center;
    }
    .game-card-btn {
    background: linear-gradient(90deg, #a78bfa 0%, #ec4899 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
    }
    .game-card-btn:hover {
    background: linear-gradient(90deg, #7c3aed 0%, #db2777 100%);
    }

    /* Unique Internal CSS for Games Section */
    #games {
    padding: 80px 0;
    background: #111827;
    }
    .games-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    }
    .games-section-header {
    max-width: 900px;
    margin: 0 auto 48px auto;
    text-align: center;
    }
    .games-section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #a78bfa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    }
    .games-section-desc {
    color: #d1d5db;
    font-size: 1.25rem;
    margin-bottom: 0;
    }
    .games-section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
    }
    @media (min-width: 768px) {
    .games-section-grid {
    grid-template-columns: repeat(4, 1fr);
    }
    }
    .games-section-card {
    border-radius: 20px;
    overflow: hidden;
    background: #23272f;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    }
    .games-section-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(80,70,255,0.12);
    }
    .games-section-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e42 100%);
    }
    .games-section-card-img img {
    max-width: 100%;
    /* max-height: 120px; */
    object-fit: contain;
    display: block;
    margin: 0 auto;
    }
    .games-section-card-content {
    padding: 24px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    }
    .games-section-card-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #fff;
    text-align: center;
    }
    .games-section-card-btn {
    background: linear-gradient(90deg, #22c55e 0%, #3b82f6 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
    }
    .games-section-card-btn:hover {
    background: linear-gradient(90deg, #16a34a 0%, #2563eb 100%);
    }

    /* Unique Internal CSS for Testimonials Section */
    #testimonials-section {
    padding: 80px 0;
    background: #23272f;
    }
    .testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    }
    .testimonials-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 32px;
    background: linear-gradient(90deg, #a78bfa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    }
    .testimonials-desc {
    text-align: center;
    color: #d1d5db;
    font-size: 1.25rem;
    margin-bottom: 48px;
    }
    .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    }
    @media (min-width: 900px) {
    .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    }
    }
    .testimonial-card {
    background: #1a202c;
    border-radius: 24px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    }
    .testimonial-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(80,70,255,0.12);
    }
    .testimonial-avatar {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    color: #fff;
    background: linear-gradient(90deg, #3b82f6 0%, #a78bfa 100%);
    }
    .testimonial-avatar.pink {
    background: linear-gradient(90deg, #ec4899 0%, #ef4444 100%);
    }
    .testimonial-avatar.green {
    background: linear-gradient(90deg, #22c55e 0%, #3b82f6 100%);
    }
    .testimonial-text {
    color: #d1d5db;
    font-style: italic;
    margin-bottom: 24px;
    font-size: 1.1rem;
    }
    .testimonial-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 4px;
    }
    .testimonial-location {
    color: #a1a1aa;
    font-size: 0.95rem;
    }

    /* Newsletter Section Internal CSS */
    #newsletter-section {
    padding: 80px 0;
    background: #111827;
    }
    .newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
    }
    .newsletter-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #a78bfa 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    }
    .newsletter-desc {
    color: #d1d5db;
    font-size: 1.25rem;
    margin-bottom: 32px;
    }
    .newsletter-form-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto 0 auto;
    }
    @media (min-width: 600px) {
    .newsletter-form-row {
    flex-direction: row;
    }
    }
    .newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 999px;
    background: #23272f;
    border: 1px solid #3b3b4f;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border 0.2s;
    }
    .newsletter-input:focus {
    border-color: #a78bfa;
    }
    .newsletter-btn {
    background: linear-gradient(90deg, #a78bfa 0%, #ec4899 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    }
    .newsletter-btn:hover {
    background: linear-gradient(90deg, #7c3aed 0%, #db2777 100%);
    }
    .newsletter-success-message {
    margin-top: 24px;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.3);
    color: #22c55e;
    padding: 16px;
    border-radius: 16px;
    text-align: center;
    display: none;
    }
    .newsletter-success-message.active {
    display: block;
    }

    .testimonial-card {
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.9), rgba(139, 92, 246, 0.3));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* game */

    .game-glow {
    animation: glow 2s ease-in-out infinite alternate;
    }
    @keyframes glow {
    from { box-shadow: 0 0 20px -10px rgba(138, 43, 226, 0.8); }
    to { box-shadow: 0 0 30px 10px rgba(138, 43, 226, 0.8); }
    }
    .floating-animation {
    animation: floating 6s ease-in-out infinite;
    }
    @keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    }
    .play-button-shine {
    position: relative;
    overflow: hidden;
    }
    .play-button-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
    }
    @keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
    }

    /* navbar */

    /* navbar */

    .overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 49;
    }
    nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(17,24,39,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #23272f;
    }
    .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    }
    .nav-logo img {
    height: 40px;
    }
    .nav-links {
    display: none;
    gap: 32px;
    }
    .nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
    padding: 0 4px;
    }
    .nav-link:hover {
    color: #fff;
    }
    .nav-cta {
    display: none;
    }
    .nav-cta-btn {
    background: linear-gradient(90deg, #a78bfa 0%, #ec4899 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 0 12px 0 rgba(167,139,250,0.15);
    }
    .nav-cta-btn:hover {
    background: linear-gradient(90deg, #7c3aed 0%, #db2777 100%);
    }
    .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    gap: 6px;
    }
    .hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
    }
    /* Desktop */
    @media (min-width: 1024px) {
    .nav-links {
    display: flex;
    }
    .nav-cta {
    display: block;
    }
    .hamburger {
    display: none;
    }
    }
    /* Mobile Menu */
    .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 320px;
    background: #232c3e;
    box-shadow: -4px 0 24px 0 rgba(0,0,0,0.18);
    z-index: 100;
    flex-direction: column;
    transition: transform 0.3s;
    transform: translateX(100%);
    }
    .mobile-menu.active {
    display: flex;
    transform: translateX(0);
    }
    .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #23272f;
    }
    .mobile-menu-logo img {
    height: 36px;
    }
    .mobile-menu-close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0;
    transition: color 0.2s;
    }
    .mobile-menu-close:hover {
    color: #fff;
    }
    .mobile-menu-links {
    flex: 1;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    }
    .mobile-menu-link {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 16px 32px;
    transition: background 0.2s, color 0.2s;
    }
    .mobile-menu-link:hover {
    background: #23272f;
    color: #fff;
    }
    .mobile-menu-cta {
    padding: 24px 32px;
    border-top: 1px solid #23272f;
    }
    .mobile-menu-cta-btn {
    width: 100%;
    background: linear-gradient(90deg, #a78bfa 0%, #ec4899 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    }
    .mobile-menu-cta-btn:hover {
    background: linear-gradient(90deg, #7c3aed 0%, #db2777 100%);
    }
    @media (max-width: 1023px) {
    .mobile-menu {
    display: none;
    }
    .mobile-menu.active {
    display: flex;
    }
    }

    /* age verification modal */

    /* Internal CSS for Age Verification Modal */
    #ageVerificationModal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    }
    .age-modal-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100vw;
    padding: 24px;
    }
    .age-modal-content {
    background: #23272f;
    border-radius: 24px;
    box-shadow: 0 8px 40px 0 rgba(80,70,255,0.18);
    max-width: 420px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #3b3b4f;
    padding: 40px 32px 32px 32px;
    text-align: center;
    }
    .age-modal-badge {
    margin: 0 auto 24px auto;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(90deg, #fbbf24 0%, #ef4444 100%);
    box-shadow: 0 4px 24px 0 rgba(255, 186, 73, 0.18);
    }
    .age-modal-badge span {
    color: #fff;
    font-weight: bold;
    font-size: 2.5rem;
    }
    .age-modal-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 18px;
    color: #fff;
    }
    .age-modal-desc {
    color: #d1d5db;
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.6;
    }
    .age-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    }
    @media (min-width: 500px) {
    .age-modal-actions {
    flex-direction: row;
    }
    }
    .age-modal-btn {
    flex: 1;
    padding: 16px 0;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background 0.2s, color 0.2s;
    }
    .age-modal-btn.confirm {
    background: linear-gradient(90deg, #fbbf24 0%, #ef4444 100%);
    color: #fff;
    }
    .age-modal-btn.confirm:hover {
    background: linear-gradient(90deg, #f59e42 0%, #db2777 100%);
    }
    .age-modal-btn.cancel {
    background: transparent;
    color: #d1d5db;
    border: 2px solid #a78bfa;
    }
    .age-modal-btn.cancel:hover {
    background: #2d3748;
    color: #fff;
    }
@media screen and (max-width: 750px) {
    .age-modal-badge {
    width: 60px;
    height: 60px;
    }
    .age-modal-badge span {
    font-size: 1.5rem;
    }
    .age-modal-title {
      font-size: 1.5rem;
    }
    .age-modal-desc {
      font-size: 0.9rem;
    }
    .age-modal-btn {
      padding: 10px 0;
      font-size: 1rem;
    }
}


    /* footer */

    footer {
    background: #111827;
    border-top: 1px solid #23272f;
    padding: 64px 0 0 0;
    color: #d1d5db;
    font-family: inherit;
    }
    .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    }
    .footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    }
    .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    }
    .footer-logo img {
    height: 40px;
    }
    .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    list-style: none;
    padding: 0;
    }
    .footer-links li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
    }
    .footer-links li a:hover {
    color: #fff;
    }
    .footer-logos-age {
    border-top: 1px solid #23272f;
    /* margin-top: 32px; */
    padding-top: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    }
    /* .age-restriction-logo {
    background: linear-gradient(90deg, #fbbf24 0%, #ef4444 100%);
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto;
    } */
    .gambling-logo {
    /* padding: 0 16px; */
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    min-height: 40px;
    border-radius: 8px;
    margin: 5px;
    padding: 7px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    }
    .gambling-logo img {

    /* max-width: 80px; */
  height: 30px;
    width: auto;
    display: block;

    }
  
    .disclaimer-box h5 {
    color: #fff;
    font-weight: bold;
    margin-bottom: 16px;
    font-size: 1.1rem;
    }
    .disclaimer-box p {
    color: #e5e7eb;
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
    }
    .footer-bottom {
    border-top: 1px solid #23272f;
    margin-top: 20px;
    padding: 24px 0;
    text-align: center;
    color: #9ca3af;
    font-size: 0.98rem;
    }
    .footer-bottom a {
    color: #ff9a9e;
    text-decoration: none;
    transition: color 0.2s;
    }
    .footer-bottom a:hover {
    color: #fff;
    }
    .responsible-gaming-logo {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin: 0 auto 10px;
    }

    /* .gambling-logo {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border-radius: 8px;
    height: 50px;
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 5px;
    padding: 7px;
    } */

    .age-restriction-logo {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: bold;
    font-size: 20px;
    border: 3px solid #ff6b6b;
    }

    .disclaimer-box {
    
    margin: 20px 0;
    display:flex;
    justify-content: center;
    
   
    }
  .disclaimer-box .box-1{
      background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-left: 4px solid #ff6b6b;
    padding: 20px;
    border-radius: 8px;
    max-width: 900px;
    text-align: center;

    }
  
    
  
    @media (max-width: 600px) {
    .footer-logos-age {
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    }
    .disclaimer-box {
    padding: 20px 8px;
    }
    .footer-links {
    gap: 8px;
    }
    }


    /* internal game page  */

          .bwc-hero-section {
        /* min-height: 60vh; */
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding-top: 100px;
        text-align: center;
      }
      .bwc-hero-title {
        font-size: 2.5rem;
        font-weight: 900;
        margin-bottom: 1.5rem;
        background: linear-gradient(90deg, #fbbf24 0%, #ef4444 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
      }
      .bwc-hero-desc {
        color: #d1d5db;
        font-size: 1.25rem;
        max-width: 700px;
        margin: 0 auto 2rem auto;
      }
      .bwc-game-section {
        padding: 64px 0 0 0;
        position: relative;
        margin: 15px;
      }
      .bwc-game-container {
        max-width: 900px;
        margin: 0 auto;
        border-radius: 32px;
        padding: 2px;
        background: linear-gradient(90deg, #a78bfa 0%, #ec4899 100%);
        box-shadow: 0 4px 32px 0 rgba(80,70,255,0.10);
      }
      .bwc-game-inner {
        border-radius: 32px;
        overflow: hidden;
        background: #18181b;
        padding: 0;
      }
      .bwc-game-img-wrap {
        border-radius: 32px;
        overflow: hidden;
        background: #18181b;
        width: 100%;
      }
      .bwc-game-img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.4s;
        display: block;
      }
      .bwc-game-img:hover {
        transform: scale(1.05);
      }
      @media (min-width: 768px) {
        .bwc-game-img {
          height: 500px;
        }
      }
      .bwc-play-btn-wrap {
        text-align: center;
        margin-top: 48px;
      }
      .bwc-play-btn {
        background: linear-gradient(90deg, #fbbf24 0%, #ef4444 100%);
        color: #fff;
        border: none;
        border-radius: 999px;
        padding: 20px 30px;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 4px 24px 0 rgba(255, 186, 73, 0.18);
        transition: transform 0.2s, background 0.2s;
      }
      .bwc-play-btn:hover {
        transform: scale(1.05);
        background: linear-gradient(90deg, #f59e42 0%, #db2777 100%);
      }

      /* .bwc-age-modal-btn {
        flex: 1;
        padding: 16px 0;
        border-radius: 999px;
        font-size: 1.1rem;
        font-weight: bold;
        cursor: pointer;
        border: none;
        transition: background 0.2s, color 0.2s;
      }
      .bwc-age-modal-btn.confirm {
        background: linear-gradient(90deg, #fbbf24 0%, #ef4444 100%);
        color: #fff;
      }
      .bwc-age-modal-btn.confirm:hover {
        background: linear-gradient(90deg, #f59e42 0%, #db2777 100%);
      }
      .bwc-age-modal-btn.cancel {
        background: transparent;
        color: #d1d5db;
        border: 2px solid #a78bfa;
      }
      .bwc-age-modal-btn.cancel:hover {
        background: #2d3748;
        color: #fff;
      } */
  

      .iframe-link{
        width: 100%;
        height: 500px;
        border-radius: 20px;
        box-shadow: 0 4px 24px 0 rgba(80,70,255,0.10);
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      @media screen and (max-width: 768px) {
         .iframe-link{
          height: 250px;
         }
         .bwc-play-btn {
          padding: 10px 20px;
        font-size: 1rem;
         }
      }


      /* contact us */

      
        .floating-animation {
            animation: floating 6s ease-in-out infinite;
        }
        @keyframes floating {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        .success-message {
            display: none;
            animation: slideDown 0.5s ease-out;
        }
        @keyframes slideDown {
            from { transform: translateY(-20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
          .contact-section {
        padding: 120px 0 64px 0;
        min-height: 100vh;
      }
      .contact-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 16px;
      }
      .contact-header {
        text-align: center;
        margin-bottom: 48px;
      }
      .contact-title {
        font-size: 2.8rem;
        font-weight: bold;
        margin-bottom: 24px;
        background: linear-gradient(90deg, #a78bfa 0%, #ec4899 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
      }
      .contact-desc {
        font-size: 1rem;
        color: #d1d5db;
        max-width: 700px;
        margin: 0 auto;
      }
      .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 32px;
      }
      @media (min-width: 900px) {
        .contact-grid {
          flex-direction: row;
          gap: 48px;
        }
      }
      .contact-form-wrap, .contact-info-wrap, .contact-faq-wrap {
        background: rgba(39, 39, 42, 0.95);
        border-radius: 24px;
        border: 1px solid #a78bfa33;
        padding: 40px 32px;
        box-shadow: 0 2px 12px 0 rgba(167,139,250,0.08);
        flex : 1;
      }
      .contact-form {
        display: flex;
        flex-direction: column;
        gap: 24px;
      }
      .contact-label {
        font-size: 1rem;
        font-weight: 500;
        color: #d1d5db;
        margin-bottom: 8px;
      }
      .contact-input, .contact-select, .contact-textarea {
        width: 100%;
        padding: 14px 18px;
        border-radius: 12px;
        background: #23272f;
        border: 1px solid #a78bfa33;
        color: #fff;
        font-size: 1rem;
        outline: none;
        transition: border 0.2s;
        margin-bottom: 0;
        margin-top: 10px;
      }
      .contact-input:focus, .contact-select:focus, .contact-textarea:focus {
        border-color: #a78bfa;
      }
      .contact-btn {
        width: 100%;
        background: linear-gradient(90deg, #a78bfa 0%, #ec4899 100%);
        color: #fff;
        font-weight: 600;
        font-size: 1.1rem;
        padding: 18px 0;
        border: none;
        border-radius: 999px;
        cursor: pointer;
        transition: background 0.2s, transform 0.2s;
      }
      .contact-btn:hover {
        background: linear-gradient(90deg, #7c3aed 0%, #db2777 100%);
        transform: scale(1.02);
      }
      .success-message {
        display: none;
        background: rgba(34,197,94,0.08);
        border: 1px solid rgba(34,197,94,0.3);
        color: #22c55e;
        padding: 16px;
        border-radius: 16px;
        text-align: center;
        margin-top: 24px;
        animation: slideDown 0.5s ease-out;
      }
      @keyframes slideDown {
        from { transform: translateY(-20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
      }
      .contact-info-title, .contact-faq-title {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 24px;
        background: linear-gradient(90deg, #a78bfa 0%, #ec4899 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
      }
      .contact-info-list {
        display: flex;
        flex-direction: column;
        gap: 24px;
      }
      .contact-info-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
      }
      .contact-info-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #a78bfa33;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #a78bfa;
        font-size: 1.2rem;
        flex-shrink: 0;
      }
      .contact-info-label {
        font-weight: 500;
        color: #fff;
        margin-bottom: 5px;
      }
      .contact-info-value {
        color: #a78bfa;
        font-size: 1rem;
      }
      .contact-faq-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .contact-faq-q {
        font-weight: 500;
        color: #fff;
        margin-bottom: 4px;
      }
      .contact-faq-a {
        color: #d1d5db;
        font-size: 1rem;
      }
      @media (max-width: 900px) {
        .contact-form-wrap, .contact-info-wrap, .contact-faq-wrap {
          padding: 24px 12px;
        }
      }
      /* Ensure box-sizing for all form elements and wrapper */
.contact-form-wrap,
.contact-input,
.contact-select,
.contact-textarea {
  box-sizing: border-box;
}




/* policy */

      .policy-hero-section {
        min-height: 40vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding-top: 64px;
        background: linear-gradient(135deg, #a78bfa22 0%, #ec489922 100%);
      }
      .policy-hero-bg-blob {
        position: absolute;
        z-index: 0;
        border-radius: 50%;
        filter: blur(60px);
        opacity: 0.5;
      }
      .policy-hero-bg-blob1 {
        top: 40px;
        left: 40px;
        width: 180px;
        height: 180px;
        background: linear-gradient(90deg, #a78bfa 0%, #ec4899 100%);
      }
      .policy-hero-bg-blob2 {
        bottom: 40px;
        right: 80px;
        width: 260px;
        height: 260px;
        background: linear-gradient(90deg, #3b82f6 0%, #a78bfa 100%);
      }
      .policy-hero-content {
        width: 100%;
        text-align: center;
        position: relative;
        z-index: 2;
        padding: 32px 0;
      }
      .policy-hero-title {
        font-size: 2.5rem;
        font-weight: 900;
        margin-bottom: 24px;
        background: linear-gradient(90deg, #a78bfa 0%, #ec4899 50%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
      }
      @media (min-width: 600px) {
        .policy-hero-title {
          font-size: 3.5rem;
        }
      }
      .policy-main-section {
        padding: 64px 0;
        background: #23272fbb;
      }
      .policy-main-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 16px;
      }
      .policy-card {
        background: rgba(39, 39, 42, 0.95);
        border-radius: 24px;
        border: 1px solid #a78bfa33;
        padding: 48px 32px;
        box-shadow: 0 2px 12px 0 rgba(167,139,250,0.08);
        margin-bottom: 32px;
      }
      .policy-section {
        display: flex;
        flex-direction: column;
        gap: 18px;
      }
      .policy-section h5 {
        font-size: 1.5rem;
        font-weight: bold;
        margin: 18px 0 8px 0;
        background: linear-gradient(90deg, #a78bfa 0%, #ec4899 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
      }
      .policy-section p,
      .policy-section ul,
      .policy-section li {
        font-size: 1.05rem;
        color: #d1d5db;
        margin: 0 0 8px 0;
        line-height: 1.7;
      }
      .policy-section ul {
        padding-left: 24px;
        margin-bottom: 8px;
      }
      .policy-section li {
        list-style: disc;
      }
      @media (max-width: 600px) {
        .policy-card {
          padding: 24px 8px;
        }
        .policy-hero-title {
          font-size: 2rem;
        }
      }
