:root {
    /* REMOVED: --sidebar-width: 280px; */
    --header-height: 64px;
    /* Modern Dark Palette (Trae.ai Inspired - True Black) */
    --bg-primary: #000000;
    /* Pure Black */
    --bg-secondary: #0a0a0a;
    /* Deep Neutral */
    --text-primary: #e5e5e5;
    /* Neutral 200 */
    --text-secondary: #a3a3a3;
    /* Neutral 400 */
    --text-heading: #ffffff;
    /* White */
    --border-color: #262626;
    /* Neutral 800 */
    --accent-color: #3b82f6;
    /* Blue 500 (Kept for pop) */
    --accent-text-color: #60a5fa;
    /* Blue 400 */
    --hover-bg-color: #171717;
    /* Neutral 900 */
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    /* Deeper shadow */
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --completed-color: #39ff14;
    /* Bright Neon Green */
    --completed-bg: rgba(22, 163, 74, 0.15);
    /* Green 900/15 */
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-4px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(4px);
    }
}

.animate-shake {
    animation: shake 0.4s cubic-bezier(.36, .07, .19, .97) both;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    /* Pure Black */
    background-image:
        radial-gradient(at 0% 0%, rgba(56, 189, 248, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(168, 85, 247, 0.05) 0px, transparent 50%);
    color: var(--text-primary);
    transition: background-color 0.3s, color 0.3s;
    min-height: 100vh;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* --- Global Cursor Settings --- */
/* --- Global Cursor Settings --- */
* {
    cursor: none !important;
    /* Hide default cursor globally */
}

/* --- Custom Cursor --- */
#custom-cursor {
    pointer-events: none;
    transition: width 0.3s, height 0.3s;
}

#custom-cursor.cursor-hover div {
    background: #f472b6;
    /* Pink solid for intensity */
    box-shadow: 0 0 30px 5px rgba(236, 72, 153, 1);
    /* Intense Neon Pink */
    transform: scale(3.5);
    /* Larger expansion since base is small */
    border-color: #fbcfe8;
    transition: transform 0.2s cubic-bezier(0.1, 0.9, 0.2, 1), background 0.2s;
}



.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
    /* Optimize for movement */
    transition: transform 0.1s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Smooth smoothing */
}


.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation-name: float-orb, color-shift;
    animation-timing-function: ease-in-out, linear;
    animation-iteration-count: infinite, infinite;
    animation-direction: alternate, normal;
}

.orb-1 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #3b82f6, #8b5cf6);
    top: -10%;
    left: -10%;
    animation-duration: 25s, 45s;
}

.orb-2 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, #ec4899, #f43f5e);
    bottom: -10%;
    right: -10%;
    animation-duration: 30s, 50s;
    animation-delay: -5s, 0s;
}

.orb-3 {
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, #10b981, #3b82f6);
    top: 40%;
    left: 40%;
    animation-duration: 22s, 60s;
    animation-delay: -10s, -10s;
    opacity: 0.4;
}

.orb-4 {
    width: 25vw;
    height: 25vw;
    background: radial-gradient(circle, #f59e0b, #ef4444);
    top: 10%;
    right: 20%;
    animation-duration: 28s, 55s;
    animation-delay: -5s, -20s;
    opacity: 0.5;
}

.orb-5 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, #8b5cf6, #ec4899);
    bottom: 20%;
    left: 10%;
    animation-duration: 32s, 65s;
    animation-delay: -15s, -5s;
    opacity: 0.45;
}

@keyframes float-orb {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(15vw, 10vh) rotate(45deg);
    }

    66% {
        transform: translate(-10vw, 20vh) rotate(-20deg);
    }

    100% {
        transform: translate(5vw, -15vh) rotate(20deg);
    }
}



@keyframes color-shift {
    0% {
        filter: blur(80px) hue-rotate(0deg);
    }

    100% {
        filter: blur(80px) hue-rotate(360deg);
    }
}

/* --- Modernized Styles --- */

/* REMOVED: All .sidebar, .sidebar a, .sidebar-heading styles */

/* --- Liquid Glass Effect --- */
.card {
    background: rgba(15, 15, 15, 0.4);
    /* More transparent */
    backdrop-filter: blur(24px) saturate(180%);
    /* Deeper blur + saturation */
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    /* Highlight top */
    /* REMOVED: border-left: 1px solid rgba(255, 255, 255, 0.15); */
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    /* Inner rim */
    border-radius: 20px;
    /* Smoother curves */
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

/* Liquid Shimmer on Hover */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(115deg,
            transparent 0%,
            transparent 40%,
            rgba(255, 255, 255, 0.05) 45%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0.05) 55%,
            transparent 60%,
            transparent 100%);
    transform: skewX(-20deg);
    transition: 0.5s;
    pointer-events: none;
}

.card:hover::before {
    left: 100%;
    transition: 0.7s;
}

.card:hover {
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(59, 130, 246, 0.2),
        /* Gloomy glow */
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
}

.header,
.footer {
    background: rgba(15, 15, 15, 0.4);
    /* Match Card */
    backdrop-filter: blur(24px) saturate(180%);
    /* Match Card */
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    /* Highlight top */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    z-index: 50;
    /* Ensure on top */
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    /* Emphasize top border for footer */
    border-bottom: none;
}

.listen-btn {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.listen-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    color: #60a5fa;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
}

.listen-btn:active {
    transform: scale(0.96);
    background: rgba(22, 163, 74, 0.2);
    /* Green tint */
    color: #4ade80;
}

.pinyin {
    font-family: 'Courier New', Courier, monospace;
    background-color: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    /* slate-400 */
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hanzi {
    font-size: 1.15em;
    font-weight: 500;
    overflow-wrap: break-word;
    word-break: break-word;
    cursor: pointer;
    /* Interaction hint */
    position: relative;
    /* For icon positioning */
    display: inline-flex;
    align-items: center;
    gap: 4px;
    /* Space between text and icon */
}

/* Speaker Icon Indicator */
.hanzi::after {
    content: '\1F50A';
    /* Speaker with three waves */
    font-size: 0.6em;
    /* Smaller than text */
    opacity: 0.5;
    filter: grayscale(100%);
    transition: opacity 0.2s, transform 0.2s, filter 0.2s;
    margin-left: 2px;
}

.hanzi:hover::after {
    opacity: 1;
    filter: none;
    transform: scale(1.1);
}

.hanzi.speaking::after {
    color: var(--accent-color);
    animation: pulse-speak 1s infinite;
}

@keyframes pulse-speak {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.callout {
    background-color: rgba(56, 189, 248, 0.1);
    /* sky-500/10 */
    border-left: 4px solid var(--accent-color);
    color: #e0f2fe;
    /* sky-100 */
    border-radius: 6px;
}

.callout .pinyin {
    background-color: #e0f2fe;
    /* sky-100 */
    color: #075985;
    /* sky-900 */
    border-color: #bae6fd;
    /* sky-200 */
}

.table {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

.table th {
    background-color: var(--bg-secondary);
    color: var(--text-heading);
    font-weight: 600;
}

.table td,
.table th {
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 16px;
    color: var(--text-primary);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table tbody tr:hover {
    background-color: var(--hover-bg-color);
}

/* REMOVED: .menu-btn styles */
/* REMOVED: #sidebar-overlay styles */
/* REMOVED: #sidebar-container styles */

/* Main content padding */
.main-content {
    padding-top: var(--header-height);
    /* REMOVED: padding-left */
}

/* REMOVED: Desktop layout media query for sidebar */

/* --- NEW STYLES FOR PAGINATION & PROGRESS --- */
.content-page {
    /* display: none; */
    /* REMOVED for MPA */
    display: block;
    /* Always visible in MPA */
}

.content-page.active {
    display: block;
}

/* REMOVED: Progress Icons in Sidebar */

/* Page Navigation Buttons */
.page-footer-nav {
    display: flex;
    flex-direction: column;
    /* MOBILE-FIRST: Stack button groups */
    gap: 1rem;
    /* Space between button groups */
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.page-footer-nav>div {
    /* Target the immediate children divs */
    display: grid;
    /* Make buttons stack */
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {

    /* sm breakpoint */
    .page-footer-nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .page-footer-nav>div {
        display: flex;
        /* Go back to flex */
        flex-direction: row;
        grid-template-columns: none;
        /* Reset grid */
    }
}

.mark-complete-btn,
.next-page-btn,
.prev-page-btn,
.home-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
}

.mark-complete-btn:hover,
.next-page-btn:hover,
.prev-page-btn:hover {
    background-color: var(--hover-bg-color);
    border-color: #cbd5e1;
    /* slate-300 */
}

.mark-complete-btn.is-completed {
    background-color: var(--completed-bg);
    border-color: #bbf7d0;
    /* green-200 */
    color: var(--completed-color);
}

.next-page-btn {
    background-color: #16a34a;
    /* green-600 */
    border-color: #16a34a;
    /* green-600 */
    color: white;
}

.next-page-btn:hover {
    background-color: #15803d;
    /* green-700 */
    border-color: #15803d;
    /* green-700 */
    color: white;
}

.prev-page-btn {
    border-color: #dc2626;
    /* red-600 */
    color: #dc2626;
    /* red-600 */
}

.prev-page-btn:hover {
    background-color: #fef2f2;
    /* red-50 */
    border-color: #b91c1c;
    /* red-700 */
    color: #b91c1c;
    /* red-700 */
}

.home-page-btn {
    border-color: #3b82f6;
    /* blue-500 */
    color: #3b82f6;
    /* blue-500 */
}

.home-page-btn:hover {
    background-color: #eff6ff;
    /* blue-50 */
    border-color: #2563eb;
    /* blue-600 */
    color: #2563eb;
    /* blue-600 */
}

/* MODAL STYLES (Unchanged) */
#next-lesson-modal {
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

#next-lesson-modal[aria-hidden="true"] {
    opacity: 0;
    visibility: hidden;
}

#next-lesson-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

#next-lesson-modal[aria-hidden="false"] #modal-overlay {
    opacity: 1;
}

#next-lesson-modal[aria-hidden="false"]>div:last-child {
    transform: scale(1);
    opacity: 1;
}

#modal-overlay {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#next-lesson-modal>div:last-child {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.2s ease-in-out;
}

/* --- NEW: Home Page Navigation Styles --- */
.nav-dropdown summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-secondary);
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
    font-weight: 600;
    color: var(--text-heading);
}

.nav-dropdown summary:hover {
    background-color: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--accent-text-color);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.1);
}

.nav-dropdown summary::after {
    /* Dropdown arrow */
    content: '▼';
    font-size: 0.7em;
    color: var(--text-secondary);
    transition: transform 0.2s;
}

.nav-dropdown[open] summary::after {
    transform: rotate(180deg);
}

.nav-dropdown-content {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    margin-top: -8px;
    /* Pull up to meet summary */
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    color: #e2e8f0;
    /* slate-200 - Much brighter */
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
    opacity: 0.8;
}

.nav-link:hover {
    background-color: rgba(59, 130, 246, 0.2) !important;
    /* Transparent Blue */
    color: #ffffff !important;
    /* Bright White */
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.nav-link.is-viewing {
    background-color: rgba(59, 130, 246, 0.15) !important;
    color: #60a5fa !important;
    font-weight: 500;
}

.nav-link.is-completed {
    color: #39ff14;
    /* Bright Neon Green */
}

.nav-link.is-viewing.is-completed {
    background-color: #dcfce7;
    /* green-100 */
    color: #15803d;
    /* green-700 */
}

/* Progress Icons for new nav */
.nav-link .progress-icons {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-link .icon-eye,
.nav-link .icon-tick {
    display: none;
    width: 16px;
    height: 16px;
}

.nav-link.is-viewing .icon-eye {
    display: inline-block;
    color: var(--accent-color);
}

.nav-link.is-completed .icon-tick {
    display: inline-block;
    color: var(--completed-color);
}

.nav-link.is-viewing.is-completed .icon-eye {
    display: none;
}

/* --- NEW: Welcome Animations --- */
.typewriter {
    display: inline-block;
    overflow: hidden;
    /* Ensures the text is not visible until typed */
    white-space: nowrap;
    /* Keeps the text on a single line */
    /* REMOVED: border-right: .1em solid var(--accent-color); */
    letter-spacing: .05em;
    /* A bit tighter */
    /* animation: typing 4s steps(17, end) infinite; */
    /* Controlled via JS now */
    max-width: 100%;
    /* Ensure it doesn't overflow */
}

/* The typing effect */
@keyframes typing {
    0% {
        width: 0
    }

    40% {
        width: 100%
    }

    /* Type and hold */
    90% {
        width: 100%
    }

    /* Hold longer */
    100% {
        width: 0
    }

    /* Reset for loop */
}

/* REMOVED: @keyframes blink-caret */

/* --- ADDED BACK: Wave Animation --- */
.wave {
    display: inline-block;
    /* animation: wave-animation 2.5s infinite; */
    transform-origin: 70% 70%;
}

@keyframes wave-animation {
    0% {
        transform: rotate(0.0deg)
    }

    10% {
        transform: rotate(14.0deg)
    }

    20% {
        transform: rotate(-8.0deg)
    }

    30% {
        transform: rotate(14.0deg)
    }

    40% {
        transform: rotate(-4.0deg)
    }

    50% {
        transform: rotate(10.0deg)
    }

    60% {
        transform: rotate(0.0deg)
    }

    /* pause */
    100% {
        transform: rotate(0.0deg)
    }
}

/* --- NEW: Typewriter Button Animation --- */
.typewriter-button {
    overflow: hidden;
    white-space: nowrap;
    vertical-align: bottom;
    /* Aligns animated text with the icon */
    animation: typing-button 3s steps(6, end) infinite;
}

@keyframes typing-button {
    0% {
        width: 0
    }

    40% {
        width: 100%
    }

    /* Type */
    80% {
        width: 100%
    }

    /* Hold */
    100% {
        width: 0
    }

    /* Erase */
}

/* --- NEW: Search Modal Styles --- */
#search-modal {
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

#search-modal[aria-hidden="true"] {
    opacity: 0;
    visibility: hidden;
}

#search-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

#search-modal[aria-hidden="false"] #search-modal-overlay {
    opacity: 1;
}

#search-modal[aria-hidden="false"]>div:last-child {
    transform: translateY(0);
    opacity: 1;
}

#search-modal-overlay {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#search-modal>div:last-child {
    opacity: 0;
    transform: translateY(-20px);
    /* Animate from top */
    transition: all 0.2s ease-in-out;
}

.search-result-item {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: background-color 0.2s;
    text-decoration: none;
    color: var(--text-primary);
}

.search-result-item:hover {
    background-color: var(--hover-bg-color);
}

.search-result-item h4 {
    color: var(--accent-text-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.search-result-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    /* Truncate snippet */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* --- GLOBAL THEME OVERRIDES (Trae.ai True Black Adaptation) --- */
.bg-white {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary);
}

.bg-slate-50,
.bg-gray-50 {
    background-color: rgba(23, 23, 23, 0.6) !important;
}

.bg-slate-100 {
    background-color: var(--hover-bg-color) !important;
}

.bg-slate-200 {
    background-color: var(--border-color) !important;
}

.border-slate-200,
.border-slate-300,
.border-gray-200 {
    border-color: var(--border-color) !important;
}

.text-slate-900,
.text-slate-800,
.text-slate-700,
.text-gray-900,
.text-gray-800 {
    color: var(--text-heading) !important;
}

.text-slate-600,
.text-slate-500,
.text-gray-600,
.text-gray-500 {
    color: var(--text-secondary) !important;
}

/* specific gradient overrides */
.bg-gradient-to-r.from-blue-50.to-indigo-50 {
    background: linear-gradient(to right, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1)) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Input fields */
input[type="text"],
input[type="search"],
textarea {
    background-color: rgba(23, 23, 23, 0.9) !important;
    color: var(--text-heading) !important;
    border-color: var(--border-color) !important;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

input:focus {
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3) !important;
    outline: none;
}

.bg-blue-100,
.bg-blue-50 {
    background-color: rgba(59, 130, 246, 0.15) !important;
    color: #60a5fa !important;
}

.bg-green-100,
.bg-green-50,
.bg-emerald-50 {
    background-color: rgba(74, 222, 128, 0.15) !important;
    color: #4ade80 !important;
}

.bg-red-100,
.bg-red-50 {
    background-color: rgba(248, 113, 113, 0.15) !important;
    color: #f87171 !important;
}

/* Ensure border colors match the vibe */
.border-blue-500 {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.border-green-500 {
    border-color: #22c55e !important;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* --- Scroll Reveal Animation Classes --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Cookie Banner Button (Blue Liquid Gloss) --- */
#cookie-accept-btn {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(37, 99, 235, 0.9)) !important;
    /* Blue gradient */
    backdrop-filter: blur(8px);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow:
        0 4px 15px rgba(59, 130, 246, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#cookie-accept-btn:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 1), rgba(37, 99, 235, 1)) !important;
    box-shadow:
        0 6px 20px rgba(59, 130, 246, 0.6),
        0 0 10px rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
}

#cookie-decline-btn {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #e5e5e5 !important;
}

#cookie-decline-btn:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}