/* CSS Variables Definitions */
:root {
    /* Colors */
    --primary-bg: #FFFFFF;
    --secondary-bg: #F9F9F9;
    --interactive-bg: #F6F6F6;

    --text-primary: #484848;
    --text-body: #8E8E8E;

    --accent: #5199A8;
    --accent-hover: #8DC7D3;

    --alert: #FF0000;
    --border-color: #D0D0D0;

    /* Typography */
    --font-heading: 'Lora', serif;
    --font-body: 'Raleway', sans-serif;

    /* Layout */
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--primary-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 400;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease-in-out;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography specifics */
h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    letter-spacing: 2px;
}

h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.5rem;
}

.text-center {
    text-align: center;
}

/* Containers & Layouts */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.title-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin: 20px auto 40px;
}

/* Navigation Menu */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

nav.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.nav-cta {
    background-color: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 2px;
    margin-left: 20px;
}

.nav-links a.nav-cta::after {
    display: none;
}

.nav-links a.nav-cta:hover {
    background-color: var(--accent-hover);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text-primary);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transition: .25s ease-in-out;
}

.mobile-menu-btn span:nth-child(1) {
    top: 0px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 9px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 18px;
}

.mobile-menu-btn.open span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu-btn.open span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(255, 255, 255, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 50px;
}

.hero-content h1 {
    color: var(--primary-bg);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

.hero-subtitle {
    color: var(--primary-bg);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.stock-clearance {
    display: inline-block;
    background-color: var(--alert);
    color: white;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 16px;
    border-radius: 2px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Glass Effect Box */
.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    padding: 40px;
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.glass-effect h3 {
    margin-bottom: 5px;
    color: var(--text-primary);
}

.dimensions {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 15px;
}

.price {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    color: var(--accent);
    margin-bottom: 25px;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(81, 153, 168, 0.3);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.8rem;
    border-radius: 4px;
}

.full-width {
    width: 100%;
}

/* Info Section */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.info-text .lead {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.info-text p {
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

.feature-list span {
    color: var(--accent);
    font-weight: bold;
}

.info-image {
    position: relative;
    padding: 20px;
}

.image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    border: 1px solid var(--border-color);
    z-index: -1;
    border-radius: 4px;
}

/* Animated Gallery Marquee */
.marquee-container {
    width: 100%;
    margin-top: 40px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee-content {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-left 40s linear infinite;
    padding: 0 15px;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-content img {
    height: 350px;
    width: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.marquee-content img:hover {
    transform: scale(1.03);
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 15px));
        /* half width minus half gap */
    }
}

/* Form and CTA Section */
.cta-title {
    font-size: 2.5rem;
}

.cta-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--secondary-bg);
    padding: 40px 20px;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--accent);
}

.contact-card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-card h4 {
    margin-bottom: 10px;
}

.form-container {
    background: white;
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    border: 1px solid var(--border-color);
}

.form-container h3 {
    text-align: center;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--secondary-bg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(81, 153, 168, 0.1);
}

/* Form Highlight Animation on Target */
#yhteystiedot:target .form-container {
    animation: highlight-form 2s ease-out;
}

@keyframes highlight-form {
    0% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        border-color: var(--border-color);
        transform: scale(1);
    }

    15% {
        box-shadow: 0 0 30px 10px rgba(81, 153, 168, 0.5);
        border-color: var(--accent);
        transform: scale(1.02);
    }

    30% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        border-color: var(--border-color);
        transform: scale(1);
    }

    45% {
        box-shadow: 0 0 30px 10px rgba(81, 153, 168, 0.5);
        border-color: var(--accent);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        border-color: var(--border-color);
        transform: scale(1);
    }
}

/* Footer
--------------------*/
footer {
    background-color: var(--secondary-bg);
    padding: 60px 0 0;
    border-top: 1px solid rgba(99, 99, 99, 0.1);
}

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

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.company-id {
    font-size: 0.85rem;
}

.footer-details p,
.footer-contact p {
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--accent);
    color: white;
    border-color: var(--accent);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(99, 99, 99, 0.1);
    font-size: 0.85rem;
}

/* Modal Popup
--------------------*/
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--primary-bg);
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--interactive-bg);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

/* Premium Image Header for Modals */
.modal-hero-header {
    position: relative;
    padding: 60px 40px;
    background-size: cover;
    background-position: center;
    border-radius: 8px 8px 0 0;
    text-align: center;
    z-index: 1;
}

.modal-hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(30, 30, 30, 0.3), rgba(10, 10, 10, 0.8));
    border-radius: 8px 8px 0 0;
    z-index: -1;
}

.modal-hero-header h3 {
    margin: 0 0 10px 0;
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.modal-hero-header p {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
}

.modal-hero-header .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 35px;
    height: 35px;
    line-height: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.2s ease;
}

.modal-hero-header .modal-close:hover {
    background: var(--alert);
    border-color: var(--alert);
    transform: scale(1.1);
    color: white;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-body);
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--alert);
}

.modal-body {
    padding: 30px;
}

/* Image Zoom Lightbox
--------------------*/
#image-lightbox-modal {
    z-index: 3000;
    cursor: zoom-out;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3001;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

#lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#image-lightbox-modal.active #lightbox-img {
    transform: scale(1);
}

/* Responsive Design
--------------------*/
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }

    .info-grid {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-image {
        order: -1;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
    }

    .nav-links.active-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a.nav-cta {
        margin-left: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand .footer-logo,
    .footer-social {
        justify-content: center;
    }

    .form-container {
        padding: 30px 20px;
    }

    .price {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    .glass-effect {
        padding: 25px;
    }
}

/* Wheel of Fortune 
--------------------*/
.wheel-container {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 30px auto;
}

.wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: var(--alert);
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid var(--border-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 5s cubic-bezier(0.2, 0.8, 0.1, 1);
    background: conic-gradient(var(--accent) 0deg 60deg,
            #3A6E7A 60deg 120deg,
            var(--accent) 120deg 180deg,
            #3A6E7A 180deg 240deg,
            var(--accent) 240deg 300deg,
            #3A6E7A 300deg 360deg);
}

.wheel-text {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wheel-text span {
    position: absolute;
    left: 50%;
    top: 10px;
    transform-origin: 50% 115px;
    /* Radius minus top margin */
    color: white;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    font-size: 1.1rem;
    white-space: nowrap;
}

.wheel-result {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(81, 153, 168, 0.1);
    border: 1px dashed var(--accent);
    border-radius: 4px;
    color: var(--text-primary);
    animation: fade-in 0.5s ease-out;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blink-attention {
    animation: blink-attention 1.5s infinite;
    font-weight: 700 !important;
}

@keyframes blink-attention {
    0%, 100% {
        color: var(--text-primary);
    }
    50% {
        color: var(--alert);
        text-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
    }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px 20px;
    background: var(--secondary-bg);
    border-bottom: 1px solid var(--border-color);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.trust-badge-icon {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .trust-badges {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

/* Testimonials Marquee */
.testimonials-section {
    background-color: var(--primary-bg);
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-marquee-container {
    width: 100%;
    margin-top: 50px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonials-marquee-content {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-right 50s linear infinite;
    padding: 0 15px;
}

.testimonials-marquee-content:hover {
    animation-play-state: paused;
}

@keyframes scroll-right {
    from {
        transform: translateX(calc(-50% - 15px));
    }
    to {
        transform: translateX(0);
    }
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 246, 246, 0.95) 100%);
    border: 1px solid rgba(81, 153, 168, 0.2);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 250px;
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 5rem;
    font-family: var(--font-heading);
    color: rgba(81, 153, 168, 0.05);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(81, 153, 168, 0.15);
    border-color: rgba(81, 153, 168, 0.5);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 600px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-text {
    flex: 1 1 300px;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.cookie-btn-accept {
    background-color: var(--accent);
    color: white;
}

.cookie-btn-accept:hover {
    background-color: var(--accent-hover);
}

.cookie-btn-deny {
    background-color: transparent;
    color: #ccc;
    border: 1px solid #666;
}

.cookie-btn-deny:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}