* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #2c5f5d 0%, #1e4746 100%);
    min-height: 100vh;
    color: white;
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 24px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Warning Banner */
.warning-banner {
    background-color: rgba(128, 128, 128, 0.9);
    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: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-description {
    margin-bottom: 40px;
}

.section-description p {
    font-size: 16px;
    margin: 5px 0;
    color: #e0f2f1;
}

/* Offers Grid */
.offers-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

.offer-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    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.3);
}



.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(1.1);
}

.offer-details {
    flex: 1;
    color: #333;
}

.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: #2e8b57;
    font-size: 16px;
}

.license-info {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border: 2px solid #2e8b57;
    border-radius: 8px;
    padding: 8px 12px;
    margin-top: 15px !important;
    font-size: 16px !important;
    font-weight: 600;
    color: #1b5e20 !important;
}

.license-info::before {
    content: none !important;
}

.offer-bonus {
    text-align: left;
    flex: 1;
    color: #333;
}

.promo-label {
    font-size: 18px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.promo-value {
    font-size: 26px;
    font-weight: bold;
    color: #2e8b57;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.offer-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 250px;
}

.activate-btn {
    background: linear-gradient(45deg, #1976d2, #2196f3);
    color: white;
    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: linear-gradient(45deg, #1565c0, #1976d2);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.4);
}

.rating {
    display: flex;
    align-items: center;
}

.stars {
    font-size: 22px;
    color: #ffc107;
}

/* Comparison Section */
.comparison-section {
    margin: 60px 0;
    padding: 40px 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 30px;
}

.comparison-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.comparison-intro {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.comparison-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #e9ecef;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.comparison-icon {
    font-size: 28px;
}

.comparison-header h3 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.points-section {
    margin-bottom: 25px;
}

.points-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.points-title.positive {
    color: #28a745;
}

.points-title.negative {
    color: #dc3545;
}

.points-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.points-list li {
    font-size: 16px;
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #333;
    line-height: 1.5;
}

.how-to-choose {
    background: #e8f5e9;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid #c8e6c9;
}

.how-to-choose-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.how-to-choose-header h3 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.choose-list li {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.verdict-section {
    background: linear-gradient(135deg, #fff3e0, #fce4ec);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #ffcdd2;
}

.verdict-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.verdict-header h3 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.verdict-recommendations {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recommendation {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.7);
    border-radius: 12px;
    border-left: 5px solid #ffc107;
}

.recommendation.important {
    border-left-color: #ff5722;
    background: rgba(255,87,34,0.1);
}

.rec-icon {
    font-size: 20px;
    margin-top: 2px;
}

.recommendation p {
    margin: 0;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .offer-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }
    
    .operator-img {
        max-width: 100px;
        max-height: 70px;
    }
    
    .offer-features li {
        font-size: 16px;
        margin: 10px 0;
    }
    
    .license-info {
        font-size: 14px !important;
        padding: 6px 10px;
        margin-top: 12px !important;
    }
    
    .promo-value {
        font-size: 22px;
    }
    
    .activate-btn {
        font-size: 18px;
        padding: 14px 30px;
    }
    
    .stars {
        font-size: 20px;
    }
    
    .offer-details {
        text-align: center;
    }
    
    .offer-features {
        text-align: center;
    }
    
    .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: 18px;
    }
    
    .points-title {
        font-size: 16px;
    }
    
    .points-list li {
        font-size: 14px;
    }
    
    .choose-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .choose-list li {
        font-size: 14px;
    }
    
    .verdict-section {
        padding: 20px;
    }
    
    .verdict-header h3 {
        font-size: 18px;
    }
    
    .recommendation {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .recommendation p {
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.footer-logo .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-icon {
    font-size: 24px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo h2 {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-menu {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-organizations {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.org-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    min-height: 70px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.org-logo:hover .org-img {
    transform: scale(1.1);
    opacity: 0.8;
}

.org-logo:hover {
    transform: translateY(-2px);
}

.age-restriction {
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 14px;
}

.org-img {
    height: 60px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.anj-logo {
    background: none;
    border: none;
    padding: 5px;
}

.gamcare-logo {
    background: none;
    padding: 5px;
}

.mediateur-logo {
    background: none;
    padding: 5px;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 12px;
    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;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    display: none;
    animation: slideInLeft 0.4s ease-out;
}

.cookie-popup-content {
    padding: 24px;
}

.cookie-popup h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
}

.cookie-popup p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.cookie-popup-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-popup-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid;
    flex: 1;
    min-width: 90px;
}

.cookie-popup-btn.primary {
    background: #2e4f4f;
    color: white;
    border-color: #2e4f4f;
}

.cookie-popup-btn.primary:hover {
    background: #1e3f3f;
    border-color: #1e3f3f;
}

.cookie-popup-btn.secondary {
    background: white;
    color: #666;
    border-color: #ddd;
}

.cookie-popup-btn.secondary:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* Mobile styles for cookie popup */
@media (max-width: 768px) {
    .cookie-popup {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .cookie-popup-content {
        padding: 20px;
    }

    .cookie-popup h3 {
        font-size: 16px;
    }

    .cookie-popup p {
        font-size: 13px;
    }

    .cookie-popup-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-popup-btn {
        min-width: auto;
        padding: 10px 16px;
    }
}

/* Floating Cookie Icon */
.cookie-float-icon {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2e4f4f, #1e3f3f);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 9999;
    animation: cookieBounce 2s infinite;
}

.cookie-float-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #1e3f3f, #0e2f2f);
}

.cookie-icon {
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

@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: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.cookie-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 1px solid #eee;
}

.cookie-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.cookie-close:hover {
    color: #333;
}

.cookie-body {
    padding: 25px 30px;
}

.cookie-intro {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
}

.cookie-link {
    color: #2196f3;
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-categories {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.cookie-category {
    border-bottom: 1px solid #eee;
}

.cookie-category:last-child {
    border-bottom: none;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    cursor: pointer;
}

.category-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.toggle-icon {
    font-size: 12px;
    color: #666;
    transition: transform 0.2s ease;
}

.category-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.category-status {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.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: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2196f3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.category-content {
    display: none;
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #eee;
}

.category-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cookie-footer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding: 20px 30px 25px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid;
}

.cookie-btn.primary {
    background: #2e4f4f;
    color: white;
    border-color: #2e4f4f;
}

.cookie-btn.primary:hover {
    background: #1e3f3f;
    border-color: #1e3f3f;
}

.cookie-btn.secondary {
    background: white;
    color: #666;
    border-color: #ddd;
}

.cookie-btn.secondary:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

/* Cookie Modal Responsive */
@media (max-width: 768px) {
    .cookie-modal {
        padding: 10px;
        align-items: flex-start;
        padding-top: 50px;
    }
    
    .cookie-modal-content {
        max-height: 85vh;
    }
    
    .cookie-header {
        padding: 20px 20px 15px;
    }
    
    .cookie-header h2 {
        font-size: 18px;
    }
    
    .cookie-body {
        padding: 20px;
    }
    
    .category-header {
        padding: 12px 15px;
    }
    
    .category-content {
        padding: 12px 15px;
    }
    
    .cookie-footer {
        padding: 15px 20px 20px;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    /* Floating Cookie Icon Mobile */
    .cookie-float-icon {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    
    .cookie-icon {
        font-size: 20px;
    }
}

/* Age Verification Modal */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-in;
}

.age-verification-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.age-verification-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease-out;
}

.age-verification-header {
    margin-bottom: 30px;
}

.age-verification-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.age-verification-header h2 {
    color: #2e4f4f;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    text-shadow: none;
}

.age-verification-body {
    margin-bottom: 30px;
    color: #333;
}

.age-verification-body p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.age-verification-body p:first-child {
    font-size: 18px;
    color: #d32f2f;
}

.age-verification-body p:last-child {
    font-size: 20px;
    font-weight: 600;
    color: #2e4f4f;
    margin-bottom: 0;
}

.age-verification-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
}

.age-btn {
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.age-btn-yes {
    background: linear-gradient(45deg, #2e8b57, #3cb371);
    color: white;
    border: 2px solid transparent;
}

.age-btn-yes:hover {
    background: linear-gradient(45deg, #3cb371, #2e8b57);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 139, 87, 0.3);
}

.age-btn-no {
    background: white;
    color: #d32f2f;
    border: 2px solid #d32f2f;
}

.age-btn-no:hover {
    background: #d32f2f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
}

.age-verification-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    margin-top: 20px;
}

.age-verification-footer p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile responsive for age verification */
@media (max-width: 768px) {
    .age-verification-content {
        padding: 30px 25px;
        max-width: 95%;
    }
    
    .age-verification-header h2 {
        font-size: 24px;
    }
    
    .age-verification-icon {
        font-size: 40px;
    }
    
    .age-verification-body p {
        font-size: 15px;
    }
    
    .age-verification-body p:first-child {
        font-size: 16px;
    }
    
    .age-verification-body p:last-child {
        font-size: 18px;
    }
    
    .age-verification-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .age-btn {
        padding: 12px 20px;
        font-size: 15px;
        min-width: auto;
        width: 100%;
    }
} 