/* Valkorin - Bold Modern Styling */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-blue-dark: #003366;
    --color-blue: #0047ab;
    --color-blue-light: #1e5ba8;
    --color-silver: #c0c0c0;
    --color-silver-light: #e8e8e8;
    --color-white: #ffffff;
    --color-black: #1a1a1a;
    --color-gray: #4a4a4a;
    --color-gray-light: #757575;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--color-white);
    color: var(--color-black);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--color-blue-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Age Verification Overlay */
.age-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-blue-dark);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-overlay.active {
    display: flex;
}

.age-box {
    background: var(--color-white);
    max-width: 500px;
    border: 4px solid var(--color-silver);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-header {
    background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue));
    padding: 2rem;
    text-align: center;
    color: white;
}

.age-logo {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.age-header h2 {
    font-size: 2.5rem;
    color: white;
    margin: 0;
}

.age-body {
    padding: 2.5rem;
    text-align: center;
}

.age-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin-bottom: 1rem;
}

.age-text {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.confirm-btn {
    background: var(--color-blue);
    color: white;
}

.confirm-btn:hover {
    background: var(--color-blue-dark);
    transform: translateY(-2px);
}

.deny-btn {
    background: var(--color-silver);
    color: var(--color-black);
}

.deny-btn:hover {
    background: var(--color-gray-light);
}

.age-disclaimer {
    padding: 1.5rem;
    background: var(--color-silver-light);
    font-size: 0.9rem;
    color: var(--color-gray);
    text-align: center;
}

/* Top Navigation */
.top-nav {
    background: var(--color-blue-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.nav-icon {
    font-size: 2.5rem;
}

.nav-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-item:hover,
.nav-item.active {
    background: var(--color-blue-light);
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue));
    padding: 5rem 2rem;
    color: white;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-heading {
    font-size: 5rem;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 5px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.hero-subhead {
    font-size: 2rem;
    color: var(--color-silver-light);
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 30px;
}

.block-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--color-blue-dark);
}

.block-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

/* Intro Block */
.intro-block {
    background: var(--color-silver-light);
    padding: 3rem;
    margin-bottom: 4rem;
    border-left: 5px solid var(--color-blue);
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--color-gray);
}

/* Features Block */
.features-block {
    margin-bottom: 4rem;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-tile {
    background: white;
    padding: 2.5rem;
    border: 2px solid var(--color-silver);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-tile:hover {
    border-color: var(--color-blue);
    box-shadow: 0 10px 30px rgba(0, 71, 171, 0.2);
    transform: translateY(-5px);
}

.tile-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature-tile h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-blue);
}

.feature-tile p {
    color: var(--color-gray);
    line-height: 1.7;
}

/* Game Block */
.game-block {
    background: var(--color-silver-light);
    padding: 3rem;
    margin-bottom: 4rem;
}

.game-container {
    border: 4px solid var(--color-blue);
    margin-bottom: 2rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.game-frame {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.game-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--color-blue-dark);
}

.stat-icon {
    font-size: 2rem;
}

/* Advantages Block */
.advantages-block {
    margin-bottom: 4rem;
}

.advantages-grid {
    display: grid;
    gap: 2rem;
}

.advantage-card {
    background: white;
    padding: 2.5rem;
    border: 2px solid var(--color-silver);
}

.left-align {
    border-left: 5px solid var(--color-blue);
}

.right-align {
    border-right: 5px solid var(--color-silver);
}

.advantage-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-blue-dark);
}

.advantage-card p {
    font-size: 1.05rem;
    color: var(--color-gray);
    line-height: 1.8;
}

/* Info Grid Section */
.info-grid-section {
    margin-bottom: 4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-box {
    padding: 2.5rem;
    color: white;
}

.blue-box {
    background: var(--color-blue);
}

.silver-box {
    background: var(--color-gray);
}

.info-box h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 1rem;
}

.info-box p {
    line-height: 1.8;
}

/* Responsibility Block */
.responsibility-block {
    background: var(--color-blue-dark);
    color: white;
    padding: 3rem;
    margin-bottom: 4rem;
}

.responsibility-block h2 {
    color: white;
}

.responsibility-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.responsibility-list {
    list-style: none;
    margin: 2rem 0;
}

.responsibility-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    padding-left: 1.5rem;
    position: relative;
}

.responsibility-list li::before {
    content: '⚡';
    position: absolute;
    left: 0;
}

/* CTA Block */
.cta-block {
    text-align: center;
    background: var(--color-silver-light);
    padding: 4rem 2rem;
}

.cta-block h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-block p {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--color-blue);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.cta-button:hover {
    background: var(--color-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 71, 171, 0.4);
}

/* Play Page Specific */
.play-container {
    padding: 3rem 30px;
}

.play-header {
    text-align: center;
    margin-bottom: 3rem;
}

.play-header h1 {
    font-size: 4rem;
    color: var(--color-blue-dark);
    margin-bottom: 1rem;
}

.play-header p {
    font-size: 1.2rem;
    color: var(--color-gray);
}

.play-game-section {
    margin-bottom: 4rem;
}

.game-wrapper-large {
    border: 4px solid var(--color-blue);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.game-frame-large {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.play-info-section {
    margin-bottom: 4rem;
}

.info-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-tile {
    background: white;
    padding: 2rem;
    border: 2px solid var(--color-silver);
    text-align: center;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-tile h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-blue);
}

.info-tile p {
    color: var(--color-gray);
}

.play-notes-section {
    margin-bottom: 3rem;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.note-card {
    background: white;
    border: 2px solid var(--color-silver);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.note-icon {
    font-size: 2.5rem;
}

.note-content h4 {
    font-size: 1.2rem;
    color: var(--color-blue-dark);
    margin-bottom: 0.5rem;
}

.note-content p {
    color: var(--color-gray);
}

/* Legal Pages */
.legal-container {
    background: white;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 3.5rem;
    color: var(--color-blue-dark);
    margin-bottom: 0.5rem;
}

.legal-date {
    color: var(--color-gray);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--color-blue);
    margin-bottom: 1rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--color-gray);
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--color-gray);
}

.legal-section a {
    color: var(--color-blue);
    font-weight: 600;
}

.legal-section a:hover {
    color: var(--color-blue-dark);
}

/* Footer */
.site-footer {
    background: var(--color-blue-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    color: var(--color-silver-light);
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-silver-light);
}

.footer-bar {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        background: var(--color-blue-dark);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        height: calc(100vh - 70px);
        min-width: 250px;
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-heading {
        font-size: 3rem;
    }

    .hero-subhead {
        font-size: 1.5rem;
    }

    .block-title {
        font-size: 2rem;
    }

    .game-frame,
    .game-frame-large {
        height: 500px;
    }

    .features-layout,
    .info-tiles,
    .notes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-name {
        font-size: 1.5rem;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .game-frame,
    .game-frame-large {
        height: 400px;
    }
}
