    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: #1a2b3c;
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffcc00;
            text-decoration: none;
        }

        .logo span {
            color: white;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #ffcc00;
        }

        /* Main Content */
        .terms-content {
            padding: 80px 0;
            background-color: white;
            border-radius: 10px;
            margin: 40px auto;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .page-header {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f4f8;
        }

        .page-header h1 {
            color: #1a2b3c;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .last-updated {
            color: #666;
            font-style: italic;
        }

        .content-section {
            margin-bottom: 40px;
        }

        .content-section h2 {
            color: #1a2b3c;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eaeaea;
        }

        .content-section h3 {
            color: #1a2b3c;
            margin: 25px 0 15px;
        }

        .content-section p {
            margin-bottom: 15px;
            text-align: justify;
        }

        .content-section ul {
            margin: 15px 0 15px 30px;
        }

        .content-section ul li {
            margin-bottom: 10px;
            position: relative;
        }

        .content-section ul li:before {
            content: "•";
            color: #ffcc00;
            font-weight: bold;
            position: absolute;
            left: -15px;
        }

        .warning-box {
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 20px;
            margin: 25px 0;
            border-radius: 4px;
        }

        .warning-box h4 {
            color: #856404;
            margin-bottom: 10px;
        }

        /* Back Button */
        .back-button {
            display: inline-block;
            background-color: #1a2b3c;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 30px;
            transition: background-color 0.3s;
        }

        .back-button:hover {
            background-color: #0d1a26;
        }

        /* Footer */
        footer {
            background-color: #0d1a26;
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .footer-logo {
            flex: 0 0 300px;
            margin-bottom: 20px;
        }

        .footer-logo .logo {
            margin-bottom: 15px;
            display: inline-block;
        }

        .footer-menu {
            flex: 0 0 200px;
            margin-bottom: 20px;
        }

        .footer-menu h3 {
            color: #ffcc00;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .footer-menu ul {
            list-style: none;
        }

        .footer-menu ul li {
            margin-bottom: 8px;
        }

        .footer-menu ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-menu ul li a:hover {
            color: #ffcc00;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 15px;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }
          * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: #1a2b3c;
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffcc00;
            text-decoration: none;
        }

        .logo span {
            color: white;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #ffcc00;
        }

        /* Main Content */
        .cookies-content {
            padding: 80px 0;
            background-color: white;
            border-radius: 10px;
            margin: 40px auto;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .page-header {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f4f8;
        }

        .page-header h1 {
            color: #1a2b3c;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .last-updated {
            color: #666;
            font-style: italic;
        }

        .content-section {
            margin-bottom: 40px;
        }

        .content-section h2 {
            color: #1a2b3c;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eaeaea;
        }

        .content-section h3 {
            color: #1a2b3c;
            margin: 25px 0 15px;
        }

        .content-section p {
            margin-bottom: 15px;
            text-align: justify;
        }

        .content-section ul {
            margin: 15px 0 15px 30px;
        }

        .content-section ul li {
            margin-bottom: 10px;
            position: relative;
        }

        .content-section ul li:before {
            content: "•";
            color: #ffcc00;
            font-weight: bold;
            position: absolute;
            left: -15px;
        }

        .cookies-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
        }

        .cookies-table th, .cookies-table td {
            border: 1px solid #ddd;
            padding: 12px 15px;
            text-align: left;
        }

        .cookies-table th {
            background-color: #f0f4f8;
            color: #1a2b3c;
            font-weight: 600;
        }

        .cookies-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        .cookie-type {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 3px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 5px;
        }

        .essential {
            background-color: #d4edda;
            color: #155724;
        }

        .performance {
            background-color: #cce5ff;
            color: #004085;
        }

        .functional {
            background-color: #fff3cd;
            color: #856404;
        }

        .cookie-controls {
            background-color: #f0f4f8;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
        }

        .cookie-controls h3 {
            margin-top: 0;
        }

        .browser-controls {
            margin-top: 20px;
        }

        .browser-controls h4 {
            margin-bottom: 10px;
            color: #1a2b3c;
        }

        /* Back Button */
        .back-button {
            display: inline-block;
            background-color: #1a2b3c;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 30px;
            transition: background-color 0.3s;
        }

        .back-button:hover {
            background-color: #0d1a26;
        }

        /* Footer */
        footer {
            background-color: #0d1a26;
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .footer-logo {
            flex: 0 0 300px;
            margin-bottom: 20px;
        }

        .footer-logo .logo {
            margin-bottom: 15px;
            display: inline-block;
        }

        .footer-menu {
            flex: 0 0 200px;
            margin-bottom: 20px;
        }

        .footer-menu h3 {
            color: #ffcc00;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .footer-menu ul {
            list-style: none;
        }

        .footer-menu ul li {
            margin-bottom: 8px;
        }

        .footer-menu ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-menu ul li a:hover {
            color: #ffcc00;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 15px;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .cookies-table {
                display: block;
                overflow-x: auto;
            }
        }
             * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: #1a2b3c;
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffcc00;
            text-decoration: none;
        }

        .logo span {
            color: white;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #ffcc00;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: #1a2b3c;
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffcc00;
            text-decoration: none;
        }

        .logo span {
            color: white;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #ffcc00;
        }

        /* Main Content */
        .privacy-content {
            padding: 80px 0;
            background-color: white;
            border-radius: 10px;
            margin: 40px auto;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .page-header {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f4f8;
        }

        .page-header h1 {
            color: #1a2b3c;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .last-updated {
            color: #666;
            font-style: italic;
        }

        .content-section {
            margin-bottom: 40px;
        }

        .content-section h2 {
            color: #1a2b3c;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eaeaea;
        }

        .content-section h3 {
            color: #1a2b3c;
            margin: 25px 0 15px;
        }

        .content-section p {
            margin-bottom: 15px;
            text-align: justify;
        }

        .content-section ul {
            margin: 15px 0 15px 30px;
        }

        .content-section ul li {
            margin-bottom: 10px;
            position: relative;
        }

        .content-section ul li:before {
            content: "•";
            color: #ffcc00;
            font-weight: bold;
            position: absolute;
            left: -15px;
        }

        .contact-info {
            background-color: #f0f4f8;
            padding: 25px;
            border-radius: 8px;
            margin-top: 30px;
        }

        .contact-info p {
            margin-bottom: 10px;
        }

        /* Back Button */
        .back-button {
            display: inline-block;
            background-color: #1a2b3c;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 30px;
            transition: background-color 0.3s;
        }

        .back-button:hover {
            background-color: #0d1a26;
        }

        /* Footer */
        footer {
            background-color: #0d1a26;
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .footer-logo {
            flex: 0 0 300px;
            margin-bottom: 20px;
        }

        .footer-logo .logo {
            margin-bottom: 15px;
            display: inline-block;
        }

        .footer-menu {
            flex: 0 0 200px;
            margin-bottom: 20px;
        }

        .footer-menu h3 {
            color: #ffcc00;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .footer-menu ul {
            list-style: none;
        }

        .footer-menu ul li {
            margin-bottom: 8px;
        }

        .footer-menu ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-menu ul li a:hover {
            color: #ffcc00;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 15px;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }
        /* Banner */
        .banner {
            background: linear-gradient(rgba(26, 43, 60, 0.85), rgba(26, 43, 60, 0.9)), url('ban.png') no-repeat center center/cover;
            color: white;
            padding: 120px 0;
            text-align: center;
        }

        .banner h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #ffcc00;
        }

        .banner p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        /* Casino List */
        .casino-list {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #1a2b3c;
            font-size: 2.2rem;
        }

        .casino-item {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            padding: 30px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .casino-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }

        .casino-logo {
            flex: 0 0 200px;
            text-align: center;
            padding-right: 30px;
        }

        .casino-logo img {
            max-width: 180px;
            max-height: 100px;
            object-fit: contain;
        }

        .casino-info {
            flex: 1;
        }

        .casino-name {
            font-size: 1.8rem;
            color: #1a2b3c;
            margin-bottom: 15px;
        }

        .casino-features {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .feature {
            background-color: #f0f4f8;
            padding: 8px 15px;
            border-radius: 20px;
            margin-right: 10px;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: #1a2b3c;
        }

        .bonus-btn {
            display: inline-block;
            background-color: #ffcc00;
            color: #1a2b3c;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: background-color 0.3s, transform 0.3s;
        }

        .bonus-btn:hover {
            background-color: #e6b800;
            transform: scale(1.05);
        }

        /* About Section */
        .about {
            background-color: #1a2b3c;
            color: white;
            padding: 80px 0;
        }

        .about h2 {
            color: #ffcc00;
            margin-bottom: 25px;
        }

        .about p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            max-width: 800px;
        }

        /* FAQ */
        .faq {
            padding: 80px 0;
        }

        .faq-item {
            margin-bottom: 20px;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            background-color: #f8f9fa;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 300px;
        }

        /* Responsible Gambling */
        .responsible-gambling {
            background-color: #f0f4f8;
            padding: 60px 0;
            text-align: center;
        }

        .responsible-gambling h2 {
            color: #1a2b3c;
            margin-bottom: 30px;
        }

        .age-restriction {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #d9534f;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-weight: bold;
            font-size: 1.5rem;
            margin-bottom: 30px;
        }

        .responsible-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }

        .responsible-links a {
            display: flex;
            align-items: center;
            background-color: white;
            padding: 15px 25px;
            border-radius: 10px;
            text-decoration: none;
            color: #1a2b3c;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }

        .responsible-links a:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .responsible-links img {
            height: 40px;
            margin-right: 15px;
        }

        /* Footer */
        footer {
            background-color: #0d1a26;
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .footer-logo {
            flex: 0 0 300px;
            margin-bottom: 30px;
        }

        .footer-logo .logo {
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-menu {
            flex: 0 0 200px;
            margin-bottom: 30px;
        }

        .footer-menu h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-menu ul {
            list-style: none;
        }

        .footer-menu ul li {
            margin-bottom: 10px;
        }

        .footer-menu ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-menu ul li a:hover {
            color: #ffcc00;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .casino-item {
                flex-direction: column;
                text-align: center;
            }
            
            .casino-logo {
                flex: 0 0 auto;
                padding-right: 0;
                margin-bottom: 20px;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #1a2b3c;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-100%);
                opacity: 0;
                transition: transform 0.3s, opacity 0.3s;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            
            nav ul.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .banner h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }