/* Lumarethys Social Casino - Elegant Golden Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --dark-gold: #b8941e;
    --bronze: #cd7f32;
    --cream: #faf8f3;
    --dark: #2c1810;
    --brown: #4a3428;
}

body {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(to bottom right, #faf8f3, #f5e6d3, #e8d4b8);
    color: var(--dark);
    min-height: 100vh;
    line-height: 1.7;
}

header {
    background: linear-gradient(135deg, var(--dark), var(--brown));
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    font-style: italic;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.site-logo::before {
    content: "◆";
    margin-right: 0.5rem;
    color: var(--bronze);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

nav a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.content-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-section {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    padding: 5rem 4rem;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}

h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    font-style: italic;
}

h2 {
    font-size: 2.5rem;
    color: var(--dark-gold);
    margin: 3rem 0 1.5rem;
    font-weight: 700;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    font-weight: 400;
    position: relative;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--bronze));
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.card h3 {
    color: var(--dark-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card p {
    color: #5c4a3a;
    font-size: 1.05rem;
    line-height: 1.7;
    font-family: 'Montserrat', sans-serif;
}

.game-area {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    margin: 4rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 3px solid var(--gold);
}

.game-container {
    width: 100%;
    max-width: 100%;
    margin: 2rem auto 0;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--dark-gold);
}

.game-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.text-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 2.5rem 0;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.text-content p {
    margin-bottom: 1.3rem;
    color: #5c4a3a;
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
}

.text-content ul {
    list-style: none;
    margin: 2rem 0;
}

.text-content li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: #5c4a3a;
    font-family: 'Montserrat', sans-serif;
}

.text-content li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.2rem;
}

.notice-banner {
    background: linear-gradient(135deg, #fff8e7, #ffe8c5);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 6px solid var(--gold);
    margin: 3rem 0;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.notice-banner h3 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.notice-banner p {
    color: var(--brown);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
}

footer {
    background: linear-gradient(135deg, var(--dark), var(--brown));
    color: var(--cream);
    padding: 4rem 2rem;
    margin-top: 5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.footer-container {
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
}

.footer-container p {
    margin: 0.8rem 0;
    color: #d4c5b0;
    font-family: 'Montserrat', sans-serif;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, white, #faf8f3);
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    border: 4px solid var(--gold);
}

.age-modal h2 {
    color: var(--dark);
    margin-bottom: 2rem;
}

.age-modal p {
    color: var(--brown);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
}

.age-modal-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1.3rem 3rem;
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-accept {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    color: white;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.btn-decline {
    background: #e8d4b8;
    color: var(--dark);
    border: 2px solid var(--brown);
}

.btn-decline:hover {
    background: #d4c5b0;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: linear-gradient(135deg, var(--dark), var(--brown));
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 2rem;
    }
    
    nav a {
        font-size: 1.3rem;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    .hero-section {
        padding: 3.5rem 2rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper {
        padding: 2rem 1rem;
    }
    
    .age-modal-content {
        margin: 1rem;
        padding: 2.5rem 2rem;
    }
    
    .age-modal-buttons {
        flex-direction: column;
    }
}
