* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h1 {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffd700;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffd700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

main {
    margin-top: 80px;
}

.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0.2;
    z-index: 1;
}

.ranking-methodology {
    padding: 4rem 0;
    background: #fff;
}

.ranking-methodology h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-size: 2.5rem;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.method-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #ffd700;
    transition: transform 0.3s ease;
}

.method-item:hover {
    transform: translateY(-5px);
}

.method-item .icon {
    width: 50px;
    height: 50px;
    color: #ffd700;
    margin: 0 auto 1rem;
}

.method-item h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.hotels-ranking {
    padding: 4rem 0;
    background: #f8f9fa;
}

.hotels-ranking h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-size: 2.5rem;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.hotel-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.rank-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffd700;
    color: #1a1a2e;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 10;
}

.hotel-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hotel-content {
    padding: 1.5rem;
}

.hotel-content h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.hotel-address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #666;
}

.hotel-address .icon {
    width: 20px;
    height: 20px;
    color: #ffd700;
    flex-shrink: 0;
    margin-top: 2px;
}

.hotel-activities h4 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.hotel-activities ul {
    list-style: none;
    padding-left: 0;
}

.hotel-activities li {
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.hotel-activities li::before {
    content: '▸';
    color: #ffd700;
    position: absolute;
    left: 0;
}

.rank-1 {
    border-top: 5px solid #ffd700;
}

.rank-2 {
    border-top: 5px solid #c0c0c0;
}

.rank-3 {
    border-top: 5px solid #cd7f32;
}

.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.content-section {
    padding: 4rem 0;
    background: #fff;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: #1a1a2e;
    margin: 2rem 0 1rem 0;
    font-size: 1.8rem;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.content-wrapper p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.content-wrapper ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 5px solid #fdcb6e;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 5px;
}

.warning-box h2 {
    color: #856404;
    margin-bottom: 1rem;
    border: none;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tip-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.tip-item h3 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.resource-item {
    background: #e8f4f8;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #74b9ff;
}

.resource-item h3 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.responsible-gambling-logos {
    text-align: center;
    margin: 2rem 0;
}

.logo-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.logo-grid img {
    height: 60px;
    width: auto;
}

.emergency-contact {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-left: 5px solid #dc3545;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

.emergency-contact h2 {
    color: #721c24;
    border: none;
    margin-bottom: 1rem;
}

.contact-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    color: #ffd700;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-details h3 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.contact-hours h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.contact-form-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
}

.form-disclaimer {
    margin-bottom: 1.5rem;
    color: #666;
}

.submit-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.dgoj-info {
    background: #e8f4f8;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #74b9ff;
    margin-bottom: 2rem;
}

.functions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.function-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #ffd700;
}

.function-icon {
    width: 50px;
    height: 50px;
    color: #ffd700;
    margin: 0 auto 1rem;
}

.function-icon svg {
    width: 100%;
    height: 100%;
}

.function-item h3 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.game-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.game-type {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.game-type h3 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.protection-measures {
    margin: 2rem 0;
}

.protection-measures h3 {
    color: #1a1a2e;
    margin: 1.5rem 0 0.5rem 0;
}

.dgoj-contact {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    margin: 2rem 0;
}

.legal-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 5px solid #fdcb6e;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

.legal-notice h2 {
    color: #856404;
    margin-bottom: 1rem;
    border: none;
}

.thank-you-section {
    padding: 4rem 0;
    background: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    color: #28a745;
    margin: 0 auto 2rem;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.thank-you-content h1 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.message-summary {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #28a745;
}

.summary-item {
    margin-bottom: 1rem;
    text-align: left;
}

.next-steps {
    background: #e8f4f8;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #74b9ff;
    text-align: left;
}

.next-steps h2 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.action-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
}

.btn-secondary {
    background: #6c757d;
    color: #fff;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ffd700;
}

.footer-disclaimer {
    text-align: right;
}

.footer-disclaimer p {
    margin-bottom: 1rem;
    color: #ffd700;
    font-weight: 600;
}

.responsible-gambling {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.responsible-logo {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.responsible-logo:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-decline {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-accept {
    background: #28a745;
    color: white;
}

.btn-decline {
    background: #6c757d;
    color: white;
}

.btn-accept:hover,
.btn-decline:hover {
    transform: translateY(-2px);
}

.booking-section {
    padding: 4rem 0;
    background: #fff;
}

.booking-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-size: 2.5rem;
}

.booking-section > div > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #666;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-info h3 {
    color: #1a1a2e;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-item .icon {
    width: 40px;
    height: 40px;
    color: #ffd700;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #666;
    margin: 0;
}

.booking-form-wrapper {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #ffd700;
}

.booking-form-wrapper h3 {
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.booking-form select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.booking-form select:focus {
    outline: none;
    border-color: #ffd700;
}

.about-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.about-text h2 {
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #666;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.about-values h3 {
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.value-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #ffd700;
}

.value-item .icon {
    width: 40px;
    height: 40px;
    color: #ffd700;
    margin: 0 auto 1rem;
}

.value-item h4 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.about-commitment {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #ffd700;
}

.commitment-content h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.commitment-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #666;
}

.commitment-content p:last-child {
    margin-bottom: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #1a1a2e;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-image {
        display: none;
    }

    .methodology-grid,
    .hotels-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-disclaimer {
        text-align: center;
    }

    .responsible-gambling {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .action-buttons {
        flex-direction: column;
    }

    .tips-grid,
    .functions-grid {
        grid-template-columns: 1fr;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
} 