:root {
    --bg-dark: #121415;
    --bg-content: #1A1C1E;
    --accent-teal: #00E0FF;
    --accent-gold: #FDD835;
    --text-primary: #E0E0E0;
    --text-secondary: #A0A0A0;
    --border-color: rgba(0, 224, 255, 0.2);
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 224, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(253, 216, 53, 0.05) 0%, transparent 40%);
    color: var(--text-primary);
    font-family: var(--font-primary);
    line-height: 1.6;
}

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


.site-header {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    margin-right: 10px;
    border-radius: 4px;
}

.main-nav {
    display: none; /* Hidden by default, shown for desktop in media query */
}

.header-actions {
    display: flex;
    gap: 10px;
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.menu-close {
    display: none; /* To be shown inside mobile nav */
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    cursor: pointer;
}

.btn::before, .btn::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.btn::before {
    top: -2px; left: -2px;
    border-top: 2px solid;
    border-left: 2px solid;
}

.btn::after {
    bottom: -2px; right: -2px;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

.btn-primary {
    border-color: var(--accent-teal);
    color: var(--accent-teal);
}
.btn-primary::before, .btn-primary::after { border-color: var(--accent-teal); }
.btn-primary:hover {
    background-color: rgba(0, 224, 255, 0.1);
    color: #fff;
}

.btn-secondary {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}
.btn-secondary::before, .btn-secondary::after { border-color: var(--accent-gold); }
.btn-secondary:hover {
    background-color: rgba(253, 216, 53, 0.1);
    color: #fff;
}

.header-actions button{
background: #e1e1e100;
}
/* --- General Section Styling --- */
section {
    padding: 60px 0;
}

.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-primary);
    letter-spacing: 2px;
}

/* --- Hero Section --- */
.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-gold);
}

.hero-content p {
    font-size: 1.5rem;
    margin: 10px 0 30px;
    color: var(--text-primary);
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* --- Games Section --- */
.games-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.games-section h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-glow {
    color: var(--accent-teal);
    text-shadow: 0 0 10px var(--accent-teal);
}

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

.game-card img {
    width: 100%;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--accent-teal);
}

/* --- Latest Pages Section --- */
.latest-pages-section {
    border-top: 1px solid var(--border-color);
}

.latest-pages-section .section-header {
    margin-bottom: 30px;
}

.latest-pages-section h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.latest-page-card {
    background-color: var(--bg-content);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.latest-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 224, 255, 0.2);
    border-color: var(--accent-teal);
}

.latest-page-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.latest-page-card h3 a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.latest-page-card h3 a:hover {
    color: var(--accent-gold);
}

.latest-page-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --- Promotions Section --- */
.promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.promo-card {
    background-color: var(--bg-content);
    border: 1px solid var(--border-color);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 350px;
}

.promo-card h3 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--accent-teal); }
.promo-card .promo-subtitle { color: var(--text-secondary); text-transform: uppercase; font-size: 0.9rem; }
.promo-card .promo-main { font-family: var(--font-heading); font-size: 2.2rem; color: var(--accent-gold); margin: 10px 0; }
.promo-card img { margin: 20px 0; max-width: 100%; }

/* --- About Section --- */
.about-section .container { border-top: 1px solid var(--border-color); padding-top: 60px; }
.about-content { display: flex; flex-direction: column; gap: 40px; }
.about-content p, li { color: var(--text-secondary); margin-bottom: 1em; }

.about-text-wrapper h3 {
    font-family: var(--font-heading);
    color: var(--accent-teal);
    font-size: 1.5rem;
    margin-top: 2em;
    margin-bottom: 1em;
    border-left: 3px solid var(--accent-gold);
    padding-left: 15px;
}
.about-text-wrapper h2 {
    font-family: var(--font-heading);
    color: var(--accent-teal);
    font-size: 2rem;

    margin-bottom: 1em;

    padding-left: 15px;
}

.about-text-wrapper ul, .about-text-wrapper ol {
    margin-left: 20px;
    margin-bottom: 1.5em;
}

.about-text-wrapper li {
    margin-bottom: 0.5em;
}

.content-image, .content-image-small {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px auto;
    display: block;
    border: 1px solid var(--border-color);
}

.content-image-small {
    max-width: 300px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
}

.info-table th, .info-table td {
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    text-align: left;
}

.info-table thead {
    background-color: rgba(0, 224, 255, 0.1);
}

.info-table th {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--accent-gold);
}

.contents-box { 
    border-left: 2px solid var(--accent-teal); 
    padding-left: 20px; 
    align-self: flex-start;
}
.contents-box h3 { font-family: var(--font-heading); margin-bottom: 10px; }
.contents-box ul { list-style: none; padding-left: 0; }
.contents-box li a { color: var(--accent-teal); text-decoration: none; display: block; margin-bottom: 5px; font-size: 0.9rem; }
.contents-box li a:hover { color: var(--accent-gold); }
.contents-box li a::before { content: '♦'; margin-right: 10px; }
.contents-box .show-all { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; margin-top: 10px; display: inline-block; }

/* --- Providers Section --- */
.providers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.providers-grid img { opacity: 0.7; transition: opacity 0.3s ease; max-height: 40px;}
.providers-grid img:hover { opacity: 1; }

/* --- Footer --- */
.site-footer-bottom { padding: 40px 0; background-color: var(--bg-content); }
.site-footer-bottom .container { 
    display: flex; 
    flex-direction: column; 
    gap: 40px; 
}
.footer-nav nav ul { list-style: none; }
.footer-nav nav li { margin-bottom: 10px; }
.footer-nav nav a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; }
.footer-nav nav a:hover { color: var(--accent-teal); }


.language-selector {
    position: relative;
    display: inline-block;
}

.language-selector-toggle {
    background-color: #00e0ff;
    border: 1px solid #2794a3;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1em;
}

.language-selector-toggle .arrow-down {
    font-size: 0.7em;
    transition: transform 0.2s ease-in-out;
}


.language-selector.open .arrow-down {
    transform: rotate(180deg);
}

.language-options-list {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    list-style: none;
    padding: 5px 0;
    margin-top: 5px;
    min-width: 100%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);


    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}


.language-selector.open .language-options-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-options-list li a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.language-options-list li a:hover {
    background-color: #f0f0f0;
}

.footer-providers {
    margin-top: 30px;
}

.footer-providers h4 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.responsible-gambling-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}

.responsible-gambling-info h5 {
    font-family: var(--font-heading);
    color: var(--accent-teal);
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
}

.responsible-gambling-info p {
    margin-bottom: 1em;
}

.responsible-gambling-info ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1em;
    display: inline-block;
    text-align: left;
}

.responsible-gambling-info li {
    margin-bottom: 0.5em;
    position: relative;
    padding-left: 20px;
}

.responsible-gambling-info li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    top: 0;
}

.responsible-gambling-info a {
    color: var(--accent-teal);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.responsible-gambling-info a:hover {
    color: var(--accent-gold);
}

.responsible-gambling-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.responsible-gambling-links a {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid var(--accent-teal);
    border-radius: 5px;
    text-decoration: none;
    color: var(--accent-teal);
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.responsible-gambling-links a:hover {
    background-color: rgba(0, 224, 255, 0.1);
    color: #fff;
    border-color: #fff;
}

.copyright { text-align: center; color: var(--text-secondary); font-size: 0.8rem; border-top: 1px solid var(--border-color); padding-top: 20px; margin-top: 20px;}


.support-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-teal);
    color: var(--bg-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 15px var(--accent-teal);
    z-index: 1000;
}


.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-content);
    padding: 20px;
    border-top: 2px solid var(--accent-teal);
    z-index: 1001;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    transform: translateY(0);
}
.cookie-consent.is-hidden {
    transform: translateY(100%);
}

.cookie-text {
    color: var(--text-secondary);
    margin: 0;
    flex-grow: 1;
}

.cookie-text a {
    color: var(--accent-teal);
    text-decoration: underline;
}

#accept-cookies {
    flex-shrink: 0;
}


@media (min-width: 768px) {
    .menu-toggle { display: none; }
    .main-nav { display: block; }
    .main-nav ul { display: flex; gap: 30px; list-style: none; }
    .main-nav a { color: var(--text-primary); text-decoration: none; text-transform: uppercase; font-weight: 500; font-size: 0.9rem; }
    .main-nav a:hover { color: var(--accent-gold); }

    .hero .container { flex-direction: row; text-align: left; }
    .hero-content { flex: 1; }
    .hero-image { flex: 1; }
    .hero-content h1 { font-size: 3rem; }

    .promo-grid { grid-template-columns: repeat(2, 1fr); }
    
    .about-content { 
        flex-direction: row;
        align-items: flex-start;
    }
    .about-text-wrapper { flex: 3; }
    .contents-box { flex: 1; position: sticky; top: 20px; }

    .site-footer-bottom .container { flex-direction: row; justify-content: space-between; align-items: flex-start; }


    .footer-providers h4 {
        text-align: left;
    }
    .footer-providers .providers-grid {
        justify-content: flex-start;
    }
    .responsible-gambling-info {
        text-align: left;
    }
    .responsible-gambling-info h5 {
        text-align: left;
    }
    .responsible-gambling-links {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .header-actions .btn { padding: 8px 12px; font-size: 0.8rem; }
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100%;
        background-color: var(--bg-content);
        z-index: 1001;
        transition: left 0.3s ease-in-out;
        padding: 60px 20px;
    }
    .main-nav.is-open {
        left: 0;
    }
    .main-nav ul li {
        margin-bottom: 20px;
    }
    .main-nav a {
        font-size: 1.5rem;
        color: var(--text-primary);
        text-decoration: none;
    }
    .menu-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--text-primary);
        font-size: 2.5rem;
        cursor: pointer;
    }
}
.hero {
    position: relative;
}
.button-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 320px;
}
.button-wrapper form {
    width: 100%;
}
.button-wrapper .btn {
    width: 100%;
}
.floating-arrow {
    position: absolute;
    left: 50%;
    top: 19px;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    animation: floatArrow 2s ease-in-out infinite;
    z-index: 5;
}
.floating-arrow img {
    width: 100%;
    height: auto;
}
@keyframes floatArrow {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}