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

body {
    font-family: 'Solway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
}

nav.nav-menu {
    display: flex;
}

nav.nav-menu ul {
    display: flex;
    list-style: none;
}

nav.nav-menu ul li {
    margin-left: 30px;
}

nav.nav-menu ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease;
    border: 1px solid #000;
    padding: 8px 15px;
}

nav.nav-menu ul li a:hover {
    color: #fff;
    background-color: #000;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.burger-menu .line1,
.burger-menu .line2,
.burger-menu .line3 {
    width: 30px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 2px solid #000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 100;
    padding: 20px 0;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    margin: 10px 0;
    text-align: center;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 15px 20px;
    display: block;
    border: 1px solid #000;
    margin: 0 20px;
    transition: all 0.3s ease;
}

.mobile-nav ul li a:hover {
    background-color: #000;
    color: #fff;
}

/* Toggle Animation */
.toggle .line1 {
    transform: rotate(45deg) translate(5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero Section */
.hero {
    background: #fff;
    padding: 100px 0;
    text-align: center;
    border-bottom: 2px solid #000;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #333;
}

.hero-image {
    max-width: 350px;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #000;
    color: white;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #000;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 5px 5px 0 #000;
}

/* Sections */
section {
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #000;
}

/* About Section */
.about p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-image {
    text-align: center;
    margin-top: 40px;
}

.about-image img {
    max-width: 100%;
    border: 2px solid #000;
}

/* Game Section */
.game-section {
    background-color: #000;
    text-align: center;
    color: #fff;
    background-image: url('img/game-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.game-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.game-section .container {
    position: relative;
    z-index: 2;
}

.game-section h2 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.game-section .btn {
    background-color: #fff;
    color: #000;
    border: 2px solid #fff;
}

.game-section .btn:hover {
    background-color: #000;
    color: #fff;
}

/* Why Choose Us */
.why-choose-us {
    background-color: #fff;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    border: 2px solid #000;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 5px 5px 0 #000;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000;
}

.feature-card p {
    color: #333;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    background-color: #000;
    color: #fff;
    text-align: center;
}

.contact h2 {
    color: #fff;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border: 2px solid #000;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #000;
}

/* FAQ Section */
.faq {
    background-color: #fff;
}

.faq-item {
    margin-bottom: 30px;
    border: 2px solid #000;
}

.faq-question {
    font-size: 1.3rem;
    margin: 0;
    padding: 20px;
    color: #000;
    cursor: pointer;
    position: relative;
    background-color: #f8f8f8;
    border-bottom: 2px solid #000;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    padding: 20px;
    max-height: 500px;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 30px;
}

.disclaimer {
    background-color: #fff;
    color: #000;
    padding: 30px;
    border: 3px solid #000;
    margin-bottom: 50px;
    text-align: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}

.disclaimer h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #000;
}

.disclaimer p {
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 500;
}

.partners {
    text-align: center;
    margin-bottom: 50px;
}

.partners h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: #fff;
}

.partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logos img {
    height: 50px;
    opacity: 1;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-column p {
    color: #ccc;
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #ccc;
    font-size: 0.9rem;
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 0;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    max-width: 400px;
}

.cookie-consent.show {
    display: block;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #000;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-outline {
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
}

.btn-outline:hover {
    background-color: #000;
    color: #fff;
}

/* Responsive Cookie Consent */
@media (max-width: 768px) {
    .cookie-consent {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        position: relative;
    }
    
    nav.nav-menu {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
    }
}