@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/nel-background.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: -1;
}

.notice {
    width: 100%;
    overflow: hidden;
    background-color: orange;
    position: fixed;
    top: 0;
    z-index: 10;
}

.notice p {
    display: inline-block;
    white-space: nowrap;
    color: purple;
    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: #fefefe;
}

.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: black;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 250px;
    height: 100vh;
    background-color: #fefefe;
    color: black;
    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: black;
    cursor: pointer;
    z-index: 1200;
    transition: color 0.3s;
}

.close-btn:hover {
    color: red;
}

.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: black;
    text-decoration: none;
    display: block;
}

.sidebar li a i {
    margin-right: 8px;
    font-size: 18px;
}

.sidebar li:hover {
    background-color: #8e8e8e;
}

.auth-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-top: 30px;
}

.auth-login-btn {
    border: black solid 1px;
    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 {
    background: linear-gradient(45deg, #ffd700, #feb728);
    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-register-btn:hover {
    background: linear-gradient(45deg, #feb728, #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;
}

.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,
.hero-container .register-button {
    margin-bottom: 10px;
    min-width: 400px;
    padding: 20px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: black;
    background-color: #feb728;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-container .register-button {
    background-color: #ffd700;
    box-shadow:
        0 0 10px rgba(255, 215, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-container .register-button:hover {
    background-color: #ffea00;
    box-shadow:
        0 0 15px rgba(255, 215, 0, 0.7),
        0 0 30px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

.hero-container .login-button:hover{
    background-color: #ffd700;
    box-shadow:
    0 0 15px rgba(255, 215, 0, 0.7),
    0 0 30px rgba(255, 215, 0, 0.5);
transform: scale(1.05);
}

.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, #ffe761, #ff9e00);
    padding: 12px 40px;
    color: black;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    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: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    outline: none;
}

.register-btn:hover {
    transform: scale(1.1);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 0 15px #ffae00,
        0 0 30px #ffae00;
    background: linear-gradient(45deg, #ff9e00, #ffe761);
}


.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/Screenshot\ 2025-04-22\ 140734.png");
    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: #ffd700;
}

.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: rgba(0, 0, 0, 0.4);
    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: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 30px;
    align-items: center;
}

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

.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-color: black;
    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: #ffd700;
    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: rgba(0, 0, 0, 0.4);
    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 {
    background-color: black;
    padding: 50px;
    text-align: center;
}

.join-section h1 {
    font-size: 32px;
    color: #feb728;
    margin-bottom: 40px;
}

.join-section p {
    font-size: 18px;
    padding: 0 120px;
    margin-bottom: 40px;
}

.join-section p a{
    font-size: 18px;
    text-decoration: none;
    color: #ffd700;
    margin-bottom: 40px;
    font-weight: bold;
}

.join-section p a:hover{
    text-decoration: underline;
}

.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: black;
    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;
}

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

.bonus-faq {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
}

.bonus-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    position: relative;
    background: rgba(0, 0, 0, 0.4);
}

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

.faq-question h3 {
    color: #ffd700;
    margin: 0;
    font-size: 1.2rem;
    text-align: left;
    transition: color 0.3s ease;
    padding-right: 2rem;
}

.faq-question:hover h3 {
    color: #ffea00;
}

.faq-toggle {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    padding: 0.5rem;
}

.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.5s ease, opacity 0.3s ease, transform 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.5s ease, opacity 0.3s ease, transform 0.3s ease;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: #fff;
    line-height: 1.6;
    text-align: left;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-answer p {
    opacity: 1;
}

/* Add a subtle animation for the FAQ items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: calc(var(--item-index) * 0.1s);
    opacity: 0;
}

/* Add a focus state for accessibility */
.faq-question:focus {
    outline: 2px solid #ffd700;
    outline-offset: -2px;
}

/* Add a subtle hover effect for the toggle */
.faq-toggle:hover {
    color: #ffea00;
    transform: scale(1.1);
    background: rgba(255, 215, 0, 0.2);
}

/* Add a subtle transition for the answer text */
.faq-answer p {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Add a subtle shadow effect when expanded */
.faq-item.active {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@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;
    }

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

    .hero-banner {
        width: 100%;
        margin-top: 20px;            /* Space above the banner */
        border-radius: 20px;         /* Maintain rounded edges */
    }

    .hero-container .auth-buttons {
        width: 100%;
        flex-direction: column;       /* Stack buttons vertically */
        align-items: center;          /* Center buttons horizontally */
        margin-top: 20px;            /* Space above buttons */
        margin-right: 20px;
        padding: 10px;
    }

    .hero-container .login-button {
        margin-bottom: 0px;
        font-size: 16px;
        min-width: 300px;
        padding: 10px 20px;
        border-radius: 50px;
    }
    .hero-container .register-button{
        margin-bottom: 0px;
        font-size: 16px;
        min-width: 300px;
        padding: 10px 20px;
        border-radius: 50px;
    }

    .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 0;
    }

    .detail-card {
        margin: 0 20px;
    }

    .detail-card h2 {
        font-size: 20px;
    }

    .detail-card .detail-row span {
        font-size: 14px;
    }

    .why-choose {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

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

    .why-choose h3 {
        padding-right: 0px;
        font-size: 16px;
    }

    .why-choose-left {
        text-align: center;
    }

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

    .benefit-card h4 {
        font-size: 18px;
    }
    
    .benefit-card p {
        margin: 0;
        color: #b0b0b0;
        font-size: 12px;
        line-height: 1.5;
    }

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

    .games-section img {
        max-width: 100px;
    }
  
    .section-title {
        font-size: 24px;
    }
  
    .games-grid {
        grid-template-columns: 1fr;
    }
  
    .game-card {
        padding: 20px;
    }
  
    .game-title {
        font-size: 18px;
    }
  
    .game-description {
        font-size: 14px;
    }

    .join-section {
        padding: 80px 20px;
        text-align: center;
    }
    
    .join-section h1 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .join-section p {
        font-size: 16px;
        padding: 10px;
        line-height: 1.3;
    }

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

    .chat-button {
        bottom: 110px;
    }

    .register-btn {
        padding: 10px 20px;
        font-size: 14px;
        bottom: 50px;
        right: 40px;
    }

    .bonus-faq {
        padding: 2rem 0;
    }

    .faq-container {
        padding: 0 1rem;
    }

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

    .faq-answer p {
        font-size: 0.9rem;
        padding: 1rem;
    }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #9333ea 0%, #a855f7 100%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 16px 40px;
    border: none;
    border-radius: 32px;
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.15);
    text-decoration: none;
    text-align: center;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    margin-top: 24px;
    letter-spacing: 0.5px;
}

.cta-button:hover, .cta-button:focus {
    background: linear-gradient(90deg, #a855f7 0%, #9333ea 100%);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.25);
    text-decoration: none;
    outline: none;
}
