:root {
    --primary-color: #003366;
    --secondary-color: #FFCC00;
    --text-color-light: #ffffff;
    --text-color-dark: #333333;
    --bg-light: #f4f4f4;
}

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.site-header {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

.site-header .logo {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.site-header .logo:hover {
    color: var(--text-color-light);
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: var(--text-color-light);
    font-weight: bold;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.hamburger-menu {
    display: none;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    z-index: 1000;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color-light);
    transition: all 0.3s ease-in-out;
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    padding: 40px 0 20px;
    font-size: 0.9em;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    color: var(--secondary-color);
    font-size: 1.2em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-col p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-col a {
    color: var(--text-color-light);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

.footer-logo {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    padding: 2px 0;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-nav a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: translateY(-3px);
}

.responsible-gambling-note {
    font-size: 0.8em;
    opacity: 0.8;
    margin-top: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom .copyright {
    opacity: 0.7;
    font-size: 0.85em;
}

@media (max-width: 768px) {
    .site-header .container {
        flex-wrap: wrap;
    }

    .hamburger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background-color: var(--primary-color);
        padding-top: 80px;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease-in-out;
        z-index: 999;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .main-nav li {
        width: 100%;
        margin-bottom: 15px;
    }

    .main-nav a {
        display: block;
        padding: 10px 0;
        font-size: 1.1em;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col .footer-logo,
    .footer-col h3 {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-info, .social-links, .footer-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .social-links {
        flex-direction: row;
        justify-content: center;
    }
}