   :root {
            --primary-color: #1a472a;
            --secondary-color: #2ecc71;
            --dark-color: #0d1f0d;
            --light-color: #f8f9fa;
            --accent-color: #f39c12;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.8rem;
            color: var(--secondary-color) !important;
        }
        
        .hero-banner {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('img/ban.png');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0;
            text-align: center;
        }
        
        .hero-banner h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: bold;
        }
        
        .hero-banner p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        
        .casino-card {
            border: none;
            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;
            margin-bottom: 30px;
        }
        
        .casino-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .casino-logo {
            height: 80px;
            object-fit: contain;
            margin: 20px 0;
        }
        
        .bonus-btn {
            background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .bonus-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .advantage-item {
            margin-bottom: 10px;
        }
        
        .advantage-item i {
            color: var(--secondary-color);
            margin-right: 10px;
        }
        
        .responsible-gambling {
            background-color: var(--dark-color);
            color: white;
            padding: 40px 0;
            border-radius: 10px;
            margin: 40px 0;
        }
        
        .responsible-logo {
            height: 50px;
            margin: 10px 20px;
        }
        
        .age-restriction {
            background-color: var(--accent-color);
            color: white;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.8rem;
            margin: 0 auto 20px;
        }
        
        footer {
            background-color: var(--dark-color);
            color: white;
        }
        
        footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer a:hover {
            color: var(--secondary-color);
        }
        
        .section-title {
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 2rem;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--secondary-color);
            display: inline-block;
        }
        
        .faq-item {
            border-bottom: 1px solid #eee;
            padding: 15px 0;
        }
        
        .faq-question {
            font-weight: bold;
            color: var(--primary-color);
            cursor: pointer;
        }
        
        .faq-answer {
            display: none;
            padding-top: 10px;
            color: #555;
        }
        
        .about-us {
            background-color: #f9f9f9;
            padding: 60px 0;
            border-radius: 10px;
        }
        
        @media (max-width: 768px) {
            .hero-banner {
                padding: 100px 0;
            }
            
            .hero-banner h1 {
                font-size: 2.5rem;
            }
            
            .casino-logo {
                height: 60px;
            }
        }

      :root {
            --primary-color: #1a472a;
            --secondary-color: #2ecc71;
            --dark-color: #0d1f0d;
            --light-color: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            padding-top: 80px;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.8rem;
            color: var(--secondary-color) !important;
        }
        
        .privacy-header {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0;
            margin-bottom: 40px;
        }
        
        .section-title {
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
        }
        
        .content-section {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        .info-box {
            background-color: #f8f9fa;
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .update-date {
            color: #666;
            font-style: italic;
            margin-bottom: 30px;
        }
        
        footer {
            background-color: var(--dark-color);
            color: white;
            margin-top: 60px;
        }
        
        footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer a:hover {
            color: var(--secondary-color);
        }
        
        .back-home {
            background-color: var(--secondary-color);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        
        .back-home:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            .content-section {
                padding: 20px;
            }
        }
         :root {
            --primary-color: #1a472a;
            --secondary-color: #2ecc71;
            --dark-color: #0d1f0d;
            --light-color: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            padding-top: 80px;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.8rem;
            color: var(--secondary-color) !important;
        }
        
        .terms-header {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0;
            margin-bottom: 40px;
        }
        
        .section-title {
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
        }
        
        .content-section {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        .warning-box {
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .important-box {
            background-color: #d1ecf1;
            border-left: 4px solid #0c5460;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        
        footer {
            background-color: var(--dark-color);
            color: white;
            margin-top: 60px;
        }
        
        footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer a:hover {
            color: var(--secondary-color);
        }
        
        .back-home {
            background-color: var(--secondary-color);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        
        .back-home:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        ol.terms-list {
            counter-reset: item;
            padding-left: 0;
        }
        
        ol.terms-list > li {
            counter-increment: item;
            margin-bottom: 30px;
            list-style: none;
            position: relative;
            padding-left: 40px;
        }
        
        ol.terms-list > li:before {
            content: counter(item);
            background-color: var(--secondary-color);
            color: white;
            font-weight: bold;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            left: 0;
            top: 0;
        }
        
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            .content-section {
                padding: 20px;
            }
        }
        
        :root {
            --primary-color: #1a472a;
            --secondary-color: #2ecc71;
            --dark-color: #0d1f0d;
            --light-color: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            padding-top: 80px;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.8rem;
            color: var(--secondary-color) !important;
        }
        
        .cookies-header {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0;
            margin-bottom: 40px;
        }
        
        .section-title {
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
        }
        
        .content-section {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        .cookie-types {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        
        .cookie-type-card {
            flex: 1;
            min-width: 250px;
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            border-top: 4px solid var(--secondary-color);
        }
        
        .cookie-type-card.essential {
            border-top-color: #28a745;
        }
        
        .cookie-type-card.preferences {
            border-top-color: #007bff;
        }
        
        .cookie-type-card.analytics {
            border-top-color: #17a2b8;
        }
        
        .cookie-type-card.marketing {
            border-top-color: #ffc107;
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .cookie-table th, .cookie-table td {
            border: 1px solid #dee2e6;
            padding: 12px 15px;
            text-align: left;
        }
        
        .cookie-table th {
            background-color: #f8f9fa;
            font-weight: 600;
        }
        
        .cookie-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        
        .control-box {
            background-color: #e7f3ff;
            border-left: 4px solid #007bff;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        
        footer {
            background-color: var(--dark-color);
            color: white;
            margin-top: 60px;
        }
        
        footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer a:hover {
            color: var(--secondary-color);
        }
        
        .back-home {
            background-color: var(--secondary-color);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        
        .back-home:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        .cookie-icon {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            .content-section {
                padding: 20px;
            }
            
            .cookie-table {
                display: block;
                overflow-x: auto;
            }
        }