@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Open+Sans:wght@300;400;600;700&display=swap');

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

:root {
    --primary: #DC2626;
    --secondary: #F59E0B;
    --accent: #EF4444;
    --gold: #FCD34D;
    --dark: #1C1917;
    --light: #FAFAF9;
    --cream: #FEF3C7;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.8;
}

header {
    background: linear-gradient(135deg, var(--dark) 0%, #292524 100%);
    padding: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.site-title {
    text-decoration: none;
}

.site-name {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    letter-spacing: 1px;
}

.site-slogan {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 300;
    margin-top: 0.25rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 0;
}

.navigation a {
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.navigation a:hover {
    border-bottom-color: var(--secondary);
    background: rgba(245, 158, 11, 0.1);
}

.menu-btn {
    display: none;
    background: var(--primary);
    border: none;
    color: white;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
}

.content-area {
    padding: 3rem 0;
}

.page-header {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--cream), var(--light));
    margin-bottom: 3rem;
    border-left: 8px solid var(--primary);
    border-right: 8px solid var(--secondary);
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 600;
}

.article {
    background: white;
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary);
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-title:before {
    content: "◆ ";
    color: var(--secondary);
}

.highlight-box {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    border-left: 6px solid var(--secondary);
    border-right: 6px solid var(--primary);
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.highlight-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.highlight-box ul {
    list-style: none;
    margin: 0;
}

.highlight-box li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-weight: 600;
}

.highlight-box li:before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 1.2rem;
}

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

.column-box {
    background: white;
    border: 3px solid var(--dark);
    padding: 2rem;
    position: relative;
}

.column-box:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid var(--secondary);
    z-index: -1;
}

.column-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.game-section {
    background: var(--dark);
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 8px;
}

.game-frame {
    background: #000;
    border: 8px solid var(--gold);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.game-frame iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.site-footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-grid {
    text-align: center;
}

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

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.verification-modal {
    position: fixed;
    inset: 0;
    background: rgba(28, 25, 23, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.verification-box {
    background: white;
    border: 8px solid var(--primary);
    padding: 3rem;
    max-width: 550px;
    text-align: center;
    position: relative;
}

.verification-box:before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 8px solid var(--secondary);
    z-index: -1;
}

.verification-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.verification-box p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.verification-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.action-btn {
    padding: 1.2rem 2.5rem;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.action-btn-yes {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: 3px solid var(--dark);
}

.action-btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.action-btn-no {
    background: white;
    color: var(--dark);
    border: 3px solid var(--dark);
}

.action-btn-no:hover {
    background: var(--dark);
    color: white;
}

@media (max-width: 968px) {
    .menu-btn {
        display: block;
    }
    
    .navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--dark);
        transition: left 0.3s;
        padding: 2rem 0;
        z-index: 1000;
    }
    
    .navigation.active {
        left: 0;
    }
    
    .navigation ul {
        flex-direction: column;
    }
    
    .navigation a {
        border-bottom: 1px solid rgba(245, 158, 11, 0.2);
        border-left: 4px solid transparent;
    }
    
    .navigation a:hover {
        border-left-color: var(--secondary);
        border-bottom-color: rgba(245, 158, 11, 0.2);
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .site-name {
        font-size: 2rem;
    }
    
    .article {
        padding: 2rem;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .columns {
        grid-template-columns: 1fr;
    }
    
    .game-frame iframe {
        height: 450px;
    }
    
    .verification-box {
        margin: 1rem;
        padding: 2rem;
    }
    
    .verification-box h2 {
        font-size: 2rem;
    }
    
    .verification-btns {
        flex-direction: column;
    }
}
