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

body {
    font-family: 'Caudex', serif;
    background: linear-gradient(135deg, #d0e1f9 0%, #c0d6f1 100%);
    color: #2c3e50;
    line-height: 1.6;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJncmlkIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxwYXRoIGQ9Ik0gNDAgMCBMIDAgMCBMIDAgNDAgTCA0MCA0MCBMIDQwIDAgWiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDE3OCwxOTYsMjIwLDAuMikiIHN0cm9rZS13aWR0aD0iMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmlkKSIgLz48L3N2Zz4=');
    overflow-x: hidden;
}

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

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(100, 100, 100, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* 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: 1001;
}

.bar {
    width: 100%;
    height: 3px;
    background: #2c3e50;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* Active burger menu styles */
.burger-menu.active .bar:nth-child(1) {
    transform: rotate(45deg);
}

.burger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .bar:nth-child(3) {
    transform: rotate(-45deg);
}

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

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

nav ul li a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: #c62828;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c62828;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: url('images/hero-bg.png') center center no-repeat;
    background-size: cover;
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #b0c4de;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
    opacity: 0.3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2a4f 100%);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background: rgba(44, 62, 80, 0.1);
    transform: translateY(-3px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a2a4f;
    position: relative;
}

section h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #2c3e50, #1a2a4f);
    margin: 15px auto;
}

.about {
    background-color: rgba(255, 255, 255, 0.7);
}

.about p {
    font-size: 1.1rem;
    color: #555555;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

.why-choose {
    background: url('images/bg.png') center center no-repeat;
    background-size: cover;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(150, 150, 150, 0.3);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(100, 100, 100, 0.5);
}

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

.feature-card p {
    color: #555555;
}

.game-description {
    background-color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.game-description h2 {
    color: #1a2a4f;
}

.game-description p {
    color: #555555;
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

.contact {
    background: url('images/bg.png') center center no-repeat;
    background-size: cover;
    text-align: center;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(150, 150, 150, 0.3);
    border-radius: 10px;
    padding: 30px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.contact-info strong {
    color: #1a2a4f;
}

/* Footer */
footer {
    background-color: rgba(44, 62, 80, 0.95);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ecf0f1;
}

.disclaimer {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.disclaimer h2 {
    font-size: 4rem;
    color: #ecf0f1;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 10px rgba(198, 40, 40, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(198, 40, 40, 0.8), 0 0 30px rgba(198, 40, 40, 0.6);
    }
    100% {
        text-shadow: 0 0 10px rgba(198, 40, 40, 0.5);
    }
}

.disclaimer p {
    color: #ecf0f1;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.partners {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.partners img {
    height: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
}

.partners img:hover {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ecf0f1;
}

.copyright {
    text-align: center;
    color: #95a5a6;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .burger-menu {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(44, 62, 80, 0.98);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        transform: translateX(-100%);
    }
    
    nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    nav ul {
        display: flex;
        flex-direction: column;
        list-style: none;
        text-align: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 0;
        background-color: rgba(44, 62, 80, 0.98);
    }
    
    nav ul li {
        margin: 15px 0;
        transform: translateX(-20px);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    nav.active ul li {
        transform: translateX(0);
        opacity: 1;
    }
    
    nav ul li:nth-child(1) { transition-delay: 0.1s; }
    nav ul li:nth-child(2) { transition-delay: 0.2s; }
    nav ul li:nth-child(3) { transition-delay: 0.3s; }
    nav ul li:nth-child(4) { transition-delay: 0.4s; }
    nav ul li:nth-child(5) { transition-delay: 0.5s; }
    
    nav ul li a {
        color: #ecf0f1;
        font-size: 1.5rem;
        text-decoration: none;
        padding: 15px 20px;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    nav ul li a:hover {
        background: rgba(212, 175, 55, 0.2);
        color: #d4af37;
        transform: scale(1.05);
    }
    
    nav ul li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: #d4af37;
        transition: width 0.3s ease;
    }
    
    nav ul li a:hover::after {
        width: 100%;
    }
    
    /* Hide desktop navigation by default on mobile */
    header nav {
        display: none;
    }
    
    header nav.active {
        display: flex;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .partners {
        gap: 15px;
    }
    
    .partners img {
        height: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 240, 240, 0.95) 100%);
    border: 1px solid rgba(100, 100, 100, 0.2);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    max-width: 90%;
    width: 500px;
}

.cookie-consent.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    text-align: center;
}

.cookie-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cookie-content p {
    color: #555555;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #2c3e50;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-content a:hover {
    color: #1a2a4f;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cookie-buttons .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
    border-radius: 30px;
    min-width: 120px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.cookie-buttons .btn-primary {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2a4f 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cookie-buttons .btn-secondary {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.cookie-buttons .btn-secondary:hover {
    background: rgba(44, 62, 80, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-consent {
        bottom: 10px;
        left: 10px;
        right: 10px;
        transform: translateY(100px);
        max-width: none;
        width: auto;
        padding: 20px;
    }
    
    .cookie-consent.show {
        transform: translateY(0);
    }
    
    .cookie-content h3 {
        font-size: 1.2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 14px;
    }
}
