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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #B8860B;
    --secondary-color: #DAA520;
    --background-color: #FDFBF6;
    --text-color: #333333;
    --accent-color: #FFD700;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.nAv5X {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 251, 246, 0.95);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.lOg0X {
    height: 50px;
}

.hAm2B {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hAm2B span {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.hAm2B.aCt5X span:first-child {
    transform: rotate(45deg) translate(7px, 7px);
}

.hAm2B.aCt5X span:nth-child(2) {
    opacity: 0;
}

.hAm2B.aCt5X span:last-child {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mEn8U {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.mEn8U a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.mEn8U a:hover {
    color: var(--primary-color);
}

.hEr2X {
    padding: 8rem 5% 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90vh;
}

.hEr2X-left {
    flex: 1;
    padding-right: 3rem;
}

.hEr2X-right {
    flex: 1;
}

.hEr2X-img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.tIt3L {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.dEs5P {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.bTn7P {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 1rem;
    transition: transform 0.3s;
}

.bTn7P:hover {
    transform: translateY(-3px);
}

.bTn7P-primary {
    background: var(--primary-color);
    color: white;
}

.bTn7P-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

@media (max-width: 968px) {
    .hEr2X {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    .hEr2X-left {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .tIt3L {
        font-size: 2.5rem;
    }

    .bTn7P {
        margin: 0.5rem;
    }
}

@media (max-width: 768px) {
    .nAv5X {
        padding: 0.8rem 1rem;
    }

    .lOg0X {
        height: 35px;
    }

    .hAm2B {
        display: flex;
    }

    .mEn8U {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: var(--background-color);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .mEn8U.aCt5X {
        right: 0;
    }

    .mEn8U a {
        font-size: 1.2rem;
    }
}

/* Game Section */
.gAm3S {
    padding: 5rem 5%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gAm3S::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="none"/><circle cx="3" cy="3" r="1" fill="rgba(255,255,255,0.2)"/></svg>');
    opacity: 0.1;
}

.gAm3S-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    transform: perspective(1000px) rotateX(5deg);
    transition: transform 0.3s;
}

.gAm3S-card:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}

.gAm3S-img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gAm3S-card:hover .gAm3S-img {
    transform: translateY(-10px);
}

.gAm3S-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.gAm3S-slogan {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Why Choose Us */
.wHy3S {
    padding: 5rem 5%;
    background: var(--background-color);
}

.wHy3S-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.wHy3S-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.wHy3S-item:hover {
    transform: translateY(-5px);
}

/* About Us */
.aBoU5 {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #B8860B10, #DAA52010);
}

.aBoU5-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Responsible Gaming */
.rEs3P {
    padding: 5rem 5%;
    background: var(--background-color);
    text-align: center;
}

.rEs3P-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.rEs3P-item {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* FAQ Section */
.fAq2S {
    padding: 5rem 5%;
    background: linear-gradient(225deg, #B8860B10, #DAA52010);
}

.fAq2S-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.fAq2S-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.fAq2S-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.fAq2S-item.aCt5X .fAq2S-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

/* 18+ Disclaimer */
.dIs2C {
    padding: 3rem 5%;
    background: #333;
    color: white;
    text-align: center;
}

.sEc5T {
    text-align: center;
    margin-bottom: 3rem;
}

.sEc5T h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sEc5T p {
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .aBoU5-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer Styles */
.fOt2R {
    background: #1A1A1A;
    color: #fff;
    padding: 4rem 5% 2rem;
}

.fOt2R-logo {
    text-align: center;
    margin-bottom: 3rem;
}

.fOt2R-logo img {
    height: 60px;
}

.fOt2R-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.fOt2R-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.fOt2R-links a:hover {
    color: var(--primary-color);
}

.fOt2R-disclaimer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    color: #999;
}

.fOt2R-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.fOt2R-images img {
    height: 40px;
    transition: opacity 0.3s;
}

.fOt2R-images img:hover {
    opacity: 0.8;
}

.fOt2R-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #666;
}

@media (max-width: 768px) {
    .fOt2R-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .fOt2R-images {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .tIt3L {
        font-size: 2rem;
    }

    .dEs5P {
        font-size: 1rem;
    }

    .bTn7P {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .lOg0X {
        height: 30px;
    }

    .sEc5T h2 {
        font-size: 2rem;
    }

    .gAm3S-title {
        font-size: 1.8rem;
    }

    .fOt2R-logo img {
        height: 45px;
    }
}

/* Age Verification Popup */
.aGe3V {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.aGe3V-content {
    background: var(--background-color);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--primary-color);
}

.aGe3V-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.aGe3V-text {
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

.aGe3V-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.aGe3V-btn-yes {
    background: var(--primary-color);
    color: white;
}

.aGe3V-btn-yes:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.aGe3V-btn-no {
    background: #666;
    color: white;
}

.aGe3V-btn-no:hover {
    background: #555;
    transform: translateY(-2px);
}

.rEs7T {
    background: var(--background-color);
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid #dc3545;
}

.rEs7T-title {
    color: #dc3545;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.rEs7T-text {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.1rem;
}

@media (max-width: 480px) {
    .aGe3V-content, .rEs7T {
        margin: 1rem;
        padding: 2rem;
    }

    .aGe3V-title, .rEs7T-title {
        font-size: 1.5rem;
    }

    .aGe3V-buttons {
        flex-direction: column;
    }

    .aGe3V-btn {
        padding: 0.8rem 1.5rem;
    }
}

/* Cookie Consent Banner */
.cOo2K {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    backdrop-filter: blur(10px);
    border-top: 3px solid var(--primary-color);
}

.cOo2K-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cOo2K-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cOo2K-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.cOo2K-text a:hover {
    text-decoration: underline;
}

.cOo2K-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cOo2K-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cOo2K-btn-accept {
    background: var(--primary-color);
    color: white;
}

.cOo2K-btn-accept:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.cOo2K-btn-decline {
    background: transparent;
    color: white;
    border: 2px solid #666;
}

.cOo2K-btn-decline:hover {
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cOo2K-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cOo2K-buttons {
        width: 100%;
        justify-content: center;
    }

    .cOo2K-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .cOo2K {
        padding: 1rem;
    }

    .cOo2K-buttons {
        flex-direction: column;
    }

    .cOo2K-btn {
        width: 100%;
    }
}