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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    overflow-x: hidden;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a3a5c;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-accept {
    background: #4CAF50;
    color: #fff;
}

.btn-accept:hover {
    background: #45a049;
}

.btn-decline {
    background: #f44336;
    color: #fff;
}

.btn-decline:hover {
    background: #da190b;
}

/* Header */
.header {
    background: #1a3a5c;
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-link:hover {
    color: #e0e0e0;
}

/* Burger Menu */
.burger-toggle {
    display: none;
}

.burger-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 24px;
    justify-content: space-between;
}

.burger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #4CAF50;
    color: #fff;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #45a049;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background: #f5f5f5;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a3a5c;
    font-weight: 700;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.content-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-alt .content-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.content-card h3 {
    color: #1a3a5c;
    margin-bottom: 15px;
    font-size: 24px;
}

.content-card p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Responsible Gaming */
.responsible-content {
    max-width: 900px;
    margin: 0 auto;
}

.warning-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
}

.warning-box h3 {
    color: #856404;
    margin-bottom: 15px;
    font-size: 24px;
}

.warning-box p {
    color: #856404;
    font-size: 18px;
    margin: 10px 0;
}

.content-text {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.content-text h3 {
    color: #1a3a5c;
    margin-bottom: 15px;
    font-size: 28px;
}

.content-text h4 {
    color: #1a3a5c;
    margin: 25px 0 15px;
    font-size: 22px;
}

.content-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.help-resources {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.help-resources h3 {
    color: #1a3a5c;
    margin-bottom: 30px;
    font-size: 28px;
    text-align: center;
}

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

.help-card {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #1a3a5c;
}

.help-card h4 {
    color: #1a3a5c;
    margin-bottom: 10px;
    font-size: 22px;
}

.help-card p {
    margin: 10px 0;
}

.phone-number {
    font-size: 24px;
    font-weight: bold;
    color: #1a3a5c;
    margin: 15px 0 5px;
}

.phone-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.btn-help {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: #1a3a5c;
    color: #fff;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-help:hover {
    background: #2c5282;
}

/* Operators */
.operator-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.operator-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.operator-banner {
    text-align: center;
    margin-bottom: 30px;
}

.operator-banner a {
    display: inline-block;
    transition: opacity 0.3s;
}

.operator-banner a:hover {
    opacity: 0.8;
}

.operator-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.operator-card h3 {
    color: #1a3a5c;
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
}

.operator-action {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.operator-details h4 {
    color: #1a3a5c;
    margin: 25px 0 15px;
    font-size: 22px;
}

.operator-details p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.info-note {
    background: #e3f2fd;
    border-left: 4px solid #1a3a5c;
    padding: 20px;
    margin-top: 30px;
}

.info-note p {
    margin: 0;
    color: #1a3a5c;
}

/* About Section */
.about-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.about-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.about-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-card h3 {
    color: #1a3a5c;
    margin: 0 0 15px;
    font-size: 24px;
}

.about-card p {
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.about-values {
    margin-bottom: 50px;
}

.about-values-title {
    text-align: center;
    color: #1a3a5c;
    font-size: 32px;
    margin-bottom: 40px;
}

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

.value-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #1a3a5c;
    transition: background 0.3s;
}

.value-item:hover {
    background: #e9ecef;
}

.value-item strong {
    display: block;
    color: #1a3a5c;
    font-size: 18px;
    margin-bottom: 10px;
}

.value-item p {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

.about-commitment {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.commitment-content h3 {
    color: #1a3a5c;
    margin: 30px 0 15px;
    font-size: 26px;
}

.commitment-content h3:first-child {
    margin-top: 0;
}

.commitment-content p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.cta-section {
    margin-top: 40px;
    padding: 30px;
    background: #f5f5f5;
    border-radius: 8px;
    text-align: center;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3,
.contact-form-wrapper h3 {
    color: #1a3a5c;
    margin-bottom: 25px;
    font-size: 28px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    color: #1a3a5c;
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-item p {
    line-height: 1.8;
}

.contact-item a {
    color: #1a3a5c;
    text-decoration: underline;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a3a5c;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: start;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: auto;
}

.checkbox-label span {
    line-height: 1.6;
}

.checkbox-label a {
    color: #1a3a5c;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a3a5c;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand p {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.footer-partners {
    text-align: center;
    margin: 20px 0;
}

.footer-partners h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

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

.partner-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.partner-links a:hover {
    opacity: 0.8;
}

.partner-banner {
    max-width: 200px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-legal {
    text-align: center;
    margin: 20px 0;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-links a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #e0e0e0;
}

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

.footer-bottom p {
    margin: 8px 0;
    font-size: 14px;
}

.warning-text {
    color: #ffc107;
    font-weight: 600;
}

/* Mobile Styles */
@media (max-width: 900px) {
    .burger-icon {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #1a3a5c;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
        padding: 80px 20px 40px;
    }

    .burger-toggle:checked ~ .nav {
        transform: translateX(0);
    }

    .burger-toggle:checked ~ .burger-icon span:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }

    .burger-toggle:checked ~ .burger-icon span:nth-child(2) {
        transform: scale(0);
    }

    .burger-toggle:checked ~ .burger-icon span:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-link {
        font-size: 24px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .content-card {
        padding: 20px;
    }

    .content-card h3 {
        font-size: 20px;
    }

    .about-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-card {
        padding: 30px 20px;
    }

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

    .about-commitment {
        padding: 25px 20px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .btn-cookie {
        flex: 1;
    }

    .help-cards {
        grid-template-columns: 1fr;
    }

    .partner-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .partner-banner {
        max-width: 150px;
    }

    .legal-links {
        flex-direction: column;
        gap: 10px;
    }

    .operator-card {
        padding: 25px 20px;
    }

    .operator-logo {
        max-width: 250px;
    }

    .operator-banner {
        margin-bottom: 20px;
    }

    .content-text,
    .help-resources {
        padding: 20px;
    }

    .about-intro {
        margin-bottom: 30px;
    }

    .about-intro-image {
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .about-intro-text {
        font-size: 18px;
    }

    .about-card h3 {
        font-size: 20px;
    }

    .about-values-title {
        font-size: 26px;
    }

    .commitment-content h3 {
        font-size: 22px;
    }

    .contact-info h3,
    .contact-form-wrapper h3,
    .content-text h3,
    .help-resources h3 {
        font-size: 24px;
    }

    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 400px;
        padding: 60px 20px;
    }

    .hero-content h2 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .operator-card h3 {
        font-size: 26px;
    }

    .operator-logo {
        max-width: 200px;
    }

    .warning-box h3 {
        font-size: 20px;
    }

    .warning-box p {
        font-size: 16px;
    }
}