@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: black;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 100%;
    top: 0;
    background-color: #ffefea;
}

.header-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
    padding-left: 40px;
}

.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;
    padding-right: 40px;
}

.logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    text-align: center;
}

.menu-toggle {
    font-size: 28px;
    cursor: pointer;
    color: #900000;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 250px;
    height: 100vh;
    background-color: #900000;
    color: white;
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 1100;
}

.sidebar.active {
    left: 0;
}

.close-btn {
    position: absolute;
    padding: 10px;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 1200;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #ffb09c;
}

.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:hover {
    background-color: #ee2400;
}

.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;
}

.hero-banner {
    position: relative;
    margin-top: 10px;
    padding: 30px 50px;
    overflow: hidden;
    border-radius: 20px;
}

.carousel {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.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;
    border-radius: 20px;
}

.notice {
    width: 100%;
    overflow: hidden;
    background-color: #ee2400;
    position: fixed;
    z-index: 10;
}

.notice p {
    display: inline-block;
    white-space: nowrap;
    color: white;
    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%);
    }
}

.login-button {
    background-color: #900000;
    padding: 10px 40px;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.login-button:hover {
    background-color: #ee2400;
}

.background-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("/assets/images/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: -1;
}

.why-choose {
    padding: 40px;
}

.why-choose img {
    max-width: 280px;
    margin-top: 20px;
}

.why-choose .text-container {
    padding: 0 200px;
}

.why-choose .text-container h1{
    font-size: 36px;
    color: #fbd9d3;
}

.why-choose .text-container p{
    color: #ffefea;
}

.casino-intro {
    background-color: #ffefea;
    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: #900000;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background-color: #fff;
    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: #900000;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.casino-table-container {
    margin-top: 40px;
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.casino-table th,
.casino-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e6e6e6;
}

.casino-table th {
    background-color: #900000;
    color: #fff;
}

.play-btn {
    display: inline-block;
    background-color: #fbd9d3;
    color: #900000;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.play-btn:hover {
    background-color: #900000;
    color: #fbd9d3;
}

.bonus-section {
    padding: 60px 20px;
    text-align: center;
}

.bonus-section h2 {
    font-size: 30px;
    color: #EEEEEE;
    margin-bottom: 40px;
}

.game-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.game-box {
    border-radius: 10px;
    padding: 15px;
    width: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.game-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.description {
    background: linear-gradient(45deg, #ffefea, #ffb09c);
    padding: 50px;
    border-radius: 50px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.description p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 500;
}

.description ul {
    list-style: none;
    padding: 0;
}

.description li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.description li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0077b6;
    font-size: 20px;
    top: 2px;
}

.why-play {
    background-color: #ffefea;
    padding: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-play .logo {
    max-width: 180px;
}

.why-play h2 {
    color: #282828;
    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: #900000;
    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: #ffb09c;
    font-size: 22px;
    font-weight: 600;
}

.benefit-card p {
    margin: 0;
    color: #ffefea;
    font-size: 16px;
    line-height: 1.5;
}

.game-section {
    background: linear-gradient(45deg, #ffb09c, #ffefea);
    padding: 60px 20px;
    text-align: center;
}

.game-section h2 {
    font-size: 32px;
    color: #900000;
    margin-bottom: 40px;
}

.game-section p {
    font-size: 18px;
    color: #282828;
    padding: 0 200px;
    margin-bottom: 40px;
}

.join-section {
    padding: 60px 20px;
    text-align: center;
}

.join-section h2 {
    color: #EEEEEE;
    font-size: 32px;
    margin-bottom: 40px;
}

.join-section p {
    color: #fbd9d3;
    font-size: 18px;
    padding: 0 200px;
}

.join-section a {
    color: #EEEEEE;
    font-weight: bold;
    text-decoration: none;
}

.join-section a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #ffefea;
    color: #900000;
    padding: 20px 0;
    text-align: center;
}
  
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
  
.footer p {
    margin: 0;
    font-size: 16px;
}

.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #900000;
    color: #fff;
    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: 9999;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.chat-button:hover {
    background-color: #ee2400;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    header {
        padding: 10px;
    }

    .header-left {
        padding-left: 5px;
    }
    
    .header-right {
        padding-right: 5px;
    }

    .logo {
        max-width: 130px;
    }

    .login-button {
        padding: 10px 25px;
        color: white;
        border-radius: 30px;
        text-decoration: none;
        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 {
        font-size: 14px;
    }
  
    .casino-table th,
    .casino-table td {
        padding: 8px;
    }
  
    .play-btn {
        padding: 6px 16px;
    }

    .game-box {
        width: 35%;
        padding: 5px;
        max-width: 300px;
    }

    .bonus-section h2 {
        font-size: 24px;
    }

    .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: #0077b6;
        margin-bottom: 20px;
    }
    
    .game-section p {
        font-size: 16px;
        padding: 0px;
        line-height: 1.3;
    }
    
    .join-section {
        padding: 30px 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;
    } 
}


.highlight {
    color: #900000; /* 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: #000000;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.7); /* Soft glow effect */
    text-decoration: none;
}

.cta-button {
    background-color: #ff1614;
    color: white;
    padding: 12px 24px;
    display: inline-block; 
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(48, 147, 199, 0.8);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #cc1210;
    box-shadow: 0 0 25px rgba(255, 22, 20, 0.9), 0 0 30px rgba(48, 147, 199, 0.8);
    transform: scale(1.05);
}
  
.cta-button-alt {
    background-color: white;
    color: #900000;
    padding: 12px 24px;
    display: inline-block; 
    margin-top: 10px;
    border: 2px solid #900000;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(48, 147, 199, 0.4);
    transition: all 0.3s ease;
}

.cta-button-alt:hover {
    background-color: #fbd9d3;
    color: #ee2400;
    border-color: #ee2400;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 15px rgba(48, 147, 199, 0.7);
    transform: scale(1.05);
}

.games-section {
    padding: 60px 20px;
    text-align: center;
}

.games-section h2 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 40px;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.game-tile {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.game-tile:hover {
    transform: translateY(-6px);
}

.game-tile img {
    max-width: 100px;
    margin-bottom: 15px;
}

.game-tile h3 {
    font-size: 20px;
    margin: 10px 0;
    color: #900000;
}

.game-tile p {
    font-size: 14px;
    color: #555;
}

.rtp-bar {
    background: #eee;
    border-radius: 20px;
    overflow: hidden;
    margin: 10px 0;
    height: 10px;
    position: relative;
}

.rtp-bar-inner {
    height: 100%;
    background: linear-gradient(to right, #28a745, #90ee90);
    transition: width 0.3s ease;
}

.rtp-label {
    font-size: 12px;
    margin-top: 5px;
    color: #333;
}
