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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    color: #333;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #667eea;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 1rem;
}

.nav.active ul {
    flex-direction: column;
    gap: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Casino Section */
.casinos {
    padding: 4rem 0;
    background: white;
}

.casinos h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.casino-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.casino-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    display: flex;
    min-height: 200px;
}

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

.casino-image {
    width: 300px;
    min-width: 300px;
    overflow: hidden;
    background: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.casino-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.casino-content h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.8rem;
}

.casino-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    font-size: 1rem;
    color: #28a745;
    font-weight: 500;
    line-height: 1.4;
}

.casino-bonus {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    margin-bottom: 1.5rem;
    flex: 1;
}

.casino-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.bonus-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.bonus-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: #f8f9fa;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-feature {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-feature h4 {
    margin-bottom: 1rem;
    color: #333;
}

.about-feature p {
    color: #666;
    font-size: 0.95rem;
}

/* Safety Section */
.safety-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.safety-content {
    text-align: center;
}

.safety-text h2 {
    margin-bottom: 1.5rem;
    color: white;
}

.safety-text p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.safety-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.safety-item:hover {
    transform: translateY(-5px);
}

.safety-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.safety-item h4 {
    margin-bottom: 1rem;
    color: white;
}

.safety-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Game Types Section */
.game-types {
    padding: 4rem 0;
    background: #f8f9fa;
}

.game-types h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.game-types .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.game-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.game-type-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.game-type-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.game-type-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.game-type-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.game-type-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.game-type-card li {
    padding: 0.5rem 0;
    color: #28a745;
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.game-type-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Responsible Gaming */
.responsible-gaming {
    background: #2c3e50;
    color: white;
    padding: 3rem 0;
}

.partner-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.partner-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.partner-link:hover {
    transform: scale(1.05);
}

.partner-logo {
    height: 60px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.age-icon {
    height: 40px;
    width: auto;
}

.age-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.responsible-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.responsible-logo {
    height: 80px;
    width: auto;
}

.responsible-text h3 {
    margin-bottom: 1rem;
}

.responsible-text p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.responsible-text a {
    color: #3498db;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Copyright Styles */
.copyright-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.copyright-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.age-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.copyright-text {
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
}

.copyright-details {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bbb;
}

.copyright-details p {
    margin-bottom: 8px;
}

.copyright-details a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.copyright-details a:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

.copyright-details strong {
    color: #ff6b6b;
    font-weight: 600;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 20px 0;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #cccccc;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 6px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cookie-buttons .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cookie-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.cookie-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid #444;
}

.cookie-buttons .btn-secondary:hover {
    background: #333;
    border-color: #555;
    transform: translateY(-1px);
}



/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Casino Detail Page Styles */
.casino-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
}

.casino-hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.casino-hero-image {
    flex: 0 0 200px;
}

.casino-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.casino-hero-info h1 {
    margin-bottom: 1rem;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ddd;
    font-size: 1.2rem;
}

.star.filled {
    color: #ffd700;
}

.rating-text {
    font-weight: 600;
}

.casino-bonus-hero {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.casino-details {
    padding: 4rem 0;
    background: white;
}

.casino-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.casino-section {
    margin-bottom: 3rem;
}

.casino-section h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.game-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.game-category h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.game-category p {
    color: #666;
    font-size: 0.9rem;
}

.bonus-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bonus-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.bonus-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.bonus-item ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.payment-icon {
    font-size: 2rem;
}

.casino-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
}

.sidebar-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.info-label {
    font-weight: 500;
    color: #666;
}

.info-value {
    font-weight: 600;
    color: #333;
}

.pros-list, .cons-list {
    list-style: none;
}

.pros-list li, .cons-list li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.pros-list li {
    color: #28a745;
}

.cons-list li {
    color: #dc3545;
}

/* Cookie Page Styles */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-hero-content h1 {
    margin-bottom: 1rem;
}



.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.content-section h3 {
    margin: 2rem 0 1rem;
    color: #333;
}

.content-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.cookie-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-row > div {
    padding: 0.5rem;
}

.cookie-name {
    font-weight: 600;
    color: #333;
}

.cookie-purpose {
    color: #666;
}

.cookie-duration {
    text-align: center;
    color: #28a745;
    font-weight: 500;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.quick-nav, .important-links {
    list-style: none;
}

.quick-nav li, .important-links li {
    margin-bottom: 0.5rem;
}

.quick-nav a, .important-links a {
    color: #333;
    transition: color 0.3s ease;
}

.quick-nav a:hover, .important-links a:hover {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .casino-grid {
        gap: 1.5rem;
    }
    
    .casino-card {
        flex-direction: column;
    }
    
    .casino-image {
        width: 100%;
        min-width: auto;
        height: 200px;
    }
    
    .casino-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .responsible-content {
        flex-direction: column;
        text-align: center;
    }

    .casino-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .casino-details-grid {
        grid-template-columns: 1fr;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .cookie-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-links {
        gap: 1rem;
    }
    
    .partner-logo {
        height: 50px;
    }
    
    .age-restriction {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .copyright-main {
        flex-direction: column;
        gap: 8px;
    }
    
    .copyright-text {
        font-size: 1rem;
    }
    
    .copyright-details {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .casinos, .about, .casino-details, .cookie-content {
        padding: 2rem 0;
    }

    .casino-card {
        margin: 0 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .partner-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .partner-logo {
        height: 40px;
    }
    
    .age-restriction {
        padding: 0.5rem;
    }
    
    .age-icon {
        height: 30px;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .game-types-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .copyright-content {
        padding: 0 10px;
    }
    
    .cookie-banner {
        left: 5px;
        right: 5px;
        bottom: 5px;
        padding: 10px 12px;
        border-radius: 12px;
    }
    
    .cookie-text h4 {
        font-size: 0.85rem;
    }
    
    .cookie-text p {
        font-size: 0.75rem;
    }
    
    .cookie-buttons {
        gap: 6px;
    }
    
    .cookie-buttons .btn {
        font-size: 0.75rem;
        padding: 6px 10px;
        max-width: 100px;
    }
    
    .copyright-main {
        gap: 6px;
    }
    
    .age-badge {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .copyright-text {
        font-size: 0.9rem;
    }
    
    .copyright-details {
        font-size: 0.8rem;
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 12px 16px;
    }
    
    .cookie-text h4 {
        font-size: 0.9rem;
    }
    
    .cookie-text p {
        font-size: 0.8rem;
    }
    
    .cookie-buttons .btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .cookie-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }
    
    .cookie-buttons .btn {
        flex: 1;
        max-width: 100px;
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}
.logo a {
    text-decoration: none;
    display:flex;
    color:#000;
    align-items: center;
    gap:15px;
}

/* Casino Page Styles */
.casino-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
}

.casino-hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.casino-hero-image {
    flex: 0 0 200px;
}

.casino-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.casino-hero-info h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.stars {
    display: flex;
    gap: 5px;
}

.star {
    font-size: 20px;
    color: #ddd;
}

.star.filled {
    color: #ffd700;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.casino-bonus-hero {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.bonus-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.bonus-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.bonus-subtitle {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.casino-visit-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.casino-visit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.casino-visit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.casino-visit-btn:hover::before {
    left: 100%;
}

/* Casino Details Section */
.casino-details {
    padding: 80px 0;
    background: #f8f9fa;
}

.casino-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.casino-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.casino-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 20px;
    color: #333;
}

.casino-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #666;
}

.casino-section ul {
    list-style: none;
    padding: 0;
}

.casino-section ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.casino-section ul li:last-child {
    border-bottom: none;
}

.casino-section ul li strong {
    color: #333;
}

/* Sidebar Cards */
.casino-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.sidebar-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0 10px;
    color: #333;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: #666;
}

.info-value {
    font-weight: 600;
    color: #333;
}

.pros-list, .cons-list {
    list-style: none;
    padding: 0;
}

.pros-list li, .cons-list li {
    padding: 8px 0;
    color: #666;
}

.pros-list li {
    color: #28a745;
}

.cons-list li {
    color: #dc3545;
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: white;
}

.games-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.game-category {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease;
}

.game-category:hover {
    transform: translateY(-5px);
}

.game-category h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.game-category p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

.game-category ul {
    list-style: none;
    padding: 0;
}

.game-category ul li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.game-category ul li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Bonus Section */
.bonus-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.bonus-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.bonus-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.bonus-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.bonus-item ul {
    list-style: none;
    padding: 0;
}

.bonus-item ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus-item ul li:last-child {
    border-bottom: none;
}

.bonus-item ul li strong {
    color: #ffd700;
}

/* Payment Section */
.payment-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.payment-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.payment-method {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.payment-method h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.payment-method p {
    color: #666;
}

.payment-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.payment-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

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

.payment-info ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.payment-info ul li:last-child {
    border-bottom: none;
}

.payment-info ul li strong {
    color: #333;
}

.responsible-gaming h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.responsible-gaming > .container > p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    color: #666;
}

.responsible-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tool-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #28a745;
}

.tool-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.tool-item p {
    color: #666;
    line-height: 1.6;
}

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

.responsible-links .btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.responsible-links .btn-secondary {
    background: #6c757d;
    color: white;
    border: 2px solid #6c757d;
}

.responsible-links .btn-secondary:hover {
    background: #5a6268;
    border-color: #5a6268;
    transform: translateY(-2px);
}

/* Page Hero for Legal Pages */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.content-wrapper {
    margin: 0 auto;
}

.content-section {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 20px;
    color: #333;
}

.content-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 25px 0 15px;
    color: #333;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #666;
}

.content-section ul {
    margin-bottom: 20px;
}

.content-section ul li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #666;
}

.content-section ul li strong {
    color: #333;
}

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.contact-info h3 {
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Cookie Table Styles */
.cookie-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.cookie-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-row:nth-child(even) {
    background: #f8f9fa;
}

.cookie-name {
    font-weight: 600;
    color: #333;
}

.cookie-purpose {
    color: #666;
}

.cookie-duration {
    color: #667eea;
    font-weight: 500;
}

/* Responsive Design for Casino Pages */
@media (max-width: 768px) {
    .casino-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .casino-hero-image {
        flex: 0 0 150px;
    }
    
    .casino-hero-info h1 {
        font-size: 2.5rem;
    }
    
    .casino-visit-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .casino-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-details {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .responsible-tools {
        grid-template-columns: 1fr;
    }
    
    .responsible-links {
        flex-direction: column;
        align-items: center;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .content-section {
        padding: 30px;
    }
    
    .cookie-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .casino-hero-info h1 {
        font-size: 2rem;
    }
    
    .casino-visit-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .casino-section h2 {
        font-size: 2rem;
    }
    
    .games-section h2,
    .bonus-section h2,
    .payment-section h2,
    .responsible-gaming h2 {
        font-size: 2rem;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 20px;
    }
}