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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo img {
    mix-blend-mode: screen;
    height: 50px;
    width: auto;
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #60a5fa;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #60a5fa;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}



/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-casino {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

.btn-casino:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 2px;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: #fff;
}

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

.advantage-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.advantage-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.advantage-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Bonusser Section */
.bonusser {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

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

.bonus-type-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.bonus-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.bonus-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.bonus-type-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
    text-align: center;
}

.bonus-type-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.bonus-examples {
    background: #f8fafc;
    border-radius: 15px;
    padding: 1rem;
}

.bonus-example {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.bonus-example:last-child {
    border-bottom: none;
}

.casino-name {
    font-weight: 600;
    color: #1e293b;
}

.bonus-value {
    font-weight: 600;
    color: #059669;
    background: #d1fae5;
    background: #d1fae5;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Bonus Tips */
.bonus-tips {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.bonus-tips h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e293b;
}

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

.tip-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tip-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.tip-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Wagering Explanation */
.wagering-explanation {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wagering-explanation h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e293b;
}

.wagering-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.wagering-text p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.wagering-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.wagering-text li {
    color: #64748b;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.wagering-text strong {
    color: #1e293b;
}

.wagering-visual {
    display: flex;
    justify-content: center;
}

.wagering-example {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wagering-arrow {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.wagering-result {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wagering-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Om Os Section */
.om-os {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.about-text p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.about-text li {
    color: #64748b;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.about-text strong {
    color: #1e293b;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

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

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Team Section */
.team-section {
    margin-bottom: 4rem;
}

.team-section h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e293b;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.team-member h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.team-member p {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Section */
.contact-section h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e293b;
}

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

.contact-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

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

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

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

    .contact-item p {
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }

/* Partners Section */
.partners-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.partners-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.partners-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.responsible-gaming-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-link {
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
    text-decoration: none;
}

.partner-link:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

.partner-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
}

/* Casino Comparison Section */
.casino-comparison {
    padding: 80px 0;
    background: #f8fafc;
}

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

.casino-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.casino-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.casino-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.casino-rating {
    text-align: right;
}

.stars {
    color: #f59e0b;
    font-size: 1.2rem;
    display: block;
}

.rating-text {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9rem;
}

.casino-content {
    padding: 1.5rem;
}

.casino-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.casino-features {
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.feature:last-child {
    border-bottom: none;
}

.feature-label {
    font-weight: 500;
    color: #64748b;
}

.feature-value {
    font-weight: 600;
    color: #1e293b;
}

.casino-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pros h4, .cons h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.pros h4 {
    color: #059669;
}

.cons h4 {
    color: #dc2626;
}

.pros ul, .cons ul {
    list-style: none;
    font-size: 0.9rem;
}

.pros li {
    color: #059669;
    margin-bottom: 0.25rem;
}

.pros li::before {
    content: '✓ ';
    font-weight: bold;
}

.cons li {
    color: #dc2626;
    margin-bottom: 0.25rem;
}

.cons li::before {
    content: '✗ ';
    font-weight: bold;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #fff;
}

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

.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3b82f6;
    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: 0 1.5rem 1.5rem;
    max-height: 200px;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #60a5fa;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.responsible-gaming {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.stop-spillet, .age-restriction {
    height: 40px;
    width: auto;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #94a3b8;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #60a5fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .casino-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-pros-cons {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .responsible-gaming-partners {
        gap: 2rem;
    }
    
    .partner-logo {
        height: 50px;
    }
    
    .wagering-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .wagering-example {
        padding: 1.5rem;
    }
    
    .bonus-amount {
        font-size: 1.5rem;
    }
    
    .wagering-result {
        font-size: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        max-width: 200px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .policy-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .cookie-types, .cookie-management {
        grid-template-columns: 1fr;
    }
    
    .cookie-table-header, .cookie-table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .cookie-table-header {
        padding: 1rem 0.5rem;
    }
    
    .cookie-table-row {
        padding: 1rem 0.5rem;
    }
    
    .resources-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-card {
        margin: 0 10px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.advantage-card, .casino-card {
    animation: fadeInUp 0.6s ease forwards;
}

.advantage-card:nth-child(2) {
    animation-delay: 0.1s;
}

.advantage-card:nth-child(3) {
    animation-delay: 0.2s;
}

.advantage-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Hover effects for interactive elements */
.nav-link, .btn, .casino-card, .faq-question {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
.btn:focus, .nav-link:focus, .faq-question:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem 0;
}

.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: 2rem;
}

.cookie-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.cookie-text p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    max-width: 500px;
}

.cookie-policy-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-policy-link:hover {
    color: #1e40af;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-outline {
    background: transparent;
    color: #64748b;
    border: 2px solid #cbd5e1;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #64748b;
    color: #fff;
    border-color: #64748b;
}

.cookie-accept {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border: none;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Cookie Policy Page Styles */
.page-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: #fff;
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #e2e8f0;
}

.cookie-policy-content {
    padding: 80px 0;
    background: #fff;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e293b;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 0.5rem;
}

.policy-section p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.policy-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

/* Cookie Types */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.cookie-type {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cookie-type h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.cookie-type p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Cookie Table */
.cookie-table {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
}

.cookie-table-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #fff;
    padding: 1rem;
    font-weight: 600;
}

.cookie-table-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.3s ease;
}

.cookie-table-row:hover {
    background: #f8fafc;
}

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

.cookie-name {
    font-weight: 600;
    color: #1e293b;
    font-family: 'Courier New', monospace;
}

.cookie-purpose {
    color: #64748b;
}

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

/* Lists */
.third-party-list, .rights-list, .legal-basis {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.third-party-list li, .rights-list li, .legal-basis li {
    color: #64748b;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.third-party-list strong, .rights-list strong, .legal-basis strong {
    color: #1e293b;
}

/* Cookie Management */
.cookie-management {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.management-option {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.management-option h3 {
    color: #10b981;
    margin-bottom: 1rem;
}

.management-option p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Contact Info */
.contact-info {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    margin-top: 1.5rem;
}

.contact-item {
    color: #64748b;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.contact-item strong {
    color: #1e293b;
}

/* Resources Links */
.resources-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.resources-links a {
    color: #3b82f6;
    text-decoration: none;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.resources-links a:hover {
    background: #3b82f6;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Casino Page Styles */
/* Casino Hero Section */
.casino-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.casino-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.casino-hero-content {
    position: relative;
    z-index: 2;
}

.casino-hero-info {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.casino-logo-large {
    flex-shrink: 0;
}

.casino-logo-hero {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: #fff;
    padding: 15px;
}

.casino-hero-details h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.stars-large {
    font-size: 1.5rem;
    color: #fbbf24;
}

.rating-large {
    font-size: 1.25rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.casino-tagline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.casino-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.casino-licens {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.licens-badge {
    background: rgba(34, 197, 94, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

.licens-number {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

/* Casino Overview */
.casino-overview {
    padding: 4rem 0;
    background: #f8fafc;
}

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

.overview-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.overview-card h3 {
    color: #1e293b;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.overview-value {
    color: #10b981;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.overview-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Casino Content Section */
.casino-content-section {
    padding: 4rem 0;
}

.casino-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.casino-main-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.content-block {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.content-block h2 {
    color: #1e293b;
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-block p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* Bonus Details */
.bonus-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.bonus-main, .bonus-secondary {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.bonus-highlight {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.bonus-percentage {
    font-size: 3rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
}

.bonus-max {
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 600;
}

.bonus-spins {
    font-size: 3rem;
    font-weight: 800;
    color: #f59e0b;
    line-height: 1;
}

.bonus-spins-text {
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 600;
}

.bonus-terms {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.bonus-terms h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.bonus-terms li {
    color: #64748b;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    padding-left: 1.5rem;
}

.bonus-terms li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Games Categories */
.games-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.game-category {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.game-category h3 {
    color: #1e293b;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.game-category p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.payment-category {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.payment-category h3 {
    color: #1e293b;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.payment-category li {
    color: #64748b;
    padding: 0.25rem 0;
    font-size: 0.95rem;
}

.payment-info {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #f59e0b;
    margin-top: 2rem;
}

.payment-info h3 {
    color: #92400e;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.payment-info li {
    color: #92400e;
    padding: 0.25rem 0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.payment-info li::before {
    content: 'ℹ';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
}

/* Mobile Features */
.mobile-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.mobile-feature {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.mobile-feature h3 {
    color: #1e293b;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mobile-feature p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Support Options */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.support-option {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.support-option h3 {
    color: #1e293b;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.support-option p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.security-feature {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.security-feature h3 {
    color: #1e293b;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.security-feature p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Casino Sidebar */
.casino-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-block {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.sidebar-block h3 {
    color: #1e293b;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

/* Quick Facts */
.quick-facts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.fact-label {
    color: #64748b;
    font-size: 0.95rem;
}

.fact-value {
    color: #1e293b;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Pros & Cons Sidebar */
.pros-cons-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pros-sidebar h4, .cons-sidebar h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pros-sidebar h4 {
    color: #10b981;
}

.cons-sidebar h4 {
    color: #ef4444;
}

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

.pros-sidebar li, .cons-sidebar li {
    color: #64748b;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.pros-sidebar li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.cons-sidebar li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

/* Visit Button */
.btn-full {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
}

.visit-note {
    color: #64748b;
    font-size: 0.8rem;
    text-align: center;
    margin: 0;
    font-style: italic;
}

/* Related Casinos */
.related-casinos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-casino {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 15px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.related-casino:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.related-casino img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

.related-casino span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .casino-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .casino-sidebar {
        order: -1;
    }
    
    .bonus-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .casino-hero {
        padding: 6rem 0;
    }
    
    .casino-hero-info {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .casino-hero-details h1 {
        font-size: 2.5rem;
    }
    
    .casino-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .games-categories,
    .payment-methods,
    .mobile-features,
    .support-options,
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .bonus-highlight {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .bonus-percentage,
    .bonus-spins {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .casino-hero-details h1 {
        font-size: 2rem;
    }
    
    .casino-logo-hero {
        width: 100px;
        height: 100px;
    }
    
    .overview-card {
        padding: 1.5rem;
    }
    
    .content-block {
        padding: 1rem;
    }
    
    .sidebar-block {
        padding: 1.5rem;
    }
}
