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

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

:root {
    --teal-dark: #0d3b3e;
    --teal-mid: #1a6b6d;
    --copper: #b87333;
    --bronze: #cd7f32;
    --sand: #f4e4bc;
    --cream-light: #faf8f0;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: var(--teal-dark);
    color: var(--cream-light);
    min-height: 100vh;
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
}

a {
    color: var(--bronze);
    text-decoration: none;
    transition: color 0.25s;
}

a:hover {
    color: var(--sand);
}

.top-header {
    background: linear-gradient(180deg, rgba(13, 59, 62, 0.98) 0%, rgba(13, 59, 62, 0.95) 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--copper);
}

.top-header-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bronze);
}

.menu-trigger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-trigger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--bronze);
    margin: 6px 0;
    border-radius: 2px;
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.site-nav a {
    color: var(--sand);
    font-weight: 400;
    font-size: 1rem;
    position: relative;
    padding-bottom: 4px;
}

.site-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--copper);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.site-nav a:hover::before {
    width: 100%;
}

.landing-hero {
    padding: 170px 2rem 90px;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.landing-hero::after {
    content: '☥';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12rem;
    color: rgba(184, 115, 51, 0.1);
}

.landing-hero h1 {
    font-size: 3.2rem;
    color: var(--sand);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.landing-hero p {
    font-size: 1.2rem;
    color: rgba(244, 228, 188, 0.8);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.notice-strip {
    background: rgba(26, 107, 109, 0.4);
    padding: 3rem 2rem;
}

.notice-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.notice-box {
    flex: 1 1 300px;
    max-width: 380px;
    background: rgba(13, 59, 62, 0.8);
    border: 2px solid var(--copper);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.notice-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--bronze);
}

.notice-box .emblem {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.notice-box h3 {
    color: var(--bronze);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.notice-box p {
    color: rgba(244, 228, 188, 0.7);
    font-size: 0.95rem;
}

.slot-area {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.slot-area h2 {
    font-size: 2.2rem;
    color: var(--sand);
    text-align: center;
    margin-bottom: 2rem;
}

.slot-frame {
    background: #000;
    border: 4px solid var(--copper);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

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

.description-area {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--teal-mid) 0%, var(--teal-dark) 100%);
}

.description-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.description-inner h2 {
    font-size: 2rem;
    color: var(--sand);
    text-align: center;
    margin-bottom: 1.5rem;
}

.description-inner p {
    color: rgba(244, 228, 188, 0.8);
    margin-bottom: 1.2rem;
    text-align: center;
}

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

.pillar {
    background: rgba(13, 59, 62, 0.6);
    padding: 2rem;
    border-left: 4px solid var(--bronze);
}

.pillar h4 {
    color: var(--bronze);
    margin-bottom: 1rem;
}

.pillar p {
    text-align: left;
    color: rgba(244, 228, 188, 0.7);
}

.bottom-section {
    background: #071f21;
    padding: 3rem 2rem;
    border-top: 3px solid var(--copper);
}

.bottom-wrap {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.bottom-nav {
    margin-bottom: 2rem;
}

.bottom-nav a {
    color: var(--sand);
    margin: 0 1.2rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

.bottom-nav a:hover {
    opacity: 1;
}

.help-resources {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(184, 115, 51, 0.3);
}

.help-resources span {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.help-resources a {
    margin: 0 0.6rem;
    font-size: 0.85rem;
    color: rgba(244, 228, 188, 0.6);
}

.copy-notice {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #444;
}

.verification-modal {
    position: fixed;
    inset: 0;
    background: rgba(7, 31, 33, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.verification-modal.hidden {
    display: none;
}

.modal-box {
    background: linear-gradient(145deg, var(--teal-dark), var(--teal-mid));
    border: 3px solid var(--copper);
    padding: 3rem;
    text-align: center;
    max-width: 460px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.modal-box h2 {
    color: var(--sand);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.modal-box p {
    color: rgba(244, 228, 188, 0.8);
    margin-bottom: 2rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-buttons button {
    padding: 1rem 2.5rem;
    border: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-allow {
    background: linear-gradient(135deg, var(--copper), var(--bronze));
    color: var(--teal-dark);
}

.btn-allow:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(184, 115, 51, 0.4);
}

.btn-block {
    background: transparent;
    color: var(--sand);
    border: 2px solid var(--sand) !important;
}

.btn-block:hover {
    background: rgba(244, 228, 188, 0.1);
}

.page-title-area {
    padding: 150px 2rem 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
}

.page-title-area h1 {
    font-size: 2.5rem;
    color: var(--sand);
}

.text-body {
    max-width: 950px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.text-body h2 {
    color: var(--bronze);
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem;
}

.text-body p {
    color: rgba(244, 228, 188, 0.8);
    margin-bottom: 1rem;
}

.text-body ul {
    padding-left: 2rem;
    margin: 1rem 0 1.5rem;
}

.text-body li {
    color: rgba(244, 228, 188, 0.8);
    margin-bottom: 0.5rem;
}

.play-guide {
    background: rgba(26, 107, 109, 0.3);
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--copper);
    margin-bottom: 2rem;
}

.play-guide h3 {
    color: var(--bronze);
    margin-bottom: 0.5rem;
}

.play-guide p {
    margin: 0;
}

@media (max-width: 768px) {
    .menu-trigger {
        display: block;
    }
    
    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--teal-dark);
        display: none;
        padding: 1rem;
        border-bottom: 2px solid var(--copper);
    }
    
    .site-nav.open {
        display: block;
    }
    
    .site-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .site-nav a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(184, 115, 51, 0.2);
    }
    
    .landing-hero h1 {
        font-size: 2.2rem;
    }
    
    .landing-hero::after {
        display: none;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .slot-frame iframe {
        height: 400px;
    }
    
    .modal-box {
        margin: 1rem;
        padding: 2rem;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
}
