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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0f172a;
}

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

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: #8b5cf6;
    color: white;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #8b5cf6;
    border: 1px solid #8b5cf6;
}

.btn-outline:hover {
    background-color: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

/* Header Styles */
.header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background-color: #1e293b;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    height: 40px;
    width: auto;
    margin-right: 15px;
}

.logo h2 {
    color: #8b5cf6;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu ul li {
    margin: 0 15px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #8b5cf6;
}

.nav-buttons .btn {
    margin-left: 15px;
}

/* Mobile menu styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #e2e8f0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Responsive Header */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1e293b;
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 99;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }
    
    .nav-menu ul li {
        margin: 15px 0;
        padding: 10px 0;
    }
    
    .nav-menu ul li a {
        font-size: 18px;
        padding: 10px 20px;
        display: block;
        transition: all 0.3s ease;
    }
    
    .nav-menu ul li a:hover {
        background-color: rgba(139, 92, 246, 0.1);
        color: #8b5cf6;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .logo h2 {
        font-size: 20px;
    }
    
    .logo-icon {
        height: 30px;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .navbar {
        flex-direction: row;
    }
    
    .logo h2 {
        font-size: 18px;
    }
    
    .logo-icon {
        height: 25px;
    }
    
    .nav-menu {
        top: 65px;
    }
    
    .nav-menu ul li {
        margin: 10px 0;
    }
    
    .nav-menu ul li a {
        font-size: 16px;
        padding: 8px 15px;
    }
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.hero-content {
    flex: none;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #f8fafc;
}

.hero-content p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons .btn {
    margin-top: 15px;
    margin-right: 15px;
    margin-left: 15px;
}

.card-img {
    max-width: 400px;
    width: 100%;
}

.hero-image {
    flex: none;
    text-align: center;
    margin-top: 30px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Responsive Design for Hero Image */
.hero-image .hero-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .hero-image .hero-img {
        max-width: 100%;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .hero-image .hero-img {
        border-radius: 6px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    }
}

/* About Section */
.trusted-by {
    padding: 60px 0;
    background-color: #1e293b;
    text-align: center;
}

.trusted-by h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.trusted-by p {
    color: #cbd5e1;
    margin-bottom: 20px;
    font-size: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Games Section */
.features {
    padding: 100px 0;
    background-color: #0f172a;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #f1f5f9;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
}

.feature-card {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    background-color: #1e293b;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

.feature-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #6366f1);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #f1f5f9;
}

.feature-card p {
    color: #cbd5e1;
    margin-bottom: 20px;
}

.feature-card .btn {
    width: 100%;
}

.full-screen-card {
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid #8b5cf6;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.full-screen-card h3 {
    font-size: 36px;
    margin-bottom: 25px;
}

.full-screen-card p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.full-screen-card .feature-icon {
    font-size: 60px;
    margin-bottom: 30px;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: #1e293b;
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.how-it-works > .container > p {
    text-align: center;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
}

.workflows {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.workflow-card {
    background-color: #0f172a;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.workflow-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #6366f1);
}

.workflow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

.workflow-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.workflow-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #f1f5f9;
}

.workflow-card p {
    color: #cbd5e1;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #0f172a;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #f1f5f9;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #1e293b;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.testimonial-card:before {
    content: "\"";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: #8b5cf6;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-card p {
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 20px;
    margin-top: 35px;
    position: relative;
    z-index: 1;
}

.testimonial-author h4 {
    color: #f1f5f9;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-style: normal;
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: #1e293b;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #f1f5f9;
}

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

.faq-item {
    background-color: #0f172a;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #f1f5f9;
}

.faq-item p {
    color: #cbd5e1;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.contact-form-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.contact-form-section > .container > p {
    text-align: center;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
}

.contact-form-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    flex: 1;
    background-color: #1e293b;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e2e8f0;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #334155;
    background-color: #0f172a;
    color: #e2e8f0;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

.contact-info-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: #0f172a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.info-card h3 {
    color: #f1f5f9;
    margin-bottom: 10px;
    font-size: 20px;
}

.info-card p {
    color: #cbd5e1;
    font-size: 16px;
}

/* Contact Section */
.cta {
    padding: 100px 0;
    text-align: center;
    color: white;
}

.cta h3 {
    margin-top: 10px;
}

/* Disclaimer Section */
.disclaimer {
    background: linear-gradient(135deg, #581c87 0%, #7c3aed 100%);
    border-top: 1px solid #0f172a;
    border-bottom: 1px solid #0f172a;
    padding: 40px 0;
}

.disclaimer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.disclaimer-text h3 {
    color: #f1f5f9;
    margin-bottom: 20px;
    font-size: 24px;
}

.disclaimer-text p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.disclaimer-text p:last-child {
    margin-bottom: 0;
}

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

.plus-18 {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    font-size: 28px;
    font-weight: bold;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background-color: #0f172a;
    color: white;
    border-top: 1px solid #1e293b;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: white;
}

.footer-links ul {
    display: flex;
    list-style: none;
}

.footer-links ul li {
    margin: 0 15px;
}

.footer-links ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
}

/* Footer Images */
.footer-images {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px 0;
}

.footer-images img {
    max-height: 50px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-images img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1e293b;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-content p {
        margin: 0 auto 30px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 30px;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form-container {
        flex-direction: column;
    }
    
    .disclaimer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .disclaimer-text {
        margin-bottom: 30px;
    }
    
    .plus-18 {
        margin: 0 auto;
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {

    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .how-it-works h2,
    .testimonials h2,
    .faq h2,
    .cta h2,
    .features h2,
    .contact-form-section h2 {
        font-size: 28px;
    }
    
    .features-grid,
    .workflows,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-links ul {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links ul li {
        margin: 10px 0;
    }
    
    .footer-images {
        gap: 15px;
    }
    
    .footer-images img {
        max-height: 40px;
    }
}

@media (max-width: 576px) {
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu ul li {
        margin: 10px 0;
    }
    
    .nav-buttons .btn {
        margin: 5px;
        display: block;
        width: 100%;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .contact-form,
    .info-card {
        padding: 20px;
    }
    
    .disclaimer {
        padding: 30px 0;
    }
    
    .disclaimer-text h3 {
        font-size: 20px;
    }
    
    .disclaimer-text p {
        font-size: 14px;
    }
    
    .footer-images {
        gap: 10px;
    }
    
    .footer-images img {
        max-height: 30px;
    }
    
    .logo-icon {
        height: 30px;
        margin-right: 10px;
    }
    
    .logo h2 {
        font-size: 20px;
    }
}

/* Game Page Styles */
.game-section {
    padding: 2rem 0;
}

.game-header {
    text-align: center;
    margin-bottom: 2rem;
}

.game-header h2 {
    font-size: 2.5rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.game-header p {
    font-size: 1.2rem;
    color: #94a3b8;
}

.game-container {
    position: relative;
    width: 100%;
    height: 70vh;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 41, 59, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    color: #e2e8f0;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(139, 92, 246, 0.3);
    border-top: 5px solid #8b5cf6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#gameFrame {
    width: 100%;
    height: 100%;
    background: #000;
}

.game-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.info-card {
    background: #1e293b;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: #e2e8f0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card p {
    color: #94a3b8;
    line-height: 1.6;
}

.info-card ul {
    padding-left: 1.5rem;
}

.info-card li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Responsive Game Page */
@media (max-width: 768px) {
    .game-header h2 {
        font-size: 2rem;
    }
    
    .game-container {
        height: 60vh;
    }
    
    .game-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .game-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .game-container {
        height: 50vh;
    }
    
    .game-header h2 {
        font-size: 1.8rem;
    }
}

/* Policy Pages Styles */
.policy-section {
    padding: 4rem 0;
    background-color: #0f172a;
}

.policy-content h1 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-content h2 {
    color: #e2e8f0;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.policy-content h3 {
    color: #cbd5e1;
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
}

.policy-content p {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-content ul {
    color: #94a3b8;
    margin: 1rem 0 1rem 2rem;
}

.policy-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.policy-content strong {
    color: #e2e8f0;
}

/* Responsive Policy Pages */
@media (max-width: 768px) {
    .policy-content h1 {
        font-size: 2rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
    
    .policy-content h3 {
        font-size: 1.2rem;
    }
    
    .policy-content p {
        font-size: 1rem;
    }
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    display: block;
    transform: translateY(0);
}

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

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h3 {
    color: #8b5cf6;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cookie-consent-text p {
    color: #cbd5e1;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
}

.cookie-consent-accept {
    background-color: #8b5cf6;
    color: white;
}

.cookie-consent-accept:hover {
    background-color: #7c3aed;
    transform: translateY(-2px);
}

.cookie-consent-decline {
    background-color: transparent;
    color: #94a3b8;
    border: 1px solid #334155;
}

.cookie-consent-decline:hover {
    background-color: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.cookie-consent-link {
    color: #8b5cf6;
    text-decoration: none;
}

.cookie-consent-link:hover {
    text-decoration: underline;
}

/* Responsive Cookie Consent */
@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-text {
        min-width: 100%;
    }
    
    .cookie-consent-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-consent-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-consent-text p {
        font-size: 0.8rem;
    }
    
    .cookie-consent-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}
