@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');

body {
    margin: 0;
    padding: 0;
    font-family: Ubuntu;
    text-align: center;
    padding-top: 80px;
    color: #E4E4E4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.background-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("/assets/images/spin-background3-pica.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: -1;
}

.notice {
    width: 100%;
    overflow: hidden;
    background-color: yellow;
    position: fixed;
    top: 0;
    z-index: 10;
}

.notice p {
    display: inline-block;
    white-space: nowrap;
    color: black;
    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: center;
    padding: 15px 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    top: 45px;
    border-radius: 150px;
    background-color: black;
}

.header-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
}

.logo {
    max-width: 120px;
    width: 100%;
    height: auto;
    text-align: center;
}

.menu-toggle {
    font-size: 28px;
    cursor: pointer;
    color: white;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 250px;
    height: 100vh;
    background-color: black;
    color: white;
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 999999;
}

.sidebar.active {
    left: 0;
}

.sidebar-logo {
    max-width: 120px;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 20px;
}

.close-btn {
    position: absolute;
    padding: 10px;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #e4e4e4;
    cursor: pointer;
    z-index: 1200;
    transition: color 0.3s;
}

.close-btn:hover {
    color: yellow;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar li {
    margin: 10px 0;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    transition: background-color 0.3s;
}

.sidebar li a {
    color: white;
    text-decoration: none;
    display: block;
}

.sidebar li a i {
    margin-right: 8px;
    font-size: 18px;
}

.sidebar li:hover {
    background-color: #444;
}

.auth-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-top: 30px;
}

.auth-login-btn {
    border: #e4e4e4 solid 1px;
    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;
}

.auth-register-btn {
    background: linear-gradient(45deg, #ffd700, yellow);
    padding: 10px 20px;
    color: black;
    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;
}

.auth-login-btn:hover {
    background-color: #E4E4E4;
    color: black;
}

.auth-register-btn:hover {
    background: linear-gradient(45deg, yellow, #ffd700);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 998;
}

.sidebar-overlay.active {
    display: block;
}

.login-button {
    background-color: yellow;
    padding: 10px 40px;
    color: black;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.login-button:hover {
    background-color: #d7d7d7;
}

.why-choose {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-top: 70px;
    padding: 40px;
}

.why-choose h1 {
    font-size: 2.5rem;
    color: yellow;
}

.why-choose img {
    max-width: 250px;
    margin-top: 20px;
}

.why-choose .text-container h1 {
    color: yellow;
}

.why-choose .text-container {
    padding: 0 200px;
    color: #e4e4e4;
}

.casino-intro {
    padding: 60px 0;
  }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.intro-header .logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.intro-header h2 {
    font-size: 32px;
    color: yellow;
}

.container p {
    color: #e4e4e4;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
}

.feature-icon {
    font-size: 40px;
    color: #ffd700;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    color: #e4e4e4;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 16px;
    color: #e4e4e4;
    line-height: 1.6;
}

.casino-table-container {
    width: 100%;
    overflow-x: auto;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.casino-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
}

.casino-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.level-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.level-badge:hover {
    transform: translateY(-2px);
}

.level-badge i {
    font-size: 1.8rem;
}

.level-badge span {
    font-size: 1.1rem;
    font-weight: 700;
}

.bronze {
    background: linear-gradient(135deg, #cd7f32, #8b4513);
    color: #fff;
}

.silver {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: #fff;
}

.gold {
    background: linear-gradient(135deg, #ffd700, #daa520);
    color: #fff;
}

.platinum {
    background: linear-gradient(135deg, #e5e4e2, #b4b4b4);
    color: #fff;
}

.diamond {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #fff;
}

.casino-table td {
    padding: 1.2rem 1rem;
    text-align: center;
    font-size: 1.1rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.casino-table td:first-child {
    text-align: left;
    padding-left: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    font-size: 1.4rem;
    color: #ffd700;
    width: 24px;
    text-align: center;
}

.check-mark {
    color: #00ff00;
    font-size: 1.4rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.dash-mark {
    color: #ff4444;
    font-size: 1.4rem;
    font-weight: bold;
}

.rate-mark {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: bold;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.casino-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.casino-table tr:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

.table-legend {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    color: #fff;
    font-size: 1rem;
}

.play-btn {
    display: inline-block;
    background-color: yellow;
    color: black;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.play-btn:hover {
    background-color: #ffd700;
}

.bonus-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/spin-bonus5.jpeg') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.bonus-section h2 {
    text-align: center;
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
}

.game-categories {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    position: relative;
    z-index: 1;
}

.game-categories::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.game-box {
    flex: 0 0 200px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.1);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.game-box:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.game-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.game-box:hover img {
    transform: scale(1.1);
}

.game-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-box:hover::after {
    opacity: 1;
}

.description {
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
    padding: 30px;
    background: linear-gradient(135deg, #2f2f1e, #3d3d2a);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.description p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #f0f0f0;
    font-weight: 500;
    line-height: 1.7;
}

.description ul {
    list-style: none;
    padding: 0;
}

.description li {
    margin-bottom: 18px;
    font-size: 17px;
    color: #e0e0e0;
    line-height: 1.8;
    position: relative;
    padding-left: 32px;
    transition: all 0.3s ease;
}

.description li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: yellow;
    font-size: 18px;
    top: 0;
    transition: transform 0.3s ease;
}

.description li:hover::before {
    transform: scale(1.3);
    color: #f8ff3a;
}

.description li:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding-left: 36px;
}


.why-play {
    padding: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-play .logo {
    max-width: 150px;
}

.why-play h2 {
    color: #e4e4e4;
    font-size: 32px;
    margin-bottom: 40px;
}

.why-play-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1400px;
    width: 100%;
}

.benefit-card {
    background-color: #282828;
    padding: 25px;
    border-radius: 12px;
    color: #333;
    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: #d1d1d1;
    font-size: 22px;
    font-weight: 600;
}

.benefit-card p {
    margin: 0;
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.5;
}

.game-section {
    background-color: black;
    padding: 60px 20px;
    text-align: center;
}

.game-section h2 {
    font-size: 32px;
    color: yellow;
    margin-bottom: 40px;
}

.game-section p {
    font-size: 18px;
    padding: 0 200px;
    margin-bottom: 40px;
}

.join-section {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 60px 20px;
    text-align: center;
}

.join-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: yellow;
}

.join-section p {
    font-size: 18px;
    padding: 0 200px;
}

.join-section p a{
    text-decoration: none;
    color: #ffd700;
}

.join-section p a:hover{
    text-decoration: underline;
}

.footer {
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
  
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
  
.footer p {
    margin: 0;
    font-size: 16px;
}

.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(45deg, #ffd700, #ff9e00);
    padding: 15px 45px;
    color: black;
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.2),
        0 0 10px #ffae00,
        0 0 20px #ffae00;
    transition: all 0.3s ease;
    outline: none;
    letter-spacing: 1px;
}

.register-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 15px #ffae00,
        0 0 30px #ffae00;
    background: linear-gradient(45deg, #ff9e00, #ffd700);
    letter-spacing: 2px;
}

.register-btn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-glow {
    0% {
        box-shadow: 
            0 5px 15px rgba(0, 0, 0, 0.2),
            0 0 10px #ffae00,
            0 0 20px #ffae00;
    }
    50% {
        box-shadow: 
            0 5px 20px rgba(0, 0, 0, 0.3),
            0 0 15px #ffae00,
            0 0 30px #ffae00;
    }
    100% {
        box-shadow: 
            0 5px 15px rgba(0, 0, 0, 0.2),
            0 0 10px #ffae00,
            0 0 20px #ffae00;
    }
}

.register-btn {
    animation: pulse-glow 2s infinite;
}

.chat-button {
    position: fixed;
    bottom: 100px;
    right: 40px;
    background: linear-gradient(45deg, #ffd700, #ff9e00);
    color: black;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 0 10px #ffae00;
    z-index: 999;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-button:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(45deg, #ff9e00, #ffd700);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 0 15px #ffae00;
    letter-spacing: 2px;
}

.chat-button:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    header {
        padding: 10px;
    }

    .header-left {
        padding-left: 5px;
    }
    
    .header-right {
        padding-right: 5px;
    }

    .logo {
        max-width: 100px;
    }

    .login-button {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 500;
    }

    .sidebar {
        left: -280px;
        width: 200px;
    }

    .why-choose .logo {
        max-width: 150px;
    }

    .why-choose .text-container h2 {
        font-size: 20px;
    }

    .why-choose .text-container p {
        font-size: 16px;
        line-height: 1.4;
    }

    .why-choose .text-container {
        padding: 0px;
    }

    .casino-intro {
        padding: 40px 0;
    }
  
    .intro-header h2 {
        font-size: 22px;
    }
  
    .feature-grid {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
  
    .feature-item {
        padding: 20px;
    }
  
    .feature-icon {
        font-size: 32px;
        margin-bottom: 15px;
    }
  
    .feature-item h3 {
        font-size: 18px;
    }
  
    .feature-item p {
        font-size: 14px;
    }
  
    .casino-table-container {
        padding: 0 10px;
        margin: 20px 0;
    }
  
    .casino-table th {
        padding: 1rem 0.5rem;
        font-size: 1rem;
    }
  
    .casino-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
  
    .casino-table td:first-child,
    .casino-table th:first-child {
        padding-left: 10px;
    }
  
    .play-btn {
        padding: 6px 16px;
    }

    .game-box {
        flex: 0 0 150px;
        height: 150px;
    }

    .bonus-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .description p, .description li {
        font-size: 14px;
    }

    .why-play {
        padding: 20px;
    }
    
    .why-play .logo {
        max-width: 120px;
    }

    .why-play-benefits {
        grid-template-columns: 1fr;
    }
    
    .why-play h2 {
        font-size: 24px;
    }

    .benefit-card h4 {
        font-size: 18px;
    }
    
    .benefit-card p {
        margin: 0;
        color: #b0b0b0;
        font-size: 14px;
        line-height: 1.5;
    }

    .game-section {
        padding: 30px 20px;
    }
    
    .game-section h2 {
        font-size: 24px;
        color: yellow;
        margin-bottom: 20px;
    }
    
    .game-section p {
        font-size: 16px;
        padding: 0px;
        line-height: 1.3;
    }
    
    .join-section {
        padding: 120px 20px;
        text-align: center;
    }
    
    .join-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .join-section p {
        font-size: 16px;
        padding: 0px;
        line-height: 1.3;
    }
    
    .footer {
        padding: 10px 0;
    }
      
    .footer p {
        font-size: 14px;
    } 

    .chat-button {
        bottom: 110px;
    }

    .register-btn {
        padding: 15px 25px;
        font-size: 16px;
        bottom: 50px;
        right: 40px;
    }

    .table-legend {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px;
    }

    .level-badge i {
        font-size: 1.4rem;
    }

    .level-badge span {
        font-size: 0.9rem;
    }

    .benefit-icon {
        font-size: 1.2rem;
        width: 20px;
    }

    .check-mark, .dash-mark {
        font-size: 1.2rem;
    }

    .rate-mark {
        font-size: 1rem;
        padding: 0.2rem 0.4rem;
    }
}

.highlight {
    color: yellow; /* Gold-like highlight */
    background-color: transparent;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.highlight:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 251, 0, 0.7); /* Soft glow effect */
    text-decoration: none;
}

.cta-register-btn {
    display: inline-block;
    margin-top: 20px;
    background: linear-gradient(45deg, #ffd700, #ff9e00);
    color: black;
    padding: 18px 45px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 0 10px #ffae00,
        0 0 20px #ffae00;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-register-btn:hover {
    background: linear-gradient(45deg, #ff9e00, #ffd700);
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 6px 25px rgba(0, 0, 0, 0.3),
        0 0 15px #ffae00,
        0 0 30px #ffae00;
    letter-spacing: 2px;
}

.cta-register-btn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-highlight {
    color: #ffd700;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cta-highlight:hover {
    color: #ffffff;
    text-decoration: none;
}

.faq-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/spin-bonus5.jpeg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-section .section-title {
    text-align: center;
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.faq-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.faq-question {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
}

.faq-question i.bi-question-circle {
    color: #ffd700;
    font-size: 1.5rem;
}

.faq-question h4 {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
    flex: 1;
}

.faq-question .bi-chevron-down {
    color: #ffd700;
    transition: transform 0.3s ease;
}

.faq-item.active .bi-chevron-down {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #ccc;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
    }

    .faq-section .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-question h4 {
        font-size: 1rem;
    }
}

/* Enhanced VIP Page Styles */
.vip-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    position: relative;
    overflow: hidden;
}

.vip-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/spin-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.vip-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vip-header {
    text-align: center;
    margin-bottom: 3rem;
}

.vip-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ffd700, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.vip-header p {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.vip-level-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.vip-level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffa500);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vip-level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.vip-level-card:hover::before {
    opacity: 1;
}

.level-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.level-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.level-requirements {
    font-size: 1.1rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.level-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.level-benefits li {
    color: #fff;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.level-benefits li i {
    color: #ffd700;
    font-size: 1.2rem;
}

.vip-table-container {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 4rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.vip-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
}

.vip-table th {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.vip-table td {
    padding: 1.2rem;
    color: #fff;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.vip-table tr:hover td {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.02);
}

.vip-table td:first-child {
    font-weight: 600;
    color: #ffd700;
}

.vip-table td:not(:first-child) {
    text-align: center;
}

.vip-table .check {
    color: #00ff00;
    font-size: 1.4rem;
    filter: drop-shadow(0 0 5px rgba(0, 255, 0, 0.5));
}

.vip-table .dash {
    color: #ff4444;
    font-size: 1.4rem;
    opacity: 0.7;
}

.vip-cta {
    text-align: center;
    margin-top: 4rem;
}

.vip-cta h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.vip-cta p {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vip-cta .cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    background: linear-gradient(45deg, #ffd700, #ffa500);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.vip-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
}

.vip-cta .cta-button:active {
    transform: translateY(1px);
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5),
                     0 0 20px rgba(255, 215, 0, 0.3),
                     0 0 30px rgba(255, 215, 0, 0.2);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.7),
                     0 0 30px rgba(255, 215, 0, 0.5),
                     0 0 40px rgba(255, 215, 0, 0.3);
    }
}

@media (max-width: 768px) {
    .vip-header h1 {
        font-size: 2.5rem;
    }

    .vip-level-card {
        padding: 1.5rem;
    }

    .level-name {
        font-size: 1.5rem;
    }

    .vip-table th,
    .vip-table td {
        padding: 1rem;
        font-size: 1rem;
    }

    .vip-cta h2 {
        font-size: 2rem;
    }

    .vip-cta .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

.benefits-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/spin-bonus5.jpeg') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefits-section .section-title {
    text-align: center;
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.benefit-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.benefit-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.benefit-category:hover::before {
    opacity: 1;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.category-icon i {
    font-size: 2rem;
    color: #ffd700;
}

.benefit-category:hover .category-icon {
    transform: scale(1.1);
    background: rgba(255, 215, 0, 0.2);
}

.benefit-category h3 {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    color: #ccc;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.benefit-list li:hover {
    color: #fff;
    transform: translateX(5px);
}

.benefit-list li i {
    color: #ffd700;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 40px 15px;
    }

    .benefits-section .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-category {
        padding: 20px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-icon i {
        font-size: 1.5rem;
    }

    .benefit-category h3 {
        font-size: 1.3rem;
    }

    .benefit-list li {
        font-size: 1rem;
    }
}