/* Brinis - Bold Energetic Theme */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #f97316;
    --secondary-red: #dc2626;
    --dark-bg: #1c1917;
    --light-bg: #292524;
    --accent-yellow: #fbbf24;
    --text-white: #fafaf9;
    --text-gray: #d6d3d1;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1c1917 0%, #292524 50%, #1c1917 100%);
    color: var(--text-white);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header */
header {
    background: linear-gradient(90deg, var(--dark-bg), var(--light-bg));
    padding: 1rem 0;
    border-bottom: 3px solid var(--primary-orange);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--primary-orange);
    text-decoration: none;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s;
}

nav a:hover:after {
    width: 100%;
}

nav a:hover {
    color: var(--primary-orange);
}

.menu-icon {
    display: none;
    font-size: 2rem;
    color: var(--primary-orange);
    cursor: pointer;
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.banner {
    background: linear-gradient(135deg, var(--secondary-red), var(--primary-orange));
    padding: 4rem 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.4);
}

.banner h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.banner p {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

.section {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 3rem;
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-orange);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.alert-box {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(249, 115, 22, 0.2));
    border: 2px solid var(--primary-orange);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.alert-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--accent-yellow);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.alert-list {
    list-style: none;
}

.alert-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}

.alert-list li:last-child {
    border-bottom: none;
}

.alert-list li:before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-size: 1.5rem;
    font-weight: bold;
}

.game-area {
    background: var(--dark-bg);
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.3);
}

.game-area h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

.game-area iframe {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.highlight-item {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(220, 38, 38, 0.1));
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid rgba(249, 115, 22, 0.3);
    transition: all 0.3s;
}

.highlight-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.highlight-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--accent-yellow);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.highlight-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Footer */
footer {
    background: var(--dark-bg);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 3px solid var(--primary-orange);
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--primary-orange);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-col p {
    color: var(--text-gray);
}

.footer-list {
    list-style: none;
}

.footer-list a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--text-gray);
}

/* Age Verification Modal */
.verify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.verify-modal.show {
    display: flex;
}

.verify-content {
    background: linear-gradient(135deg, var(--dark-bg), var(--light-bg));
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid var(--primary-orange);
    text-align: center;
    max-width: 500px;
    margin: 1rem;
    box-shadow: 0 0 50px rgba(249, 115, 22, 0.5);
}

.verify-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--primary-orange);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.verify-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.verify-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.verify-btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.verify-btn.accept {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-red));
    color: white;
}

.verify-btn.accept:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.5);
}

.verify-btn.decline {
    background: #44403c;
    color: white;
}

.verify-btn.decline:hover {
    background: #292524;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        border-bottom: 3px solid var(--primary-orange);
    }
    
    nav ul.open {
        display: flex;
    }
    
    nav li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }
    
    nav a:after {
        display: none;
    }
    
    .brand {
        font-size: 2rem;
    }
    
    .banner h1 {
        font-size: 3rem;
    }
    
    .section {
        padding: 2rem;
    }
    
    main {
        padding: 2rem 1rem;
    }
    
    .verify-buttons {
        flex-direction: column;
    }
}
