/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Background Animation */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.bg-orb-1 {
    top: 0;
    left: 25%;
    width: 400px;
    height: 400px;
    background: rgba(249, 115, 22, 0.2);
}

.bg-orb-2 {
    bottom: 0;
    right: 25%;
    width: 400px;
    height: 400px;
    background: rgba(16, 185, 129, 0.2);
    animation-delay: 0.7s;
}

.bg-orb-3 {
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: rgba(234, 179, 8, 0.1);
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.content-wrapper {
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1200px;
    z-index: 50;
}

.nav-content {
    background: rgba(24, 24, 27, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid #27272a;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    background: linear-gradient(135deg, #f97316, #eab308);
    padding: 0.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    color: white;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fb923c, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #a1a1aa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #fff;
}

.btn-primary {
    background: linear-gradient(90deg, #f97316, #eab308);
    color: #000;
    padding: 0.625rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: rgba(24, 24, 27, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid #27272a;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-link {
    display: block;
    color: #a1a1aa;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 0;
    transition: color 0.3s;
}

.mobile-link:hover {
    color: #fff;
}

.mobile-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Hero Section */
.hero-section {
    padding: 10rem 1rem 8rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.1), rgba(234, 179, 8, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 2rem;
}

.badge svg {
    color: #fb923c;
}

.badge span {
    color: #fb923c;
    font-size: 0.875rem;
    font-weight: 700;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(90deg, #fb923c, #fbbf24, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #a1a1aa;
    line-height: 1.75;
    max-width: 32rem;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-hero {
    background: linear-gradient(90deg, #f97316, #eab308);
    color: #000;
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    font-weight: 900;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-hero:hover {
    box-shadow: 0 0 50px rgba(249, 115, 22, 0.5);
}

.btn-hero svg {
    transition: transform 0.3s;
}

.btn-hero:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: #18181b;
    border: 2px solid #3f3f46;
    color: #fff;
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #27272a;
}

.hero-right {
    position: relative;
    height: 500px;
}

.stat-card {
    position: absolute;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: rotate(0deg) !important;
}

.stat-card-1 {
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    transform: rotate(3deg);
    width: 16rem;
}

.stat-card-2 {
    top: 8rem;
    left: 0;
    background: linear-gradient(135deg, #f97316, #ef4444);
    transform: rotate(-6deg);
    width: 14rem;
}

.stat-card-3 {
    bottom: 0;
    right: 3rem;
    background: linear-gradient(135deg, #eab308, #f59e0b);
    transform: rotate(6deg);
    width: 15rem;
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 500;
    opacity: 0.9;
}

/* Products Section */
.products-section {
    padding: 5rem 1rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.75rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.title-block {
    display: block;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #a1a1aa;
    max-width: 42rem;
}

.text-center {
    text-align: center;
}

.text-center .section-subtitle {
    margin: 0 auto;
}

.category-pills {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 3rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.pill {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid #27272a;
    background: #18181b;
    color: #a1a1aa;
    cursor: pointer;
    transition: all 0.3s;
}

.pill:hover {
    background: #27272a;
}

.pill.active {
    background: linear-gradient(90deg, #f97316, #eab308);
    color: #000;
    border: none;
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
    transform: scale(1.05);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.product-card {
    background: #18181b;
    border: 2px solid #27272a;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s;
}

.product-card:hover {
    border-color: rgba(249, 115, 22, 0.5);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.product-icon {
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.product-card:hover .product-icon {
    transform: scale(1.1);
}

.icon-emerald {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.icon-orange {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.icon-yellow {
    background: linear-gradient(135deg, #eab308, #f59e0b);
}

.icon-blue {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.icon-pink {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.icon-purple {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.product-icon svg {
    color: white;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(234, 179, 8, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
}

.rating svg {
    color: #fbbf24;
}

.rating span {
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.product-description {
    color: #a1a1aa;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.product-features {
    margin-bottom: 2rem;
}

.feature {
    color: #d4d4d8;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.product-footer {
    padding-top: 1.5rem;
    border-top: 1px solid #27272a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.commission-label {
    font-size: 0.75rem;
    color: #71717a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.commission-value {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, #fb923c, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-claim {
color: white;
padding: 0.75rem 1.5rem;
border-radius: 0.75rem;
font-weight: 700;
border: none;
cursor: pointer;
display: flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s;
text-decoration: none; /* Add this line */
}

.btn-claim:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.btn-emerald {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.btn-orange {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.btn-yellow {
    background: linear-gradient(135deg, #eab308, #f59e0b);
}

.btn-blue {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.btn-pink {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.btn-purple {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

/* Benefits Section */
.benefits-section {
    padding: 8rem 1rem;
    position: relative;
}

.benefits-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #18181b, #000);
    transform: skewY(-3deg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

.benefit-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid #27272a;
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: rgba(249, 115, 22, 0.5);
}

.benefit-card:nth-child(1):hover {
    border-color: rgba(16, 185, 129, 0.5);
}

.benefit-card:nth-child(3):hover {
    border-color: rgba(234, 179, 8, 0.5);
}

.benefit-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: transform 0.3s;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon svg {
    color: white;
}

.benefit-title {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #a1a1aa;
    line-height: 1.75;
    font-size: 1.125rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 1rem;
}

.cta-wrapper {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f97316, #eab308);
    border-radius: 3rem;
    filter: blur(40px);
    opacity: 0.5;
}

.cta-content {
    position: relative;
    background: linear-gradient(90deg, #f97316, #eab308);
    border-radius: 3rem;
    padding: 4rem;
    text-align: center;
}

.cta-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #000;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 700;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-cta-primary {
    background: #000;
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 900;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.btn-cta-primary:hover {
    transform: scale(1.05);
}

.btn-cta-primary svg {
    transition: transform 0.3s;
}

.btn-cta-primary:hover svg {
    transform: translateX(8px);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 0, 0, 0.3);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 900;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    padding: 4rem 1rem;
    border-top: 1px solid #27272a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-brand {
    font-size: 1.125rem;
    font-weight: 900;
}

.footer-description {
    color: #71717a;
    font-size: 0.875rem;
    line-height: 1.75;
}

.footer-heading {
    color: white;
    font-weight: 900;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #71717a;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #27272a;
    text-align: center;
    color: #52525b;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Responsive Design */
@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }

    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .stat-card-1, .stat-card-2, .stat-card-3 {
        width: 12rem;
        padding: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-right {
        height: 400px;
    }

    .stat-card {
        padding: 1rem;
    }

    .cta-content {
        padding: 2rem;
    }
}
/* Ensure button styles work on anchor tags */
a.btn-primary,
a.btn-hero,
a.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

/* Specific styles for the hero button anchor */
a.btn-hero {
    background: linear-gradient(90deg, #f97316, #eab308);
    color: #000;
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    font-weight: 900;
    font-size: 1.125rem;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

a.btn-hero:hover {
    box-shadow: 0 0 50px rgba(249, 115, 22, 0.5);
    text-decoration: none;
    color: #000;
}

a.btn-hero:hover svg {
    transform: translateX(4px);
}

/* Specific styles for CTA primary button anchor */
a.btn-cta-primary {
    background: #000;
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 900;
    font-size: 1.125rem;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

a.btn-cta-primary:hover {
    transform: scale(1.05);
    text-decoration: none;
    color: white;
}

a.btn-cta-primary:hover svg {
    transform: translateX(8px);

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #18181b;
    border-top: 1px solid #27272a;
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(20px);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.cookie-text p {
    color: #a1a1aa;
    margin: 0;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie-preferences {
    background: #27272a;
    color: #fff;
    border: 1px solid #3f3f46;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-reject {
    background: #27272a;
    color: #fff;
    border: 1px solid #3f3f46;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background: linear-gradient(90deg, #f97316, #eab308);
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-preferences:hover,
.btn-cookie-reject:hover {
    background: #3f3f46;
}

.btn-cookie-accept:hover {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.active {
    display: flex;
}

.modal-content {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 1.5rem;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #27272a;
}

.modal-header h3 {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    color: #a1a1aa;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #fff;
}

.modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #0f0f0f;
    border-radius: 0.75rem;
    border: 1px solid #27272a;
}

.category-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #3f3f46;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background: linear-gradient(90deg, #f97316, #eab308);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: #6e3bdc;
    cursor: not-allowed;
}

.category-info h4 {
    color: #fff;
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.category-info p {
    color: #a1a1aa;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
}

.cookie-links {
    text-align: center;
    margin-top: 1rem;
}

.cookie-links a {
    color: #6e3bdc;
    text-decoration: none;
    font-weight: 600;
}

.cookie-links a:hover {
    text-decoration: underline;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #27272a;
    text-align: center;
}

.btn-save-preferences {
    background: linear-gradient(90deg, #6e3bdc, #8a5ae5);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-save-preferences:hover {
    box-shadow: 0 0 20px rgba(110, 59, 220, 0.5);
}

/* Responsive Design for Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .modal-content {
        margin: 1rem;
    }
    
    .category-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .toggle {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-banner {
        padding: 1rem;
    }
}