* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #1A1A1A;
    min-height: 100vh;
    color: #EAEAEA;
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: transparent;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 24px;
    background: #FDB813;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1A1A;
}

.logo h1 {
    font-size: 28px;
    font-weight: bold;
    color: #EAEAEA;
    text-shadow: none;
}

/* Warning Banner */
.warning-banner {
    background-color: #333333;
    padding: 10px 0;
    text-align: center;
    color: white;
    font-size: 14px;
}

.warning-icon {
    margin-right: 8px;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.welcome-offers {
    text-align: center;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-shadow: none;
}

.section-description {
    margin-bottom: 40px;
}

.section-description p {
    font-size: 16px;
    margin: 5px 0;
    color: #B0B0B0;
}

/* Offers Grid */
.offers-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

.offer-card {
    background: #282828;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.5);
}

.operator-logo {
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.operator-img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(0.9) saturate(0.8);
}

.offer-details {
    flex: 1;
    color: #EAEAEA;
}

.offer-features {
    list-style: none;
    text-align: left;
}

.offer-features li {
    margin: 12px 0;
    position: relative;
    padding-left: 20px;
    font-size: 18px;
    font-weight: 500;
}

.offer-features li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #FDB813;
    font-size: 16px;
}

.license-info {
    background: #1f3d2a;
    border: 1px solid #2e8b57;
    border-radius: 8px;
    padding: 8px 12px;
    margin-top: 15px !important;
    font-size: 16px !important;
    font-weight: 600;
    color: #EAEAEA !important;
}

.license-info::before {
    content: none !important;
}

.offer-bonus {
    text-align: left;
    flex: 1;
    color: #EAEAEA;
}

.promo-label {
    font-size: 18px;
    color: #B0B0B0;
    margin-bottom: 8px;
    font-weight: 500;
}

.promo-value {
    font-size: 26px;
    font-weight: bold;
    color: #FDB813;
    text-shadow: none;
}

.offer-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 250px;
}

.activate-btn {
    background: #FDB813;
    color: #1A1A1A;
    border: none;
    padding: 16px 35px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.activate-btn:hover {
    background: #e4a60b;
    transform: scale(1.05);
    box-shadow: none;
}

.rating {
    display: flex;
    align-items: center;
}

.stars {
    font-size: 22px;
    color: #ffc107;
}

/* Comparison Section */
.comparison-section {
    margin: 60px 0;
    padding: 40px 0;
    background: #282828;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.comparison-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 30px;
}

.comparison-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    color: #EAEAEA;
    margin-bottom: 10px;
}

.comparison-intro {
    font-size: 18px;
    text-align: center;
    color: #B0B0B0;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.comparison-item {
    background: #1A1A1A;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #444;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.comparison-icon {
    font-size: 24px;
}

.comparison-header h3 {
    font-size: 22px;
    color: #EAEAEA;
    font-weight: bold;
}

.points-section {
    margin-bottom: 25px;
}

.points-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.points-title.positive {
    color: #4CAF50;
}

.points-title.negative {
    color: #F44336;
}

.points-list {
    list-style: none;
    padding: 0;
    color: #B0B0B0;
}

.points-list li {
    margin-bottom: 8px;
    color: #EAEAEA;
}

.how-to-choose {
    background: #1A1A1A;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #444;
}

.how-to-choose-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.how-to-choose-header h3 {
    font-size: 22px;
    color: #EAEAEA;
    font-weight: bold;
}

.choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #B0B0B0;
}

.choose-list li {
    margin-bottom: 8px;
    color: #EAEAEA;
}

.verdict-section {
    background: #1A1A1A;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #FDB813;
}

.verdict-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.verdict-header h3 {
    font-size: 22px;
    color: #FDB813;
    font-weight: bold;
}

.verdict-recommendations {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recommendation {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #EAEAEA;
    margin-bottom: 15px;
}

.recommendation.important {
    font-weight: bold;
    color: #FDB813;
}

.rec-icon {
    font-size: 24px;
}

.recommendation p {
    margin: 0;
    font-size: 16px;
    color: #EAEAEA;
}

/* Responsive Design */
@media (max-width: 768px) {
    .offer-card {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .operator-img {
        max-width: 100px;
    }
    
    .offer-features li {
        font-size: 16px;
    }
    
    .license-info {
        font-size: 14px !important;
    }
    
    .promo-value {
        font-size: 22px;
    }
    
    .activate-btn {
        font-size: 18px;
        padding: 14px 25px;
    }
    
    .stars {
        font-size: 20px;
    }
    
    .offer-details {
        text-align: center;
    }
    
    .offer-features {
        text-align: left;
    }
    
    .offer-bonus {
        text-align: center;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Comparison Section Mobile */
    .comparison-section {
        margin: 30px 0;
        padding: 20px 0;
    }
    
    .comparison-container {
        padding: 0 20px;
    }
    
    .comparison-title {
        font-size: 26px;
    }
    
    .comparison-intro {
        font-size: 16px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .comparison-item {
        padding: 20px;
    }
    
    .comparison-header h3 {
        font-size: 20px;
    }
    
    .points-title {
        font-size: 16px;
    }
    
    .points-list li {
        font-size: 14px;
    }
    
    .choose-list {
        padding-left: 15px;
    }
    
    .choose-list li {
        font-size: 14px;
    }
    
    .verdict-section {
        padding: 20px;
    }
    
    .verdict-header h3 {
        font-size: 20px;
    }
    
    .recommendation {
        gap: 10px;
    }
    
    .recommendation p {
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background-color: #1A1A1A;
    color: #B0B0B0;
    padding: 40px 0 20px 0;
    border-top: 1px solid #444;
}

.footer-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #444;
}

.footer-logo .logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo .logo-icon {
    background: #FDB813;
    color: #1A1A1A;
    font-size: 28px;
    width: 45px;
    height: 45px;
}

.footer-logo h2 {
    font-size: 24px;
    font-weight: bold;
    color: #EAEAEA;
    text-shadow: none;
}

.footer-menu {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FDB813;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid #444;
    padding-top: 20px;
}

.footer-organizations {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.org-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.org-logo:hover .org-img {
    filter: none;
}

.org-logo:hover {
    transform: scale(1.1);
    opacity: 1;
}

.age-restriction {
    width: 40px;
    height: 40px;
    border: 2px solid #B0B0B0;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    color: #B0B0B0;
}

.org-img {
    height: 30px;
    filter: grayscale(100%) brightness(1.5);
    transition: filter 0.3s ease;
}

.anj-logo {
    height: 40px;
}

.gamcare-logo {
    height: 25px;
}

.mediateur-logo {
    height: 40px;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 14px;
    color: #888;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-menu {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-organizations {
        justify-content: center;
        gap: 20px;
    }
    
    .org-logo {
        font-size: 11px;
        padding: 5px;
        min-height: 55px;
    }
    
    .org-img {
        height: 45px;
        max-width: 90px;
    }
    
    .age-restriction {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    
    .footer-logo h2 {
        font-size: 20px;
    }
}

/* Simple Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background-color: #282828;
    color: #EAEAEA;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: 450px;
    animation: slideInLeft 0.5s ease-out;
}

.cookie-popup.hidden {
    animation: slideOutLeft 0.5s ease-in forwards;
}

.cookie-popup-content {
    display: flex;
    flex-direction: column;
}

.cookie-popup h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #EAEAEA;
}

.cookie-popup p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #B0B0B0;
    line-height: 1.5;
}

.cookie-popup-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-popup-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-popup-btn.primary {
    background-color: #FDB813;
    color: #1A1A1A;
}

.cookie-popup-btn.primary:hover {
    background-color: #e4a60b;
}

.cookie-popup-btn.secondary {
    background-color: #555;
    color: #EAEAEA;
}

.cookie-popup-btn.secondary:hover {
    background-color: #666;
}

@keyframes slideInLeft {
    0% { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutLeft {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(-150%); opacity: 0; }
}

/* Mobile styles for cookie popup */
@media (max-width: 768px) {
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
        padding: 20px;
    }
    .cookie-popup-content {
        align-items: center;
        text-align: center;
    }
    .cookie-popup h3 {
        font-size: 18px;
    }
    .cookie-popup p {
        font-size: 14px;
    }
    .cookie-popup-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cookie-popup-btn {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
}

/* Floating Cookie Icon */
.cookie-float-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background-color: #282828;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.cookie-float-icon:hover {
    transform: scale(1.1);
}

.cookie-icon {
    width: 30px;
    height: 30px;
}

@keyframes cookieBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Cookie Consent Modal */
.cookie-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s ease;
}

.cookie-modal-content {
    background-color: #282828;
    color: #EAEAEA;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #444;
    width: 90%;
    max-width: 700px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #444;
}

.cookie-header h2 {
    font-size: 24px;
    font-weight: bold;
    color: #EAEAEA;
}

.cookie-close {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.cookie-body {
    padding: 20px 0;
}

.cookie-intro {
    font-size: 16px;
    color: #B0B0B0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-description {
    font-size: 14px;
    color: #B0B0B0;
    line-height: 1.5;
}

.cookie-link {
    color: #FDB813;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #e4a60b;
}

.cookie-categories {
    margin-top: 25px;
}

.cookie-category {
    border-bottom: 1px solid #444;
}

.cookie-category:last-child {
    border-bottom: none;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
}

.category-header:hover .category-title {
    color: #FDB813;
}

.category-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toggle-icon {
    font-size: 12px;
    color: #666;
    transition: transform 0.2s ease;
}

.category-title {
    font-size: 18px;
    font-weight: bold;
    color: #EAEAEA;
    transition: color 0.3s ease;
}

.category-status {
    font-size: 14px;
    color: #B0B0B0;
    background-color: #444;
    padding: 4px 10px;
    border-radius: 12px;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #555;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #FDB813;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.category-content {
    display: none;
    padding: 15px 0;
    border-top: 1px solid #444;
}

.category-content p {
    font-size: 14px;
    color: #B0B0B0;
    line-height: 1.6;
}

.cookie-footer {
    padding-top: 20px;
    border-top: 1px solid #444;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.cookie-btn {
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.primary {
    background-color: #FDB813;
    color: #1A1A1A;
}

.cookie-btn.primary:hover {
    background-color: #e4a60b;
}

.cookie-btn.secondary {
    background-color: #555;
    color: #EAEAEA;
}

.cookie-btn.secondary:hover {
    background-color: #666;
}

/* Cookie Modal Responsive */
@media (max-width: 768px) {
    .cookie-modal {
        padding: 10px;
    }
    .cookie-modal-content {
        margin: 5% auto;
        padding: 20px;
    }
    .cookie-header {
        padding-bottom: 10px;
    }
    .cookie-header h2 {
        font-size: 20px;
    }
    .cookie-body {
        padding: 15px 0;
    }
    .category-header {
        padding: 10px 0;
    }
    .category-content {
        padding: 10px 0;
    }
    .cookie-footer {
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
    }
    .cookie-float-icon {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
    }
    .cookie-icon {
        width: 25px;
        height: 25px;
    }
}

/* Age Gate Popup */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.age-gate-content {
    background-color: #282828;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 1px solid #444;
    color: #EAEAEA;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.age-gate-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #EAEAEA;
}

.age-gate-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #B0B0B0;
    line-height: 1.6;
}

.age-gate-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.age-gate-btn {
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #FDB813;
    color: #1A1A1A;
}

.age-gate-btn:hover {
    background-color: #e4a60b;
}

.age-gate-btn.secondary {
    background-color: #555;
    color: #EAEAEA;
}

.age-gate-btn.secondary:hover {
    background-color: #666;
}

@media (max-width: 768px) {
    .age-gate-content {
        padding: 30px;
    }
    .age-gate-content h2 {
        font-size: 24px;
    }
    .age-gate-content p {
        font-size: 15px;
    }
    .age-gate-buttons {
        flex-direction: column;
        width: 100%;
    }
} 