/*
  ==========================================================================
  PROFESSIONAL COLORING PLATFORM — Design System
  ==========================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&family=Anton&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --pink: #ff80ab

    ;

    --purple: #ce93d8

    ;

    --orange: #82b1ff

    ;

    --yellow: #ea80fc

    ;

    --green: #b9f6ca

    ;

    --teal: #80d8ff

    ;

    --blue: #448aff

    ;

    --red: #ff4081

    ;

    --bg: #0f0620

    ;

    --bg-dark: #07031a

    ;

    --bg-section: #1a0c35

    ;

    --card-bg: #1c0e3a

    ;
    --white: #ffffff;

    --text: #e8d8ff

    ;

    --text-soft: #9c7dd0

    ;

    --nav-bg: #07031a

    ;

    --nav-text: #e8d8ff

    ;

    --nav-shadow: 0 2px 20px rgba(206,147,216,0.25)

    ;

    --hero-grad: linear-gradient(135deg, #ce93d835 0%, #ff80ab25 100%)

    ;

    --card-shadow: 0 4px 24px rgba(150,50,240,0.2)

    ;

    --font-primary: 'Inter', sans-serif

    ;

    --font-secondary: 'Anton', sans-serif

    ;

    --weight-bold: 700

    ;

    --weight-extra: 700

    ;

    --radius: 9px

    ;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 999px;

    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

    --glass-blur: 13px

    ;

    --glass-opacity: 0.76

    ;

    --bg-pattern: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E")

    ;

    --shadow-intensity: 0.10

    ;

    --card-padding: 25px

    ;

    --container: 1200px

    ;

    --shape-radius: 0px

    ;

    --shape-blob: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%)

    ;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 10px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    box-shadow: var(--nav-shadow);
    z-index: 1000;
    padding: 0 5%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--nav-text);
    letter-spacing: -0.5px;
}

.navbar nav {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-link {
    padding: 7px 16px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--nav-text);
    opacity: 0.7;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.nav-link:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
    opacity: 1;
    color: var(--purple);
}

.nav-btn {
    padding: 9px 22px;
    border-radius: var(--radius-xl);
    background: var(--purple);
    color: white;
    font-weight: 700;
    font-size: 0.88rem;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.3px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ===== PAGE HERO (index.html top strip) ===== */
.page-hero-strip {
    padding-top: 64px;
    background: var(--hero-grad);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
    padding-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.page-hero-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-pattern);
    opacity: 0.035;
    pointer-events: none;
}

.page-hero-strip .inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 5% 0;
    position: relative;
    z-index: 1;
}

.page-hero-strip h1 {
    font-family: var(--font-secondary);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.page-hero-strip h1 .accent {
    color: var(--purple);
}

.page-hero-strip p {
    color: var(--text-soft);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* ===== CATEGORY STRIP ===== */
.category-strip {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-soft);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    letter-spacing: 0.2px;
}

.cat-pill:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text);
    border-color: var(--purple);
    transform: translateY(-2px);
}

.cat-pill.active {
    background: var(--purple);
    color: white;
    border-color: var(--purple);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    max-width: var(--container, 1400px);
    margin: 0 auto;
    padding: 0 5% 6rem;
}

.gallery-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 1.8rem;
}

.gallery-meta .results-count {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ===== DRAWINGS GRID ===== */
.drawings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

/* ===== DRAWING CARD ===== */
.drawing-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    group: true;
}

.drawing-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    border-color: var(--purple);
    z-index: 2;
}

.drawing-card .card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--purple);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: var(--radius-xl);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    z-index: 5;
    opacity: 0;
    transform: translateY(4px);
    transition: var(--transition);
}

.drawing-card:hover .card-badge {
    opacity: 1;
    transform: translateY(0);
}

.drawing-card .card-img-wrap {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-section);
}

.drawing-card .card-img-wrap::after {
    content: '🎨 Color It';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    letter-spacing: 0.5px;
}

.drawing-card:hover .card-img-wrap::after {
    opacity: 1;
}

.drawing-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.drawing-card:hover img {
    transform: scale(1.06);
}

.drawing-card .card-info {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: var(--card-bg);
}

.drawing-card .card-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drawing-card .card-cat {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--purple);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Blank Canvas Card */
.drawing-card.blank-card .card-img-wrap {
    background: var(--bg-section);
    font-size: 3rem;
}

/* ===== AD SLOT ===== */
.ad-slot {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: var(--text-soft);
    font-weight: 600;
    text-align: center;
    opacity: 0.5;
}

.ad-slot.horizontal {
    width: 100%;
    height: 80px;
    margin: 0.5rem 0 1.5rem;
}

.ad-slot.box {
    width: 300px;
    height: 250px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.5rem;
    max-width: var(--container, 1400px);
    margin: 0 auto 2.5rem;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    font-size: 0.85rem;
    opacity: 0.5;
    max-width: 260px;
    line-height: 1.8;
}

.footer-col h4 {
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.1rem;
    color: var(--purple);
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    opacity: 0.5;
    margin-bottom: 0.6rem;
    transition: opacity 0.18s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: var(--container, 1400px);
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.35;
}

/* ===== STUDIO (game.html) ===== */
body.studio-body {
    background: #0f1117;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.studio-topbar {
    height: 54px;
    background: #16213e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 14px;
    flex-shrink: 0;
}

.studio-topbar .back-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.studio-topbar .back-btn:hover {
    background: var(--purple);
}

.studio-topbar .drawing-name {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    font-size: 0.88rem;
}

.topbar-actions {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

.topbar-btn {
    padding: 7px 16px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.78rem;
    border: none;
    transition: var(--transition);
}

.topbar-btn.ghost {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.topbar-btn.ghost:hover {
    background: rgba(255, 255, 255, 0.16);
}

.topbar-btn.primary {
    background: var(--purple);
    color: white;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
}

.topbar-btn.primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

.studio-main {
    flex: 1;
    display: flex;
    overflow: hidden;
    position: relative;
}

/* Left Toolbar */
.studio-toolbar {
    width: 66px;
    background: #16213e;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 3px;
    overflow-y: auto;
}

.tool-btn {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: white;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.tool-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.08);
}

.tool-btn.active {
    background: var(--purple);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
}

.tool-divider {
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 3px 0;
}

/* Canvas */
.canvas-area {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #181c24;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 24px 24px;
    overflow: hidden;
}

.canvas-board {
    background: white;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    position: relative;
}

#studioCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: crosshair;
}

#outlineOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: multiply;
    object-fit: contain;
}

/* Right Panel */
.studio-panel {
    width: 250px;
    background: #16213e;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.panel-section {
    padding: 14px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-label {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--purple);
    margin-bottom: 10px;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
}

.color-swatch {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.15s, border-color 0.15s;
}

.color-swatch:hover {
    transform: scale(1.18);
}

.color-swatch.active {
    border-color: white;
    transform: scale(1.15);
}

.color-picker-row {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    align-items: center;
}

.color-picker-row label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
}

#customColorInput {
    -webkit-appearance: none;
    appearance: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    background: none;
    overflow: hidden;
}

#customColorInput::-webkit-color-swatch-wrapper {
    padding: 0;
}

#customColorInput::-webkit-color-swatch {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.size-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.size-control input[type=range] {
    flex: 1;
    accent-color: var(--purple);
    -webkit-appearance: none;
    appearance: none;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.12);
}

.size-control input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--purple);
    cursor: pointer;
}

.size-value {
    font-size: 0.82rem;
    font-weight: 700;
    color: white;
    min-width: 26px;
    text-align: center;
}

.sticker-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
}

.sticker-btn {
    font-size: 1.3rem;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 7px;
    padding: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.sticker-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.12);
}

.sticker-btn.active {
    background: var(--purple);
}

.opacity-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Music FAB */
.music-fab {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--purple);
    color: white;
    border: none;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.music-fab:hover {
    transform: scale(1.1);
    filter: brightness(1.15);
}

.music-fab.muted {
    background: rgba(255, 255, 255, 0.1);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 84px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 17, 23, 0.95);
    color: white;
    padding: 9px 22px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.88rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toast.show {
    opacity: 1;
}

/* ===== STATIC PAGES ===== */
.page-body {
    background: var(--bg);
    padding-top: 64px;
}

.page-hero {
    background: var(--hero-grad);
    padding: 5rem 5%;
    text-align: center;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.page-hero h1 {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.page-hero p {
    font-size: 1rem;
    color: var(--text-soft);
}

.page-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.page-content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 0.8rem;
    color: var(--purple);
    font-weight: 700;
}

.page-content p,
.page-content li {
    color: var(--text-soft);
    line-height: 1.9;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.page-content ul {
    padding-left: 1.5rem;
}

.page-content a {
    color: var(--blue);
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 2.2rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 5px;
    color: var(--text);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.92rem;
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.18s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--purple);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-submit {
    background: var(--purple);
    color: white;
    padding: 12px 32px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.form-submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* ===== ANIMATIONS ===== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeup {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bounce-in {
    animation: bounce-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.fadeup {
    animation: fadeup 0.5s ease forwards;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .navbar nav .nav-link {
        display: none;
    }

    .drawings-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .studio-panel {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .cat-pill {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 600px;
    background: rgba(15, 17, 23, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.cookie-content {
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.5;
}

.cookie-content a {
    color: var(--purple);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-btn {
    padding: 10px 24px;
    background: var(--purple);
    color: white;
    border: none;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.cookie-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 16px;
        width: calc(100% - 32px);
        padding: 24px;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}