/* Crimsonor - Premium Social Casino Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --crimson-primary: #DC143C;
    --crimson-dark: #8B0000;
    --gold: #FFD700;
    --gold-dark: #B8860B;
    --bg-dark: #1a0a0f;
    --bg-darker: #0d0507;
    --text-light: #f5f5f5;
    --text-muted: #b8b8b8;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(90deg, var(--bg-darker) 0%, var(--crimson-dark) 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--gold);
}

nav a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background: var(--crimson-dark);
    padding: 1rem;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.mobile-menu a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-menu.active {
    display: flex;
}

/* Age Verification Popup */
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-popup.hidden {
    display: none;
}

.age-popup-content {
    background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--bg-dark) 100%);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.5);
}

.age-popup-content h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.age-popup-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.age-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-yes, .btn-no {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-yes {
    background: var(--gold);
    color: var(--bg-darker);
}

.btn-yes:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-no {
    background: #666;
    color: white;
}

.btn-no:hover {
    background: #555;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson-primary) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FFD700" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    position: relative;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
    position: relative;
}

/* Notices Section */
.notices {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.notice-card {
    background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--bg-darker) 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--gold);
    text-align: center;
    transition: all 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: var(--bg-darker);
}

.about h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--gold);
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-dark);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.feature-check {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Game Section */
.game-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.game-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.game-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-darker);
    padding: 1rem;
    border-radius: 15px;
    border: 3px solid var(--crimson-primary);
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.3);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

.game-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gold);
    color: var(--bg-darker);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Why Choose Section */
.why-choose {
    padding: 4rem 0;
    background: var(--bg-darker);
}

.why-choose h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--gold);
    margin-bottom: 3rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.reason-card {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid var(--crimson-primary);
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
    border-top-color: var(--gold);
}

.reason-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Play Page Styles */
.play-hero {
    background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson-primary) 100%);
    padding: 3rem 0;
    text-align: center;
}

.play-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.play-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.game-instructions {
    padding: 2rem 0;
    background: var(--bg-dark);
}

.instructions-box {
    background: var(--bg-darker);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--gold);
}

.instructions-box h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 1rem;
}

.instructions-box ul {
    list-style: none;
    padding-left: 0;
}

.instructions-box li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.instructions-box li:last-child {
    border-bottom: none;
}

.play-section {
    padding: 2rem 0 4rem 0;
    background: var(--bg-darker);
}

.game-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--bg-dark);
    padding: 1rem;
    border-radius: 15px;
    border: 3px solid var(--crimson-primary);
}

.game-frame-full {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 10px;
}

/* Content Pages */
.content-page {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.content-page h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-style: italic;
}

.content-section {
    background: var(--bg-darker);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--crimson-primary);
}

.content-section h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.content-section h3 {
    color: var(--gold);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
}

.content-section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-section li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.final-reminder {
    background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson-primary) 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 3px solid var(--gold);
}

.final-reminder h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 1rem;
}

.final-reminder p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background: var(--bg-darker);
    padding: 3rem 0 1rem 0;
    border-top: 3px solid var(--crimson-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .game-frame {
        height: 400px;
    }
    
    .game-frame-full {
        height: 500px;
    }
    
    .age-popup-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .age-popup-content h2 {
        font-size: 1.5rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .content-page h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .notice-grid {
        grid-template-columns: 1fr;
    }
    
    .game-frame {
        height: 300px;
    }
}