/* Snuggora - Cozy Social Casino Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-coral: #FF8C69;
    --light-coral: #FFA07A;
    --soft-peach: #FFE4C4;
    --cream: #FFF8DC;
    --warm-brown: #8B4513;
    --bg-cream: #FFFAF0;
    --bg-light: #FFF5EE;
    --text-dark: #333;
    --text-medium: #666;
    --text-light: #999;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.8;
}

.wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.full-wrapper {
    width: 100%;
    padding: 0 24px;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--primary-coral), var(--light-coral));
    padding: 1.3rem 0;
    box-shadow: 0 3px 15px rgba(255, 140, 105, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Comfortaa', cursive;
    font-size: 1.7rem;
    font-weight: 700;
    color: white;
}

.desktop-nav {
    display: flex;
    gap: 2.2rem;
}

.desktop-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--soft-peach);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background: var(--light-coral);
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
    flex-direction: column;
    padding: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu.active {
    display: flex;
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(139, 69, 19, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(6px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-box {
    background: linear-gradient(135deg, var(--bg-light), var(--cream));
    padding: 3.5rem;
    border-radius: 25px;
    text-align: center;
    max-width: 520px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--primary-coral);
}

.cozy-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.age-gate-box h2 {
    font-family: 'Comfortaa', cursive;
    font-size: 2.3rem;
    color: var(--primary-coral);
    margin-bottom: 1.2rem;
}

.age-gate-box p {
    color: var(--text-medium);
    margin-bottom: 0.9rem;
    font-size: 1.1rem;
}

.age-disclaimer {
    background: var(--soft-peach);
    padding: 1rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.age-disclaimer p {
    margin: 0;
    font-weight: 600;
    color: var(--warm-brown);
}

.age-gate-buttons {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-confirm, .btn-deny {
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}

.btn-confirm {
    background: var(--primary-coral);
    color: white;
}

.btn-confirm:hover {
    background: var(--light-coral);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 105, 0.4);
}

.btn-deny {
    background: #ccc;
    color: var(--text-dark);
}

.btn-deny:hover {
    background: #bbb;
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(135deg, var(--soft-peach), var(--cream));
    padding: 5.5rem 0;
    text-align: center;
}

.welcome-content h1 {
    font-family: 'Comfortaa', cursive;
    font-size: 3.8rem;
    color: var(--primary-coral);
    margin-bottom: 1rem;
}

.welcome-subtitle {
    font-size: 1.6rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.welcome-description {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 750px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.9;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-coral);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 18px rgba(255, 140, 105, 0.3);
}

.btn-primary:hover {
    background: var(--light-coral);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 140, 105, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--warm-brown);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 18px rgba(139, 69, 19, 0.25);
}

.btn-secondary:hover {
    background: #A0522D;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.35);
}

/* Section Titles */
.section-title {
    font-family: 'Comfortaa', cursive;
    font-size: 2.6rem;
    color: var(--primary-coral);
    margin-bottom: 2.5rem;
}

.section-title.centered {
    text-align: center;
}

/* Info Cards */
.info-cards {
    padding: 5rem 0;
    background: var(--bg-light);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.info-card {
    background: white;
    padding: 2.8rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-card.warm {
    border-top: 5px solid var(--primary-coral);
}

.info-card.cozy {
    border-top: 5px solid var(--light-coral);
}

.info-card.safe {
    border-top: 5px solid var(--warm-brown);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card-emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-family: 'Comfortaa', cursive;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.info-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--cream);
}

.about-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.check {
    color: var(--primary-coral);
    font-size: 1.4rem;
    font-weight: bold;
}

.visual-box {
    background: linear-gradient(135deg, var(--primary-coral), var(--light-coral));
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.cozy-graphic {
    position: relative;
    width: 200px;
    height: 200px;
}

.circle-1, .circle-2, .circle-3 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: white;
    top: 0;
    left: 0;
}

.circle-2 {
    width: 140px;
    height: 140px;
    background: var(--soft-peach);
    top: 30px;
    left: 30px;
}

.circle-3 {
    width: 80px;
    height: 80px;
    background: white;
    top: 60px;
    left: 60px;
}

.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
}

/* Game Section */
.game-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.game-intro {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

.game-wrapper {
    max-width: 950px;
    margin: 0 auto;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
}

.game-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Why Section */
.why-section {
    padding: 5rem 0;
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.why-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.why-item h3 {
    font-family: 'Comfortaa', cursive;
    color: var(--primary-coral);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.why-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* Play Page */
.play-header {
    background: linear-gradient(135deg, var(--primary-coral), var(--light-coral));
    padding: 4rem 0;
    text-align: center;
}

.play-header h1 {
    font-family: 'Comfortaa', cursive;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 0.8rem;
}

.play-header p {
    font-size: 1.3rem;
    color: var(--soft-peach);
}

.game-tips {
    padding: 3rem 0;
    background: var(--bg-light);
}

.tips-box {
    background: white;
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tips-box h3 {
    font-family: 'Comfortaa', cursive;
    color: var(--primary-coral);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.tip {
    padding: 1rem;
    background: var(--bg-cream);
    border-radius: 10px;
    border-left: 4px solid var(--primary-coral);
}

.fullscreen-game {
    padding: 3rem 0 5rem 0;
    background: var(--cream);
}

.full-game-container {
    max-width: 1500px;
    margin: 0 auto;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.fullscreen-iframe {
    width: 100%;
    height: 850px;
    border: none;
    border-radius: 12px;
}

/* Legal Page */
.legal-page {
    padding: 5rem 0;
    background: var(--bg-cream);
}

.legal-page h1 {
    font-family: 'Comfortaa', cursive;
    font-size: 3.5rem;
    color: var(--primary-coral);
    text-align: center;
    margin-bottom: 1rem;
}

.last-update {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 4rem;
}

.legal-section {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.legal-section h2 {
    font-family: 'Comfortaa', cursive;
    color: var(--primary-coral);
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
}

.legal-section p {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.legal-section ul {
    margin: 1.5rem 0;
    padding-left: 2.5rem;
}

.legal-section li {
    color: var(--text-medium);
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.important-reminder {
    background: linear-gradient(135deg, var(--primary-coral), var(--light-coral));
    padding: 2.5rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(255, 140, 105, 0.3);
}

.important-reminder h2 {
    font-family: 'Comfortaa', cursive;
    color: white;
    margin-bottom: 1.2rem;
}

.important-reminder p {
    font-size: 1.2rem;
    color: white;
}

/* Footer */
.site-footer {
    background: var(--warm-brown);
    padding: 4rem 0 1.5rem 0;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-block h4 {
    font-family: 'Comfortaa', cursive;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--soft-peach);
}

.footer-block p {
    line-height: 1.8;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-block ul {
    list-style: none;
}

.footer-block li {
    margin-bottom: 0.7rem;
}

.footer-block a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: var(--soft-peach);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .welcome-content h1 {
        font-size: 2.8rem;
    }
    
    .welcome-subtitle {
        font-size: 1.3rem;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
    }
    
    .game-iframe {
        height: 450px;
    }
    
    .fullscreen-iframe {
        height: 600px;
    }
    
    .age-gate-box {
        padding: 2.5rem;
        margin: 1.5rem;
    }
    
    .age-gate-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.4rem;
    }
    
    .welcome-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .game-iframe {
        height: 350px;
    }
    
    .fullscreen-iframe {
        height: 500px;
    }
}