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

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

        .top-navigation-wrapper {
            background-color: #2c2c54;
            padding: 15px 0;
        }

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

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

        .logo-icon-wrapper {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ff6b6b, #feca57);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }

        .brand-text-section {
            display: flex;
            flex-direction: column;
        }

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

        .brand-subtitle {
            color: #a0a0a0;
            font-size: 12px;
            font-weight: 400;
        }

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

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

        .nav-menu-item:hover {
            color: #ffcc00;
        }

        .hero-welcome-section {
   background: linear-gradient(-45deg, #ffd54f, #ffeb3b, #4dd0e1, #48cae4, #ff9a9e, #feca57);
   background-size: 1200% 1200%;
   animation: gradientFlow 45s ease-in-out infinite;
   padding: 60px 20px;
   text-align: center;
   color: white;
}

@keyframes gradientFlow {
   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%;
   }
}

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

        .hero-main-heading {
            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);
        }

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

        .casino-brands-section {
            max-width: 1200px;
            margin: -40px auto 60px;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

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

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

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

        .score-label {
            color: #666;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
        }

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

        .drueckglueck-brand-logo {
            font-size: 1.4rem;
            font-weight: 700;
            color: #e74c3c;
            text-transform: uppercase;
        }

        .slotsmagic-brand-logo {
            font-size: 1.5rem;
            font-weight: 600;
            color: #9b59b6;
            text-transform: uppercase;
        }

        .eucasino-brand-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #3498db;
            text-transform: uppercase;
        }

        .playojo-brand-logo {
            font-size: 1.7rem;
            font-weight: 700;
            color: #f39c12;
            text-transform: uppercase;
        }

        .redkings-brand-logo {
            font-size: 1.6rem;
            font-weight: 700;
            color: #c0392b;
            text-transform: uppercase;
        }

        .bacanaplay-brand-logo {
            font-size: 1.4rem;
            font-weight: 600;
            color: #27ae60;
            text-transform: uppercase;
        }

        .luckyniki-brand-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #e91e63;
            text-transform: uppercase;
        }

        .ahtigames-brand-logo {
            font-size: 1.5rem;
            font-weight: 600;
            color: #34495e;
            text-transform: uppercase;
        }

        .turbonino-brand-logo {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ff6347;
            text-transform: uppercase;
        }

        .rating-stars-container {
            display: flex;
            justify-content: center;
            gap: 2px;
            margin-bottom: 8px;
        }

        .star-rating-icon {
            color: #ffd700;
            font-size: 18px;
        }

        .numerical-rating-score {
            color: #2c2c54;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .bonus-offer-text {
            color: #2c2c54;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .special-offer-details {
            color: #2c2c54;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .get-bonus-button {
            background: linear-gradient(135deg, #ffd54f, #ffb300);
            color: #2c2c54;
            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;
        }

        .get-bonus-button:hover {
            background: linear-gradient(135deg, #ffeb3b, #ffc107);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
        }

        .information-content-section {
            background: rgba(44, 44, 84, 0.95);
            backdrop-filter: blur(10px);
            padding: 60px 0;
        }

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

        .detailed-information-block {
            color: white;
            line-height: 1.7;
        }

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

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

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

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

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

        .list-item::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #ffd54f;
            font-weight: bold;
            font-size: 1.3rem;
        }

        .helpline-contact {
            color: #ffd54f;
            font-weight: 700;
        }

        .website-footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 50px 0 20px;
        }

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

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

        .footer-brand-section {
            color: #ccc;
        }

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

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

        .footer-brand-info {
            display: flex;
            flex-direction: column;
        }

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

        .footer-brand-tagline {
            color: #999;
            font-size: 12px;
            font-weight: 400;
        }

        .footer-domain-name {
            color: #ccc;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .footer-description {
            color: #ccc;
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-section-title {
            color: #ffd54f;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
        }

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

        .footer-link-item {
            margin-bottom: 10px;
        }

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

        .footer-link:hover {
            color: #ffd54f;
        }

        .footer-disclaimer {
            color: #ccc;
            font-size: 14px;
            line-height: 1.6;
        }

        .trust-certifications {
            border-top: 1px solid #333;
            padding-top: 30px;
            margin-bottom: 30px;
        }

        .certifications-title {
            color: #ffd54f;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
        }

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

        .begambleaware-logo {
            color: #ccc;
            font-size: 14px;
        }

        .domain-extension {
            color: #999;
        }

        .gamcare-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

        .gamcare-letter {
            color: #333;
            font-weight: bold;
            font-size: 18px;
        }

        .gamcare-info {
            display: flex;
            flex-direction: column;
        }

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

        .gamcare-slogan {
            color: #999;
            font-size: 11px;
            line-height: 1;
        }

        .age-restriction-logo {
            display: flex;
            align-items: center;
        }

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

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

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

        .ssl-info {
            display: flex;
            flex-direction: column;
        }

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

        .ssl-sub-text {
            color: #999;
            font-size: 11px;
            line-height: 1;
        }

        .copyright-section {
            border-top: 1px solid #333;
            padding-top: 20px;
            text-align: center;
        }

        .copyright-text {
            color: #999;
            font-size: 14px;
        }

        @media (max-width: 1024px) {
            .casino-cards-grid {
                gap: 20px;
            }
            
            .casino-brand-card {
                padding: 25px;
            }
            
            .hero-main-heading {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .navigation-container {
                flex-direction: column;
                gap: 20px;
            }
            
            .header-navigation-menu {
                gap: 25px;
            }
            
            .hero-main-heading {
                font-size: 2.5rem;
            }
            
            .hero-description-text {
                font-size: 1.1rem;
            }
            
            .casino-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .casino-brands-section {
                margin-top: -30px;
            }

            .information-content-section {
                padding: 40px 0;
            }
            
            .main-section-title {
                font-size: 1.8rem;
            }
            
            .section-subtitle {
                font-size: 1.5rem;
            }
            
            .content-paragraph {
                font-size: 1rem;
            }

            .footer-columns-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .certifications-row {
                gap: 20px;
                justify-content: center;
            }
            
            .website-footer {
                padding: 40px 0 20px;
            }
        }

        @media (max-width: 480px) {
            .navigation-container {
                padding: 0 15px;
            }
            
            .header-navigation-menu {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }
            
            .hero-welcome-section {
                padding: 40px 15px;
            }
            
            .hero-main-heading {
                font-size: 2rem;
            }
            
            .hero-description-text {
                font-size: 1rem;
            }
            
            .casino-brand-card {
                padding: 20px;
            }
            
            .numerical-rating-score {
                font-size: 2rem;
            }
            
            .casino-brands-section {
                padding: 0 15px;
            }

            .information-content-section {
                padding: 30px 0;
            }
            
            .content-wrapper-container {
                padding: 0 15px;
            }
            
            .main-section-title {
                font-size: 1.6rem;
            }
            
            .section-subtitle {
                font-size: 1.3rem;
            }

            .footer-container {
                padding: 0 15px;
            }
            
            .certifications-row {
                gap: 15px;
                flex-direction: column;
                align-items: flex-start;
            }
            
            .trust-certifications {
                text-align: center;
            }
            
            .certifications-row {
                flex-direction: row;
                justify-content: space-around;
            }
        }

        @media (max-width: 360px) {
            .brand-text-section {
                display: none;
            }
            
            .hero-main-heading {
                font-size: 1.8rem;
            }
            
            .casino-brand-card {
                padding: 15px;
            }
            
            .get-bonus-button {
                padding: 12px 30px;
                font-size: 14px;
            }
            
            .bonus-offer-text {
                font-size: 13px;
            }
        }
.nav-menu-item.active {
   color: #ffd54f;
}

.page-header-section {
   background: linear-gradient(135deg, #2c2c54 0%, #40407a 100%);
   padding: 40px 20px;
   color: white;
   text-align: center;
}

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

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

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

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

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

.section-heading {
   color: #2c2c54;
   font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: 15px;
   border-bottom: 2px solid #ffd54f;
   padding-bottom: 8px;
}

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

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

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

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

.highlight-text {
   background: linear-gradient(135deg, #ffd54f, #ffeb3b);
   padding: 2px 6px;
   border-radius: 4px;
   color: #2c2c54;
   font-weight: 600;
}

.contact-info-box {
   background: linear-gradient(135deg, #f8f9fa, #e9ecef);
   border-left: 4px solid #ffd54f;
   padding: 20px;
   border-radius: 8px;
   margin-top: 30px;
}

.contact-heading {
   color: #2c2c54;
   font-weight: 600;
   margin-bottom: 10px;
}

.last-updated {
   background: #f8f9fa;
   padding: 15px;
   border-radius: 8px;
   text-align: center;
   margin-bottom: 30px;
   color: #666;
   font-size: 0.9rem;
}

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

   .privacy-content-wrapper {
       padding: 30px 20px;
   }
}

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

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

   .main-content-container {
       padding: 0 15px;
   }

   .privacy-content-wrapper {
       padding: 25px 20px;
   }

   .section-heading {
       font-size: 1.3rem;
   }
}

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

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

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

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

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

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

.important-notice {
    background: linear-gradient(135deg, #ffe8e8, #fff0f0);
    border-left: 4px solid #e74c3c;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.notice-heading {
    color: #c0392b;
    font-weight: 600;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .terms-content-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .terms-content-wrapper {
        padding: 25px 20px;
    }
}

@media (max-width: 360px) {
    .terms-content-wrapper {
        padding: 20px 15px;
    }
}
.begambleaware-logo,
.gamcare-logo {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.begambleaware-logo:hover,
.gamcare-logo:hover {
    opacity: 0.8;
}
.get-bonus-button {
    background: linear-gradient(135deg, #ffd54f, #ffb300);
    color: #2c2c54;
    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;
}