/* Torchloria.xyz - Fiery Energy Design */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Open+Sans:ital,wght@0,400;0,600;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c1440e;
    --secondary-color: #ff6b35;
    --accent-color: #ffa500;
    --dark-orange: #8b3a00;
    --light-orange: #ffe4d6;
    --cream: #fff8f0;
    --amber: #ffbf00;
    --text-color: #3a2618;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to bottom right, var(--cream) 0%, var(--light-orange) 100%);
    color: var(--text-color);
    line-height: 1.75;
    min-height: 100vh;
}

/* Header Styles */
header {
    background: linear-gradient(to right, var(--dark-orange) 0%, var(--primary-color) 50%, var(--dark-orange) 100%);
    box-shadow: 0 4px 20px rgba(193, 68, 14, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.4rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: white;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: radial-gradient(circle, var(--amber) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    color: white;
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.8);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1.3rem;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

nav a:hover {
    background: rgba(255, 191, 0, 0.3);
    transform: scale(1.05);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--amber);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Main Content */
main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-orange) 100%);
    color: white;
    padding: 4.5rem 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(193, 68, 14, 0.4);
    border: 3px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '🔥';
    position: absolute;
    font-size: 250px;
    opacity: 0.08;
    right: -50px;
    bottom: -80px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.3rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.85;
}

/* Content Sections */
.content-section {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    box-shadow: 0 6px 25px rgba(193, 68, 14, 0.15);
    border-top: 5px solid var(--secondary-color);
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-section h3 {
    color: var(--secondary-color);
    margin: 2rem 0 1.2rem;
    font-size: 1.8rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}

.content-section h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 0.8rem;
    font-size: 1.5rem;
}

.content-section p {
    margin-bottom: 1.3rem;
    line-height: 1.85;
    font-size: 1.05rem;
}

.content-section ul {
    margin-left: 2.5rem;
    margin-bottom: 1.3rem;
}

.content-section li {
    margin-bottom: 0.8rem;
}

/* Notice Boxes */
.notice-box {
    background: linear-gradient(135deg, var(--light-orange) 0%, #fff 100%);
    border-left: 6px solid var(--accent-color);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(193, 68, 14, 0.15);
}

.notice-box.warning {
    background: linear-gradient(135deg, #ffe0e0 0%, #fff 100%);
    border-left-color: #d32f2f;
}

.notice-box.info {
    background: linear-gradient(135deg, #e3f2fd 0%, #fff 100%);
    border-left-color: #1976d2;
}

.notice-box h3 {
    color: var(--dark-orange);
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}

/* Game Container */
.game-container {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    margin: 3rem 0;
    box-shadow: 0 8px 35px rgba(193, 68, 14, 0.2);
    text-align: center;
    border: 3px solid var(--accent-color);
}

.game-container h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.game-frame {
    width: 100%;
    max-width: 900px;
    height: 700px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(193, 68, 14, 0.25);
    margin: 0 auto;
    display: block;
}

/* Widget Grid */
.widget-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
}

.widget {
    background: linear-gradient(135deg, white 0%, var(--light-orange) 100%);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 22px rgba(193, 68, 14, 0.15);
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.widget:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(193, 68, 14, 0.3);
    border-left-color: var(--amber);
}

.widget h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}

/* Footer */
footer {
    background: linear-gradient(to right, var(--dark-orange) 0%, var(--primary-color) 100%);
    color: white;
    padding: 3.5rem 2rem;
    margin-top: 5rem;
    box-shadow: 0 -5px 25px rgba(193, 68, 14, 0.3);
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--amber);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: white;
    transform: scale(1.1);
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(193, 68, 14, 0.95) 0%, rgba(58, 38, 24, 0.98) 100%);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: white;
    padding: 3.5rem;
    border-radius: 10px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
    border: 4px solid var(--amber);
}

.age-modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.age-modal-content p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.15rem;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.age-button {
    padding: 1.3rem 3rem;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.age-button.yes {
    background: linear-gradient(to right, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
}

.age-button.yes:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(193, 68, 14, 0.5);
}

.age-button.no {
    background: linear-gradient(to right, #d32f2f 0%, #b71c1c 100%);
    color: white;
}

.age-button.no:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(211, 47, 47, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: linear-gradient(to bottom, var(--primary-color) 0%, var(--dark-orange) 100%);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: right 0.3s ease;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.5);
    }

    nav ul.active {
        right: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 2rem;
    }

    .game-frame {
        height: 500px;
    }

    .widget-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 2.5rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}
