@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: Ubuntu;
    text-align: center;
    padding-top: 80px;
    color: #E4E4E4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Prevent body scroll when sidebar is open */
body.sidebar-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.background-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #1a0000 0%, #330000 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: -1;
}

.notice {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0000 0%, #330000 100%);
    position: fixed;
    top: 0;
    z-index: 10;
}

.notice p {
    display: inline-block;
    white-space: nowrap;
    color: white; /* Matches the text color in the image */
    font-size: 16px;
    margin: 5px;
    font-weight: 500;
    animation: slide-left 30s linear infinite;
    padding-left: 5%;
}


@keyframes slide-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

header {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    top: 45px;
    border-radius: 150px;
    background: linear-gradient(135deg, #1a0000 0%, #330000 100%);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6), inset 0 0 30px rgba(255, 0, 0, 0.3);
    min-height: 60px;
}

.header-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 0 0 auto;
    min-width: 50px;
    z-index: 1001;
}

.header-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    pointer-events: none;
}

.header-center img,
.header-center a {
    pointer-events: auto;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 0 0 auto;
    min-width: 50px;
    z-index: 1001;
}

.logo {
    max-width: 120px;
    width: 100%;
    height: auto;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.menu-toggle {
    font-size: 28px;
    cursor: pointer;
    color: white;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, opacity 0.2s ease;
    z-index: 1001;
    position: relative;
}

.menu-toggle:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.menu-toggle:active {
    transform: scale(0.95);
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 250px;
    height: 100vh;
    max-height: 100vh;
    background: linear-gradient(135deg, #1a0000 0%, #330000 100%);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6), inset 0 0 30px rgba(255, 0, 0, 0.3);
    color: white;
    padding: 20px;
    padding-bottom: 30px;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999999;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    will-change: left;
}

.sidebar.active {
    left: 0;
}

/* Desktop sidebar behavior - ensure it doesn't conflict */
@media (min-width: 769px) {
    .sidebar {
        width: 280px;
        left: -280px;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    /* Desktop overlay can be lighter */
    .sidebar-overlay.active {
        background: rgba(0,0,0,0.4);
    }
}

.sidebar-logo {
    max-width: 120px;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 20px;
    margin: 0 auto;
    display: block;
}

.close-btn {
    position: absolute;
    padding: 12px;
    top: 15px;
    right: 15px;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 1200;
    transition: all 0.3s ease;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.close-btn:hover {
    color: white;
    background: rgba(255, 0, 0, 0.4);
    transform: scale(1.1);
}

.close-btn:active {
    transform: scale(0.95);
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sidebar li {
    margin: 0;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    padding: 14px 16px;
    transition: all 0.3s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.sidebar li a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-weight: 500;
    gap: 10px;
}

.sidebar li a i {
    margin-right: 0;
    font-size: 20px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.sidebar li:hover {
    background-color: rgba(255, 0, 0, 0.2);
    transform: translateX(3px);
}

.sidebar .auth-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-direction: column;
}

.sidebar .auth-login-btn {
    background: linear-gradient(to bottom, #ff0000, #8b0000); /* Glossy red gradient */
    border: 2px solid #cc0000;
    padding: 14px 20px;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-wrap: nowrap;
    font-size: 16px;
    min-height: 48px;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.2), 0 0 4px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.auth-login-btn {
    background: linear-gradient(to bottom, #ff0000, #8b0000); /* Glossy red gradient */
    border: 2px solid #cc0000;
    padding: 10px 20px;
    color: white;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-wrap: nowrap;
    font-size: 16px;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.2), 0 0 4px rgba(0, 0, 0, 0.5);
}

.auth-login-btn:hover {
    background: linear-gradient(to bottom, #ff4d4d, #990000);
    transform: scale(1.05);
}
.sidebar .auth-register-btn {
    background: linear-gradient(to bottom, #f9d423, #ff4e00); /* Gold to orange gradient */
    border: 2px solid #e69500;
    padding: 14px 20px;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-wrap: nowrap;
    font-size: 16px;
    min-height: 48px;
    box-shadow: 0 4px 10px rgba(255, 165, 0, 0.4);
    width: 100%;
}

.auth-register-btn {
    background: linear-gradient(to bottom, #f9d423, #ff4e00); /* Gold to orange gradient */
    border: 2px solid #e69500;
    padding: 10px 20px;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-wrap: nowrap;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(255, 165, 0, 0.4);
}

.auth-register-btn:hover {
    background: linear-gradient(to bottom, #ffb347, #ffcc33);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 200, 0, 0.6);
}


.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999998;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 40px;
}

.hero-banner {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    margin-top: 25px;
    transform: scale(1.0);
}

.hero-container .auth-buttons {
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    padding: 10px;
    border-radius: 40px;
    width: 200px;
    font-size: 20px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.hero-container .login-button {
    margin-bottom: 10px;
    min-width: 400px;
    padding: 20px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    background: linear-gradient(to bottom, #ff0000, #8b0000); /* Glossy red */
    border: 2px solid #cc0000;
    font-weight: 600;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.2),
                0 0 6px rgba(0, 0, 0, 0.4);
}

.hero-container .login-button:hover {
    background: linear-gradient(to bottom, #ff4d4d, #990000);
    transform: scale(1.05);
    box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.3),
                0 0 12px rgba(255, 0, 0, 0.6);
}

.hero-container .register-button {
    margin-bottom: 10px;
    min-width: 400px;
    padding: 20px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    background: linear-gradient(to bottom, #f9d423, #ff4e00); /* Gold to orange */
    border: 2px solid #e69500;
    font-weight: 600;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 165, 0, 0.4);
}

.hero-container .register-button:hover {
    background: linear-gradient(to bottom, #ffb347, #ffcc33);
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 200, 0, 0.6);
}

.register {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.register-btn {
    position: fixed;
    bottom: 20px;
    right: 50px;
    z-index: 9999;
    background: linear-gradient(to bottom, #f9d423, #ff4e00); /* Luxe gold-orange */
    padding: 12px 40px;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #e69500;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.2),
        0 0 10px rgba(255, 174, 0, 0.8),
        0 0 20px rgba(255, 174, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    outline: none;
}

.register-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(to bottom, #ffb347, #ffcc33); /* Lighter gold */
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(255, 200, 0, 0.8),
        0 0 30px rgba(255, 200, 0, 0.6);
}

.register-btn:active {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.register-btn:focus {
    outline: none;
}

@keyframes pop-effect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.register-btn {
    animation: pop-effect 1.5s infinite;
}

.data {
    background-image: url("/assets/images/n1-data.jpeg");
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.data-item {
    flex: 1;
    min-width: 150px;
}

.data-item .title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #ffc539;
}

.data-item .value {
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.count {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.count.visible {
    opacity: 1;
    transform: translateY(0);
}

.casino-details {
    padding: 50px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.detail-card {
    background: linear-gradient(135deg, rgba(26, 0, 0, 0.9) 0%, rgba(51, 0, 0, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    flex: 1 1 400px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.detail-card h2 {
    font-size: 24px;
    color: #feb728;
    margin-bottom: 40px;
    text-align: center;
}

.detail-card .detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    position: relative;
}

.detail-card .detail-row span {
    font-size: 16px;
    color: #e4e4e4;
}

.detail-card .detail-row span.detail-value {
    font-weight: 500;
}

.why-choose {
    padding: 0 40px;
}

.why-choose-details {
    background: linear-gradient(135deg, rgba(26, 0, 0, 0.9) 0%, rgba(51, 0, 0, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 30px;
    align-items: center;
}

.why-choose .logo {
    max-width: 500px;
}

.why-choose h1 {
    color: #feb728;
}

.why-choose h3 {
    color: #e4e4e4;
    padding-right: 60px;
    font-weight: 500;
    line-height: 1.3;
}

.why-choose-left {
    flex: 1;
    text-align: left;
    align-items: center;
    justify-content: center;
}

.why-choose-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(26, 0, 0, 0.9) 0%, rgba(51, 0, 0, 0.9) 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.benefit-card h4 {
    margin: 0 0 12px;
    color: #ffc539;
    font-size: 22px;
    font-weight: 600;
}

.benefit-card p {
    margin: 0;
    color: #e4e4e4;
    font-size: 16px;
    line-height: 1.5;
}

.benefit-card .icon {
    font-size: 32px;
    color: #007bff;
    margin-bottom: 15px;
}

.games-section {
    padding: 30px 0;
}

.games-section img {
    max-width: 120px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    padding: 40px;
}

.game-card {
    background: linear-gradient(135deg, rgba(26, 0, 0, 0.9) 0%, rgba(51, 0, 0, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.game-icon {
    margin-bottom: 20px;
}

.game-title {
    font-size: 20px;
    color: #feb728;
    margin-bottom: 10px;
}

.game-description {
    color: #e4e4e4;
    font-size: 16px;
    line-height: 1.5;
}

.join-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0000 0%, #330000 100%);
    position: relative;
    overflow: hidden;
}

.join-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/pattern.png');
    opacity: 0.1;
    animation: backgroundMove 20s linear infinite;
}

.join-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.join-content {
    text-align: center;
    color: #fff;
}

.join-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff3333;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    animation: glow 2s ease-in-out infinite alternate;
}

.join-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.highlight-item i {
    font-size: 2.5rem;
    color: #ff3333;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.highlight-item span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffcccc;
}

.join-description {
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 40px auto;
    color: #ffcccc;
    max-width: 800px;
}

.join-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.join-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 35px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.join-btn.primary {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.join-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    background: linear-gradient(45deg, #ff3333, #ff0000);
}

.join-btn.secondary {
    background: transparent;
    color: #ff3333;
    border: 2px solid #ff3333;
}

.join-btn.secondary:hover {
    background: rgba(255, 0, 0, 0.1);
    transform: translateY(-3px);
}

.join-btn i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.join-btn:hover i {
    transform: translateX(5px);
}

.join-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.stat:nth-child(1) { animation-delay: 0.2s; }
.stat:nth-child(2) { animation-delay: 0.4s; }
.stat:nth-child(3) { animation-delay: 0.6s; }

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff3333;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.stat-label {
    font-size: 1.1rem;
    color: #ffcccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .join-title {
        font-size: 2.5rem;
    }

    .join-highlights {
        flex-direction: column;
        gap: 20px;
    }

    .join-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .join-cta {
        flex-direction: column;
        gap: 15px;
    }

    .join-btn {
        width: 100%;
        justify-content: center;
    }

    .join-stats {
        flex-direction: column;
        gap: 30px;
    }
}

.footer {
    color: #e4e4e4;
    padding: 20px 0;
    text-align: center;
}
  
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
  
.footer p {
    margin: 0;
    font-size: 18px;
}

.chat-button {
    position: fixed;
    bottom: 100px;
    right: 40px;
    background-color: #feb728;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
}

.chat-button:hover {
    background-color: #ffc539;
    transform: scale(1.05);
}


@media (max-width: 768px) {
    body {
        padding-top: 120px;
        font-size: 14px;
    }

    .notice {
        font-size: 12px;
        padding: 10px 0;
        height: auto;
        min-height: 35px;
        display: flex;
        align-items: center;
    }
    
    .notice p {
        font-size: 12px;
        margin: 0;
        padding-left: 3%;
        line-height: 1.4;
    }

    header {
        padding: 10px 15px;
        width: 95%;
        top: 40px;
        border-radius: 100px;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-left {
        padding-left: 5px;
        flex: 0 0 auto;
        min-width: 44px;
        z-index: 1001;
    }
    
    .header-right {
        padding-right: 5px;
        flex: 0 0 auto;
        min-width: 44px;
        z-index: 1001;
    }
    
    .header-right img {
        max-width: 60px;
        height: auto;
    }
    
    .header-center {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1000;
    }

    .logo {
        max-width: 80px;
        height: auto;
    }
    
    .menu-toggle {
        font-size: 24px;
        z-index: 1002;
        position: relative;
    }

    .hero-container {
        flex-direction: column;
        align-items: center;
        padding: 20px 10px;
        margin-top: 30px;
    }

    .hero-banner {
        width: 100%;
        margin-top: 15px;
        border-radius: 15px;
        height: 200px;
        overflow: hidden;
    }
    
    .carousel-image {
        height: 200px;
        object-fit: cover;
        width: 100%;
    }
    
    .carousel-track {
        height: 200px;
    }

    .hero-container .auth-buttons {
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin-top: 15px;
        margin-left: 0;
        margin-right: 0;
        padding: 15px;
        border-radius: 20px;
    }

    .hero-container .login-button {
        margin-bottom: 10px;
        font-size: 16px;
        min-width: auto;
        width: 100%;
        max-width: 100%;
        padding: 15px 20px;
        border-radius: 50px;
    }
    .hero-container .register-button{
        margin-bottom: 0px;
        font-size: 16px;
        min-width: auto;
        width: 100%;
        max-width: 100%;
        padding: 15px 20px;
        border-radius: 50px;
    }
    
    .hero-container .auth-buttons h1 {
        font-size: 20px;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .hero-container .auth-buttons h1 img {
        max-width: 80px;
    }

    .data {
        padding: 15px 15px;
    }

    .data-item {
        flex: 1;
        min-width: 10px;
    }

    .data-item .title {
        font-size: 16px;
        text-wrap: nowrap;
    }
    
    .data-item .value {
        font-size: 18px;
    }

    .casino-details {
        padding: 20px 10px;
        gap: 15px;
    }

    .detail-card {
        margin: 0 10px;
        padding: 20px 15px;
        flex: 1 1 100%;
        max-width: 100%;
    }

    .detail-card h2 {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .detail-card .detail-row {
        margin-bottom: 10px;
        flex-wrap: wrap;
    }

    .detail-card .detail-row span {
        font-size: 13px;
    }
    
    .detail-card .detail-row span.detail-value {
        font-size: 14px;
        margin-top: 2px;
    }

    .why-choose {
        padding: 20px 10px;
    }
    
    .why-choose-details {
        padding: 25px 15px;
        border-radius: 20px;
    }

    .why-choose .logo {
        max-width: 200px;
    }

    .why-choose-left {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .why-choose-left h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .why-choose-left p {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 5px;
    }

    .why-choose-right {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-card {
        padding: 18px;
    }

    .benefit-card h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .benefit-card p {
        margin: 0;
        color: #b0b0b0;
        font-size: 13px;
        line-height: 1.5;
    }

    .games-section {
        padding: 30px 10px;
    }
    
    .container {
        padding: 0 10px;
    }

    .games-section img {
        max-width: 80px;
    }
  
    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
        padding: 0 10px;
    }
  
    .games-grid {
        grid-template-columns: 1fr;
        grid-gap: 20px;
        padding: 20px 10px;
    }
  
    .game-card {
        padding: 20px 15px;
    }
  
    .game-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
  
    .game-description {
        font-size: 13px;
        line-height: 1.5;
    }

    .join-section {
        padding: 50px 15px;
        text-align: center;
    }
    
    .join-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        padding: 0 10px;
        line-height: 1.3;
    }
    
    .join-description {
        font-size: 14px;
        padding: 0 10px;
        line-height: 1.5;
        margin: 30px auto;
    }
    
    .join-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 10px;
    }
    
    .join-btn {
        width: 100%;
        padding: 15px 25px;
        font-size: 1rem;
        justify-content: center;
    }

    .footer {
        padding: 10px 0;
    }
      
    .footer p {
        font-size: 14px;
    }

    .chat-button {
        bottom: 100px;
        right: 20px;
        padding: 10px 16px;
        font-size: 14px;
    }

    .register-btn {
        padding: 12px 20px;
        font-size: 13px;
        bottom: 20px;
        right: 20px;
        left: auto;
        width: auto;
        max-width: calc(100% - 40px);
        white-space: nowrap;
    }
    
    .sidebar {
        width: 85%;
        max-width: 320px;
        padding: 20px 15px;
        padding-bottom: 40px;
    }
    
    .sidebar-logo {
        max-width: 120px;
        padding: 20px 15px;
        margin: 0 auto;
        display: block;
    }
    
    .sidebar ul {
        margin-top: 30px;
        gap: 10px;
    }
    
    .sidebar li {
        font-size: 17px;
        padding: 16px 20px;
        min-height: 52px;
        border-radius: 10px;
    }
    
    .sidebar li a {
        font-size: 17px;
        font-weight: 500;
    }
    
    .sidebar li a i {
        font-size: 22px;
        width: 26px;
    }
    
    .close-btn {
        top: 15px;
        right: 15px;
        min-width: 48px;
        min-height: 48px;
        font-size: 30px;
        background: rgba(255, 255, 255, 0.15);
    }
    
    .close-btn:active {
        transform: scale(0.9);
    }
    
    .sidebar .auth-buttons {
        margin-top: 25px;
        padding-top: 25px;
        gap: 12px;
    }
    
    .sidebar .auth-login-btn,
    .sidebar .auth-register-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        min-height: 52px;
        font-weight: 600;
    }
    
    .sidebar-overlay {
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
    
    /* Ensure sidebar doesn't conflict with header on mobile */
    .sidebar {
        top: 0;
        left: -320px;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    /* Prevent horizontal scroll on mobile */
    body {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Ensure header doesn't overlap sidebar */
    header {
        z-index: 1000;
    }
}

/* Additional mobile optimizations for very small screens */
@media (max-width: 480px) {
    body {
        font-size: 13px;
        padding-top: 115px;
    }
    
    header {
        top: 38px;
        padding: 8px 12px;
        min-height: 48px;
    }
    
    .hero-container {
        margin-top: 25px;
        padding: 15px 8px;
    }
    
    .hero-container .auth-buttons h1 {
        font-size: 18px;
    }
    
    .winners-title {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .join-title {
        font-size: 1.5rem;
    }
    
    .detail-card h2 {
        font-size: 16px;
    }
    
    .why-choose-left h2 {
        font-size: 20px;
    }
    
    .sidebar {
        width: 90%;
        max-width: 300px;
        padding: 18px 12px;
        padding-bottom: 35px;
        left: -300px;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    body {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .sidebar li {
        padding: 14px 16px;
        font-size: 16px;
        min-height: 48px;
    }
    
    .sidebar .auth-login-btn,
    .sidebar .auth-register-btn {
        padding: 14px 20px;
        font-size: 15px;
        min-height: 48px;
    }
}

.winners-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a0000 0%, #330000 100%);
    position: relative;
    overflow: hidden;
}

.winners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/pattern.png');
    opacity: 0.1;
    animation: backgroundMove 20s linear infinite;
}

.winners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.winners-title {
    text-align: center;
    color: #ff3333;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.winners-table-wrapper {
    background: linear-gradient(135deg, rgba(26, 0, 0, 0.9) 0%, rgba(51, 0, 0, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
    overflow-x: auto;
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
}

.winners-table th {
    background: rgba(255, 0, 0, 0.1);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #ff3333;
    border-bottom: 2px solid rgba(255, 0, 0, 0.2);
}

.winners-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.winners-table tr:hover {
    background: rgba(255, 0, 0, 0.05);
}

.player-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.player-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.player-name {
    color: #ffcccc;
}

.win-amount {
    color: #ff3333;
    font-weight: 600;
    font-size: 1.1em;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
    animation: amountPulse 1.5s infinite;
    transition: all 0.3s ease;
}

@keyframes amountPulse {
    0% {
        opacity: 0.8;
        text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
    }
    100% {
        opacity: 0.8;
        text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
    }
}

.winners-note {
    text-align: center;
    margin-top: 20px;
    color: #ffcccc;
    font-style: italic;
    animation: noteFade 3s infinite;
}

@keyframes noteFade {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
    }
}

.winners-table tr {
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

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

.winners-table tr.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-5px);
    }
}

.winners-table tr.new-win {
    animation: newWinFade 0.8s ease forwards;
}

@keyframes newWinFade {
    0% {
        opacity: 0;
        transform: translateX(-10px);
        background: rgba(255, 0, 0, 0.3);
    }
    30% {
        opacity: 1;
        transform: translateX(0);
        background: rgba(255, 0, 0, 0.2);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        background: transparent;
    }
}

.winners-table tr:nth-child(1) { animation-delay: 0.1s; }
.winners-table tr:nth-child(2) { animation-delay: 0.2s; }
.winners-table tr:nth-child(3) { animation-delay: 0.3s; }
.winners-table tr:nth-child(4) { animation-delay: 0.4s; }
.winners-table tr:nth-child(5) { animation-delay: 0.5s; }

.winners-table td.phone-number {
    font-family: 'Courier New', monospace;
    color: #ffd700;
    font-weight: 600;
    letter-spacing: 1px;
}

.winners-table tr:hover td.phone-number {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.winners-table tr:hover .win-amount {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

.winners-table tr {
    transition: all 0.3s ease;
}

.winners-table tr:hover {
    background: rgba(255, 0, 0, 0.08);
    transform: translateX(5px);
}

.winners-table td {
    transition: all 0.3s ease;
}

.winners-table tr:hover td {
    color: #fff;
}

.winners-table tr:hover .player-name {
    color: #ff3333;
}

.winners-table tr:hover .phone-number {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
    .winners-section {
        padding: 40px 10px;
    }
    
    .winners-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .winners-table-wrapper {
        padding: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .winners-table {
        min-width: 600px;
        font-size: 0.85em;
    }

    .winners-table th,
    .winners-table td {
        padding: 8px 6px;
        font-size: 0.85em;
    }
    
    .winners-table th:nth-child(2),
    .winners-table td:nth-child(2) {
        display: none; /* Hide phone column on mobile */
    }

    .player-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.75em;
    }
    
    .player-name {
        font-size: 0.9em;
    }

    .win-amount {
        font-size: 0.95em;
    }
    
    .winners-note {
        font-size: 0.85em;
        padding: 0 10px;
    }
}

.logo-link {
    display: block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-link:active {
    transform: scale(0.95);
}

.bonus-hero {
    background: linear-gradient(135deg, #1a0000 0%, #330000 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/pattern.png');
    opacity: 0.1;
    animation: backgroundMove 20s linear infinite;
}

.bonus-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-hero h1 {
    color: #ff3333;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    animation: glow 2s ease-in-out infinite alternate;
}

.bonus-hero p {
    color: #ffcccc;
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    background: rgba(0, 0, 0, 0.4);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff3333;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    margin-bottom: 10px;
}

.stat-label {
    color: #ffcccc;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stat-desc {
    color: #ff9999;
    font-size: 1rem;
    font-style: italic;
}

.bonus-hero-cta {
    margin-top: 40px;
}

.hero-claim-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.hero-claim-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.hero-claim-btn i {
    transition: transform 0.3s ease;
}

.hero-claim-btn:hover i {
    transform: translateX(5px);
}

.bonus-note {
    color: #ff9999;
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 0, 0, 0.6),
                     0 0 30px rgba(255, 0, 0, 0.4);
    }
}

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

@media (max-width: 768px) {
    .bonus-hero {
        padding: 60px 20px;
    }

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

    .bonus-hero p {
        font-size: 1.1rem;
    }

    .bonus-hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }

    .hero-claim-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.bonus-card {
    position: relative;
    perspective: 1000px;
    height: 100%;
    min-width: 280px;
}

.bonus-card-inner {
    background: linear-gradient(135deg, rgba(26, 0, 0, 0.9) 0%, rgba(51, 0, 0, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bonus-card:hover .bonus-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
}

.bonus-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bonus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.bonus-amount {
    font-size: 2.8rem;
    margin: 15px 0;
}

.bonus-features {
    margin: 15px 0;
}

.bonus-features li {
    margin: 12px 0;
    font-size: 0.95rem;
    padding-left: 25px;
}

.claim-bonus-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    cursor: pointer;
    border: none;
}

.claim-bonus-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    background: linear-gradient(45deg, #ff3333, #ff0000);
}

.claim-bonus-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

.claim-bonus-btn i {
    transition: transform 0.3s ease;
}

.claim-bonus-btn:hover i {
    transform: translateX(5px);
}

/* Special styling for loyalty card button */
.bonus-card.loyalty .claim-bonus-btn {
    background: linear-gradient(45deg, #ffd700, #ffa500);
    color: #1a0000;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.bonus-card.loyalty .claim-bonus-btn:hover {
    background: linear-gradient(45deg, #ffcc00, #ff8c00);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

/* Add ripple effect */
.claim-bonus-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.claim-bonus-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Responsive breakpoints */
@media (max-width: 1400px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .bonus-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        padding: 20px;
    }

    .bonus-card-inner {
        padding: 20px;
    }
}

/* Special styling for loyalty card in row layout */
.bonus-card.loyalty .bonus-card-inner {
    padding: 25px;
}

.bonus-card.loyalty .bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bonus-card.loyalty h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.bonus-card.loyalty .bonus-amount {
    font-size: 2.8rem;
    margin: 15px 0;
}

.bonus-card.loyalty p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.bonus-card.loyalty .bonus-features li {
    font-size: 0.95rem;
    margin: 10px 0;
}

.bonus-card.loyalty .claim-bonus-btn {
    padding: 12px 25px;
    font-size: 1rem;
    margin-top: 15px;
}

.bonus-terms {
    background: linear-gradient(135deg, rgba(26, 0, 0, 0.9) 0%, rgba(51, 0, 0, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 20px;
    margin: 40px 0;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

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

.terms-container h2 {
    color: #ff3333;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.terms-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.terms-section h3 {
    color: #ffcccc;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.terms-section ul {
    list-style: none;
    padding: 0;
}

.terms-section li {
    color: #ffcccc;
    margin: 12px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.terms-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff3333;
}

.bonus-faq {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-faq h2 {
    color: #ff3333;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(26, 0, 0, 0.9) 0%, rgba(51, 0, 0, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(255, 0, 0, 0.1);
}

.faq-question h3 {
    color: #ffcccc;
    margin: 0;
    font-size: 1.2rem;
    text-align: left;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: #ff3333;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

.faq-answer p {
    color: #ffcccc;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .bonus-faq {
        padding: 20px;
    }

    .bonus-faq h2 {
        font-size: 1.8rem;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }
}

.bonus-card.loyalty .bonus-card-inner {
    background: linear-gradient(135deg, rgba(26, 0, 0, 0.95) 0%, rgba(51, 0, 0, 0.95) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3),
                inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.bonus-card.loyalty .bonus-icon {
    color: #ffd700;
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    animation: glow 2s ease-in-out infinite alternate;
}

.bonus-card.loyalty h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.bonus-card.loyalty .bonus-amount {
    color: #ffd700;
    font-size: 3.5rem;
    font-weight: 800;
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    letter-spacing: 2px;
}

.bonus-card.loyalty p {
    color: #ffcccc;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-style: italic;
}

.bonus-card.loyalty .bonus-features li {
    color: #ffcccc;
    margin: 18px 0;
    padding-left: 35px;
    font-size: 1.1rem;
}

.bonus-card.loyalty .bonus-features li i {
    color: #ffd700;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.bonus-card.loyalty .claim-bonus-btn {
    background: linear-gradient(45deg, #ffd700, #ffa500);
    color: #1a0000;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 35px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    margin-top: 30px;
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.bonus-card.loyalty .claim-bonus-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #ffcc00, #ff8c00);
}

.bonus-card.loyalty .claim-bonus-btn i {
    transition: transform 0.3s ease;
}

.bonus-card.loyalty .claim-bonus-btn:hover i {
    transform: translateX(5px);
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                     0 0 30px rgba(255, 215, 0, 0.6);
    }
}

@media (max-width: 768px) {
    .bonus-card.loyalty .bonus-icon {
        font-size: 3rem;
    }

    .bonus-card.loyalty h3 {
        font-size: 1.8rem;
    }

    .bonus-card.loyalty .bonus-amount {
        font-size: 3rem;
    }

    .bonus-card.loyalty p {
        font-size: 1.1rem;
    }

    .bonus-card.loyalty .bonus-features li {
        font-size: 1rem;
        margin: 15px 0;
    }

    .bonus-card.loyalty .claim-bonus-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

