@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emerald: #047857;
    --dark-green: #064e3b;
    --gold: #d4af37;
    --light-gold: #f4e5b0;
    --charcoal: #1f2937;
    --off-white: #fdfdf8;
    --light-gray: #e5e7eb;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--charcoal);
    background-color: var(--off-white);
    line-height: 1.8;
}

.top-bar {
    background: linear-gradient(to right, var(--dark-green), var(--emerald));
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.top-bar-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--off-white);
}

.logo-symbol {
    width: 55px;
    height: 55px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-green);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.4);
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon div {
    width: 32px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: 0.3s;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
}

.main-nav a {
    color: var(--off-white);
    text-decoration: none;
    padding: 0.7rem 1.3rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    text-transform: capitalize;
}

.main-nav a:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.content-wrapper {
    padding-top: 100px;
}

.banner {
    background: linear-gradient(135deg, var(--emerald), var(--dark-green));
    padding: 6rem 2rem;
    text-align: center;
    color: var(--off-white);
    border-bottom: 4px solid var(--gold);
}

.banner h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.banner .tagline {
    font-size: 1.4rem;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 2;
}

.main-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.highlight-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--gold);
    transition: all 0.3s;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.highlight-card .icon {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    display: block;
}

.highlight-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--emerald);
    font-weight: 700;
}

.highlight-card p {
    color: #6b7280;
    line-height: 1.8;
}

.game-area {
    background: var(--charcoal);
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.game-area h2 {
    text-align: center;
    color: var(--light-gold);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.game-box {
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.game-frame {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.article-section {
    padding: 4rem 0;
}

.article-section h2 {
    font-size: 2.8rem;
    color: var(--emerald);
    margin-bottom: 2rem;
    font-weight: 700;
}

.article-section h3 {
    font-size: 2rem;
    color: var(--dark-green);
    margin: 2.5rem 0 1.2rem;
    font-weight: 600;
}

.article-section p {
    color: #4b5563;
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
}

.article-section ul {
    margin: 1.5rem 0 1.5rem 2.5rem;
    color: #4b5563;
}

.article-section li {
    margin-bottom: 0.8rem;
}

.site-footer {
    background: var(--charcoal);
    color: var(--light-gray);
    padding: 3.5rem 2rem;
    margin-top: 5rem;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-note {
    color: #9ca3af;
    font-size: 0.95rem;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.93);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.modal-content {
    background: white;
    padding: 3.5rem;
    border-radius: 16px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 3px solid var(--gold);
}

.modal-content h2 {
    color: var(--emerald);
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.modal-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.modal-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 2rem;
}

.modal-button {
    padding: 1rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s;
}

.modal-button.accept {
    background: linear-gradient(to right, var(--emerald), var(--dark-green));
    color: white;
}

.modal-button.accept:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(4, 120, 87, 0.4);
}

.modal-button.reject {
    background: var(--light-gray);
    color: var(--charcoal);
}

.modal-button.reject:hover {
    background: #d1d5db;
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100vh;
        background: linear-gradient(to bottom, var(--dark-green), var(--emerald));
        transition: left 0.3s;
        padding-top: 6rem;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav a {
        display: block;
        padding: 1.5rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .banner h1 {
        font-size: 2.8rem;
    }
    
    .game-frame {
        height: 500px;
    }
    
    .highlight-cards {
        grid-template-columns: 1fr;
    }
}
