:root {
    --brand-pink: #3c5c3c;
    --black: #000000;
    --white: #ffffff;
    --gray-bg: #f5f5f5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.45;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    z-index: 9999;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.branding {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.logo-min {
    width: 200px;
    height: auto;
    border-radius: 40px;
}

.site-name {
    color: var(--black);
}

nav.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--brand-pink);
    transition: width 0.25s ease-in-out;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
}

.bar {
    width: 24px;
    height: 3px;
    background: var(--black);
    transition: transform 0.3s, opacity 0.3s;
}

.hero {
    background: var(--brand-pink);
    color: var(--white);
    margin-top: 80px;
}

.hero-content {
    text-align: center;
    padding: 4rem 1rem 5rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    background: var(--white);
    color: var(--black);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.cta-btn:hover {
    transform: scale(1.05);
}

.elements-showcase {
    padding: 4rem 0;
}

.elements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    list-style: none;
}

.element-item {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: transform 0.2s ease-in-out;
}

.element-item:hover {
    transform: translateY(-6px);
}

.element-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 1rem;
}

.element-item p {
    font-size: 0.95rem;
}

.about-us {
    background: var(--gray-bg);
    padding: 4rem 0;
}

.about-wrapper h2 {
    font-size: 2rem;
    color: var(--brand-pink);
    margin-bottom: 1.5rem;
}

.about-wrapper h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
}

.about-wrapper p {
    margin-bottom: 1rem;
}

.about-wrapper ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style: disc;
}

.responsible-gaming {
    background: var(--black);
    color: var(--white);
    padding: 2rem 0;
}

.responsible-gaming h2 {
    text-align: center;
    color: var(--brand-pink);
    margin-bottom: 1rem;
}

.ticker-wrapper {
    overflow: hidden;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    animation: ticker-scroll 40s linear infinite;
}

.ticker p {
    display: inline-block;
    padding-right: 4rem;
    font-size: 0.95rem;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

footer {
    background: var(--brand-pink);
    color: var(--white);
}

.footer-top {
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-menu {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.footer-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1rem;
}

.footer-bottom h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-bottom p {
    font-size: 0.9rem;
}

.compliance-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.compliance-logos img {
    height: 36px;
}

.copyright {
    background: #111111;
    color: #666666;
    text-align: center;
    font-size: 0.85rem;
    padding: 1rem 0;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav.nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 260px;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 1.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.05);
    }

    nav.nav-links.open {
        transform: translateX(0);
    }

    nav.nav-links a {
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
}
