/* ============================================
   Book of Love - Main Styles
   Romance & Fortune Social Casino
   ============================================ */

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

:root {
    /* Color Palette */
    --primary-red: #8B0000;
    --secondary-crimson: #DC143C;
    --accent-pink: #FFB6C1;
    --dark-bg: #1A0505;
    --darker-bg: #0D0202;
    --text-white: #FFFFFF;
    --text-light: #F5F5F5;
    --gold: #FFD700;
    --gold-dark: #DAA520;
    
    /* Shadows & Effects */
    --shadow-glow: 0 0 20px rgba(220, 20, 60, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 12px 48px rgba(220, 20, 60, 0.5);
    
    /* Gradients */
    --gradient-romantic: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-crimson) 50%, var(--accent-pink) 100%);
    --gradient-dark: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

h1 {
    font-size: 3rem;
    text-shadow: 0 0 30px rgba(220, 20, 60, 0.6);
}

h2 {
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* ===== Container ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Header ===== */
.header {
    background: var(--darker-bg);
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--secondary-crimson);
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 60px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-badge {
    background: var(--secondary-crimson);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-glow);
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav a:hover {
    color: var(--gold);
    background: rgba(220, 20, 60, 0.2);
    transform: translateY(-2px);
}

.nav a.active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

/* ===== Hero Section ===== */
.hero {
    background: var(--gradient-dark);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🌹';
    position: absolute;
    font-size: 15rem;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
    }
    to {
        text-shadow: 0 0 40px rgba(220, 20, 60, 0.8);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-pink);
    margin-bottom: 2rem;
}

.hero-disclaimer {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 0.95rem;
    color: #CCC;
    line-height: 1.8;
}

/* ===== Game Card ===== */
.game-card-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.game-card {
    background: var(--gradient-dark);
    border: 3px solid var(--secondary-crimson);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.game-preview {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #2A0A0A 0%, #1A0505 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border: 2px solid var(--primary-red);
    position: relative;
    overflow: hidden;
}

.game-preview::after {
    content: '❤️';
    font-size: 6rem;
}

.game-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.game-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-romantic);
    color: var(--text-white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.6);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--darker-bg);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

/* ===== Sections ===== */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gold);
}

.section-dark {
    background: var(--darker-bg);
}

.section-accent {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(139, 0, 0, 0.2) 100%);
}

/* ===== Content Layout ===== */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.content-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* ===== Feature Cards ===== */
.feature-card {
    background: var(--gradient-dark);
    border: 2px solid var(--primary-red);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--accent-pink);
    margin-bottom: 1rem;
}

/* ===== How to Play Steps ===== */
.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    background: var(--gradient-dark);
    border-left: 5px solid var(--secondary-crimson);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.step:hover {
    border-left-color: var(--gold);
    transform: translateX(10px);
}

.step-number {
    background: var(--gradient-gold);
    color: var(--darker-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.step-content h3 {
    color: var(--gold);
    display: inline;
}

/* ===== Review Cards ===== */
.review-card {
    background: var(--gradient-dark);
    border: 2px solid var(--primary-red);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-romantic);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 3px solid var(--gold);
}

.review-info h4 {
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.9rem;
    color: #AAA;
}

.review-rating {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== Footer ===== */
.footer {
    background: var(--darker-bg);
    border-top: 2px solid var(--secondary-crimson);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.responsible-gaming-logos {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.rg-logo-link {
    display: block;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.rg-logo-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.rg-logo-img {
    display: block;
    height: 50px;
    width: auto;
    object-fit: contain;
    max-width: 120px;
}

.footer-disclaimer {
    background: rgba(139, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--secondary-crimson);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-red);
    color: #AAA;
}

/* ===== Modal Base ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--gradient-dark);
    border: 3px solid var(--secondary-crimson);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 60px rgba(220, 20, 60, 0.8);
    text-align: center;
    position: relative;
}

.modal-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.modal h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.modal p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--darker-bg);
    border-top: 3px solid var(--secondary-crimson);
    padding: 1.5rem;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(220, 20, 60, 0.4);
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .header-content {
        flex-direction: row;
        text-align: center;
    }
    
    .nav {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .nav a {
        display: block;
        width: 100%;
    }
    
    .content-two-col {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .modal {
        padding: 2rem 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .game-preview {
        height: 200px;
    }
}

