* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
            background-color: #f8fafc;
        }

        .primary-header-zone {
            background-color: #1e293b;
            padding: 15px 0;
        }

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

        .site-brand-element {
            display: flex;
            align-items: center;
            gap: 12px;
            color: white;
            text-decoration: none;
        }

        .brand-icon-container {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #06d6a0, #118ab2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }

        .company-name-block {
            display: flex;
            flex-direction: column;
        }

        .primary-company-name {
            color: white;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.2;
        }

        .secondary-tagline {
            color: #94a3b8;
            font-size: 12px;
            font-weight: 400;
        }

        .primary-menu-list {
            display: flex;
            list-style: none;
            gap: 35px;
        }

        .menu-link-item {
            color: #fbbf24;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .menu-link-item:hover {
            color: #fde047;
        }

        .banner-intro-area {
            background: linear-gradient(-45deg, #06d6a0, #118ab2, #0ea5e9, #8b5cf6, #a855f7, #fbbf24);
            background-size: 1200% 1200%;
            animation: colorWave 45s ease-in-out infinite;
            padding: 60px 20px;
            text-align: center;
            color: white;
        }

        @keyframes colorWave {
            0% {
                background-position: 0% 20%;
            }
            20% {
                background-position: 40% 30%;
            }
            40% {
                background-position: 80% 60%;
            }
            60% {
                background-position: 100% 80%;
            }
            80% {
                background-position: 60% 40%;
            }
            100% {
                background-position: 0% 20%;
            }
        }

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

        .primary-title-text {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.1;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .intro-paragraph-text {
            font-size: 1.25rem;
            font-weight: 400;
            opacity: 0.95;
            line-height: 1.4;
        }

        .gaming-platforms-area {
            max-width: 1200px;
            margin: -40px auto 60px;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        .platform-cards-layout {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .gaming-platform-tile {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
            border: 1px solid #e2e8f0;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gaming-platform-tile:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.12);
        }

        .rating-indicator-text {
            color: #64748b;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .company-logo-space {
            margin-bottom: 20px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .drueckglueck-company-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: #dc2626;
            text-transform: uppercase;
        }

        .slotsmagic-company-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: #7c3aed;
            text-transform: uppercase;
        }

        .eucasino-company-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0ea5e9;
            text-transform: uppercase;
        }

        .playojo-company-name {
            font-size: 1.7rem;
            font-weight: 700;
            color: #f59e0b;
            text-transform: uppercase;
        }

        .redkings-company-name {
            font-size: 1.6rem;
            font-weight: 700;
            color: #b91c1c;
            text-transform: uppercase;
        }

        .bacanaplay-company-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: #059669;
            text-transform: uppercase;
        }

        .luckyniki-company-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #e11d48;
            text-transform: uppercase;
        }

        .ahtigames-company-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: #374151;
            text-transform: uppercase;
        }

        .turbonino-company-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ff6b6b;
            text-transform: uppercase;
        }

        .star-icons-group {
            display: flex;
            justify-content: center;
            gap: 2px;
            margin-bottom: 8px;
        }

        .individual-star-icon {
            color: #fbbf24;
            font-size: 18px;
        }

        .score-number-display {
            color: #1e293b;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .promotion-description-line {
            color: #1e293b;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .unique-promotion-info {
            color: #1e293b;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .claim-reward-link {
            background: linear-gradient(135deg, #06d6a0, #118ab2);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .claim-reward-link:hover {
            background: linear-gradient(135deg, #059669, #0891b2);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(6, 214, 160, 0.3);
        }

        .detailed-info-zone {
            background: rgba(30, 41, 59, 0.95);
            backdrop-filter: blur(10px);
            padding: 60px 0;
        }

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

        .comprehensive-info-section {
            color: white;
            line-height: 1.7;
        }

        .primary-section-header {
            font-size: 2.2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 30px;
            line-height: 1.3;
        }

        .sub-section-header {
            font-size: 1.8rem;
            font-weight: 600;
            color: white;
            margin: 40px 0 25px;
            line-height: 1.3;
        }

        .info-paragraph-block {
            font-size: 1.1rem;
            margin-bottom: 25px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
        }

        .assessment-points-list {
            margin: 25px 0;
            padding-left: 0;
            list-style: none;
        }

        .assessment-point-entry {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .assessment-point-entry::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #06d6a0;
            font-weight: bold;
            font-size: 1.3rem;
        }

        .support-contact-number {
            color: #06d6a0;
            font-weight: 700;
        }

        .bottom-page-footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 50px 0 20px;
        }

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

        .footer-sections-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand-area {
            color: #94a3b8;
        }

        .footer-company-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .footer-icon-element {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #06d6a0, #118ab2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }

        .footer-company-details {
            display: flex;
            flex-direction: column;
        }

        .footer-company-title {
            color: white;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.2;
        }

        .footer-company-subtitle {
            color: #64748b;
            font-size: 12px;
            font-weight: 400;
        }

        .footer-website-url {
            color: #94a3b8;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .footer-about-text {
            color: #94a3b8;
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-category-title {
            color: #06d6a0;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-navigation-list {
            list-style: none;
            padding: 0;
        }

        .footer-nav-entry {
            margin-bottom: 10px;
        }

        .footer-navigation-link {
            color: #94a3b8;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-navigation-link:hover {
            color: #06d6a0;
        }

        .footer-legal-text {
            color: #94a3b8;
            font-size: 14px;
            line-height: 1.6;
        }

        .verification-badges-area {
            border-top: 1px solid #334155;
            padding-top: 30px;
            margin-bottom: 30px;
        }

        .badges-section-title {
            color: #06d6a0;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .badges-display-row {
            display: flex;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .begambleaware-badge {
            color: #94a3b8;
            font-size: 14px;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .begambleaware-badge:hover {
            opacity: 0.8;
        }

        .domain-suffix {
            color: #64748b;
        }

        .gamcare-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .gamcare-badge:hover {
            opacity: 0.8;
        }

        .gamcare-symbol {
            width: 35px;
            height: 35px;
            background: white;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gamcare-initial {
            color: #334155;
            font-weight: bold;
            font-size: 18px;
        }

        .gamcare-text-block {
            display: flex;
            flex-direction: column;
        }

        .gamcare-brand-name {
            color: white;
            font-weight: 600;
            font-size: 14px;
            line-height: 1;
        }

        .gamcare-brand-tagline {
            color: #64748b;
            font-size: 11px;
            line-height: 1;
        }

        .age-limit-badge {
            display: flex;
            align-items: center;
        }

        .age-restriction-circle {
            width: 35px;
            height: 35px;
            background: #dc2626;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 12px;
        }

        .security-ssl-badge {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ssl-lock-symbol {
            font-size: 18px;
        }

        .ssl-text-block {
            display: flex;
            flex-direction: column;
        }

        .ssl-primary-text {
            color: white;
            font-weight: 600;
            font-size: 14px;
            line-height: 1;
        }

        .ssl-secondary-text {
            color: #64748b;
            font-size: 11px;
            line-height: 1;
        }

        .rights-reserved-area {
            border-top: 1px solid #334155;
            padding-top: 20px;
            text-align: center;
        }

        .copyright-notice {
            color: #64748b;
            font-size: 14px;
        }

        @media (max-width: 1024px) {
            .platform-cards-layout {
                gap: 20px;
            }
            
            .gaming-platform-tile {
                padding: 25px;
            }
            
            .primary-title-text {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .main-nav-wrapper {
                flex-direction: column;
                gap: 20px;
            }
            
            .primary-menu-list {
                gap: 25px;
            }
            
            .primary-title-text {
                font-size: 2.5rem;
            }
            
            .intro-paragraph-text {
                font-size: 1.1rem;
            }
            
            .platform-cards-layout {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .gaming-platforms-area {
                margin-top: -30px;
            }

            .detailed-info-zone {
                padding: 40px 0;
            }
            
            .primary-section-header {
                font-size: 1.8rem;
            }
            
            .sub-section-header {
                font-size: 1.5rem;
            }
            
            .info-paragraph-block {
                font-size: 1rem;
            }

            .footer-sections-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .badges-display-row {
                gap: 20px;
                justify-content: center;
            }
            
            .bottom-page-footer {
                padding: 40px 0 20px;
            }
        }

        @media (max-width: 480px) {
            .main-nav-wrapper {
                padding: 0 15px;
            }
            
            .primary-menu-list {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }
            
            .banner-intro-area {
                padding: 40px 15px;
            }
            
            .primary-title-text {
                font-size: 2rem;
            }
            
            .intro-paragraph-text {
                font-size: 1rem;
            }
            
            .gaming-platform-tile {
                padding: 20px;
            }
            
            .score-number-display {
                font-size: 2rem;
            }
            
            .gaming-platforms-area {
                padding: 0 15px;
            }

            .detailed-info-zone {
                padding: 30px 0;
            }
            
            .info-content-container {
                padding: 0 15px;
            }
            
            .primary-section-header {
                font-size: 1.6rem;
            }
            
            .sub-section-header {
                font-size: 1.3rem;
            }

            .footer-main-container {
                padding: 0 15px;
            }
            
            .badges-display-row {
                gap: 15px;
                flex-direction: column;
                align-items: flex-start;
            }
            
            .verification-badges-area {
                text-align: center;
            }
            
            .badges-display-row {
                flex-direction: row;
                justify-content: space-around;
            }
        }

        @media (max-width: 360px) {
            .company-name-block {
                display: none;
            }
            
            .primary-title-text {
                font-size: 1.8rem;
            }
            
            .gaming-platform-tile {
                padding: 15px;
            }
            
            .claim-reward-link {
                padding: 12px 30px;
                font-size: 14px;
            }
            
            .promotion-description-line {
                font-size: 13px;
            }
        }

        .menu-link-item.active {
            color: #06d6a0;
        }

        .page-header-zone {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            padding: 40px 20px;
            color: white;
            text-align: center;
        }

        .page-main-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .page-secondary-title {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .central-content-area {
            max-width: 800px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .policy-content-box {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
            border: 1px solid #e2e8f0;
        }

        .policy-information-section {
            margin-bottom: 30px;
        }

        .policy-section-title {
            color: #1e293b;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            border-bottom: 2px solid #06d6a0;
            padding-bottom: 8px;
        }

        .policy-section-text {
            color: #475569;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .policy-rules-list {
            list-style: none;
            padding-left: 0;
        }

        .policy-rule-item {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            color: #475569;
            line-height: 1.6;
        }

        .policy-rule-item::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #06d6a0;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .emphasis-text {
            background: linear-gradient(135deg, #06d6a0, #059669);
            padding: 2px 6px;
            border-radius: 4px;
            color: white;
            font-weight: 600;
        }

        .contact-details-box {
            background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
            border-left: 4px solid #06d6a0;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
        }

        .contact-section-title {
            color: #1e293b;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .last-modified-info {
            background: #f1f5f9;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 30px;
            color: #64748b;
            font-size: 0.9rem;
        }

        .terms-content-box {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
            border: 1px solid #e2e8f0;
        }

        .terms-information-section {
            margin-bottom: 30px;
        }

        .terms-rules-list {
            list-style: none;
            padding-left: 0;
        }

        .terms-rule-item {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            color: #475569;
            line-height: 1.6;
        }

        .terms-rule-item::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #06d6a0;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .critical-notice {
            background: linear-gradient(135deg, #fef2f2, #fef7f7);
            border-left: 4px solid #dc2626;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }

        .notice-section-title {
            color: #b91c1c;
            font-weight: 600;
            margin-bottom: 10px;
        }
        .page-header-zone {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 40px 20px;
    color: white;
    text-align: center;
}

.page-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-secondary-title {
    font-size: 1.1rem;
    opacity: 0.9;
}

.central-content-area {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.policy-content-box,
.terms-content-box {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.policy-information-section,
.terms-information-section {
    margin-bottom: 30px;
}

.policy-section-title {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid #06d6a0;
    padding-bottom: 8px;
}

.policy-section-text {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.policy-rules-list,
.terms-rules-list {
    list-style: none;
    padding-left: 0;
}

.policy-rule-item,
.terms-rule-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #475569;
    line-height: 1.6;
}

.policy-rule-item::before,
.terms-rule-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #06d6a0;
    font-weight: bold;
    font-size: 1.2rem;
}

.emphasis-text {
    background: linear-gradient(135deg, #06d6a0, #059669);
    padding: 2px 6px;
    border-radius: 4px;
    color: white;
    font-weight: 600;
}

.contact-details-box {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-left: 4px solid #06d6a0;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-section-title {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 10px;
}

.last-modified-info {
    background: #f1f5f9;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
    color: #64748b;
    font-size: 0.9rem;
}

.critical-notice {
    background: linear-gradient(135deg, #fef2f2, #fef7f7);
    border-left: 4px solid #dc2626;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.notice-section-title {
    color: #b91c1c;
    font-weight: 600;
    margin-bottom: 10px;
}

.sub-section-header {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin: 25px 0 15px;
    line-height: 1.3;
}

.support-contact-number {
    color: #06d6a0;
    font-weight: 700;
}

@media (max-width: 768px) {
    .page-main-title {
        font-size: 2rem;
    }

    .policy-content-box,
    .terms-content-box {
        padding: 30px 20px;
    }

    .policy-section-title {
        font-size: 1.3rem;
    }

    .sub-section-header {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .page-header-zone {
        padding: 30px 15px;
    }

    .page-main-title {
        font-size: 1.8rem;
    }

    .central-content-area {
        padding: 0 15px;
    }

    .policy-content-box,
    .terms-content-box {
        padding: 25px 20px;
    }
}

@media (max-width: 360px) {
    .page-main-title {
        font-size: 1.6rem;
    }

    .policy-content-box,
    .terms-content-box {
        padding: 20px 15px;
    }
}