@import url('https://fonts.googleapis.com/css2?family=Schoolbell&family=Fredoka:wght@400;600;700&display=swap');

/* Color Variables */
:root {
    /* Primary Colors - Purple Palette */
    --color-primary: #A78BFA;
    --color-primary-dark: #8B5CF6;
    --color-primary-light: #C4B5FD;
    --color-primary-pale: #E9D5FF;

    /* Neutrals */
    --color-cream: #f5f1e8;
    --color-cream-dark: #f0ede4;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-text-dark: #2D1B4E;
    --color-text-gray: #666666;
    --color-text-gray-light: #6B7280;
    --color-text-gray-muted: #999999;

    /* Status Colors */
    --color-status-open: #C7F9CC;
    --color-status-open-text: #22543D;
    --color-status-closed: #FED7E2;
    --color-status-closed-text: #742A2A;

    --color-queue-in-progress: #FCD34D;
    --color-queue-in-progress-text: #92400E;
    --color-queue-finished: #34D399;
    --color-queue-finished-text: #065F46;
    --color-queue-to-start: #A78BFA;

    /* Backgrounds */
    --color-bg-light: #FAFAFF;
    --color-bg-light-purple: #E9D5FF;
    --color-bg-light-purple-darker: #C4B5FD;
    --color-bg-warning: #fff3cd;
    --color-bg-success: #d4edda;

    /* Shadows */
    --shadow-primary: 0 4px 12px rgba(167, 139, 250, 0.15);
    --shadow-hover: 0 0 20px rgba(167, 139, 250, 0.25);
    --shadow-large: 0 1.75rem 2rem 0 rgba(167, 139, 250, 0.15);

    /* Borders & Other */
    --color-border-light: #f0f0f0;
    --color-profile-border: #000000;
    --color-note-warning: #856404;
}

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

html {
    scroll-padding-top: 140px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-image: url('assets/images/pattern.webp');
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: 25rem;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 1rem;
    line-height: 1.5;
}

.container {
    max-width: 40rem;
    width: 100%;
    background: var(--color-white);
    border-radius: 1rem;
    box-shadow: var(--shadow-large);
}

.banner {
    width: 100%;
    max-width: 40rem;
    height: 100vh;
    background-image: url('assets/images/background2.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 0 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0.5rem;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner.collapsed {
    height: 120px;
}

nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    background: #f5f1e8d6;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    border: 2px solid var(--color-primary);
    position: relative;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

nav::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 2px dotted var(--color-black);
    border-radius: 1.2rem;
    pointer-events: none;
}

nav span {
    color: var(--color-black);
    font-weight: 600;
    font-family: 'Fredoka', sans-serif !important;
}

nav:hover {
    background: var(--color-cream-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

nav.active {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    border-color: var(--color-primary-dark);
    box-shadow: var(--shadow-primary);
}

nav.active::after {
    border-color: rgba(255, 255, 255, 0.3);
}

nav.active span {
    color: var(--color-white);
    font-weight: 600;
}

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

.profile-image {
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    border: 3px solid var(--color-profile-border);
    margin: 0 auto 1rem;
    object-fit: cover;
    animation: blob-morph 6s ease-in-out infinite;
}

.profile h1 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.profile p {
    color: var(--color-text-gray);
    margin-bottom: 1rem;
}

/* Home Section Styles */
.home-intro {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.home-profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    position: relative;
}

.profile-description {
    padding: 1rem 1.5rem;
    color: var(--color-text-gray);
    text-align: center;
    line-height: 1.6;
    max-width: 16rem;
    font-family: 'Schoolbell', cursive;
    font-size: 1.2rem;
}

.home-info-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    justify-content: center;
}

.home-title {
    font-size: 2.5em;
    font-weight: bold;
    margin: 0;
    color: var(--color-primary-dark);
    font-family: 'Schoolbell', cursive;
}

.home-welcome {
    color: var(--color-text-gray);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.home-welcome a {
    color: var(--color-primary-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    border-bottom: 2px solid var(--color-primary);
}

.home-welcome a:hover {
    color: var(--color-primary);
}

.status-indicators {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-self: center;
    padding-top: 1rem;
}

.status {
    padding: 0.3rem 0;
    font-weight: 500;
    font-size: 1.1rem;
    font-family: 'Fredoka', sans-serif;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--color-black);
}

.status-symbol {
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
    animation: pulse-symbol 2s ease-in-out infinite;
}

.status.closed .status-symbol {
    animation: none;
}

@keyframes pulse-symbol {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}
@keyframes blob-morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    25% {
        border-radius: 70% 30% 46% 66% / 66% 33% 66% 33%;
    }
    50% {
        border-radius: 33% 67% 58% 42% / 58% 33% 66% 42%;
    }
    75% {
        border-radius: 58% 42% 42% 58% / 58% 58% 42% 42%;
    }
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
}

.status.open .status-symbol {
    color: #10B981;
}

.status.closed .status-symbol {
    color: #EC4899;
}

section {
    padding: 1.5rem 2rem;
    display: none;
    background: var(--color-white);
    margin-top: 100px;
}

section:first-of-type {
    border-top: none;
}

section.active-section {
    display: block;
}

h1, h2 {
    font-family: 'Schoolbell', cursive;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.prices-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.ref-prices-img {
    height: 300px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.chibi-comparison-img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 0.5rem;
    display: block;
    margin: 0 auto;
}

.two-column {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    justify-content: center;
    padding-top: 2rem;
}

.list-section h3 {
    font-size: 1.1em;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.list-section ul {
    list-style: none;
    padding-left: 0;
}

.list-section li {
    padding: 0.25rem 0;
    color: var(--color-text-gray);
}

.list-section li:before {
    content: "• ";
    color: var(--color-primary);
    font-weight: bold;
}

.pricing-table {
    width: 100%;
    margin: 1rem 0;
}

.pricing-row {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1rem;
    border-bottom: 1px dotted var(--color-primary-pale);
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.pricing-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-type {
    font-weight: 600;
}

.pricing-cost {
    color: var(--color-primary);
    font-weight: 600;
}

.slot-counter {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-text-gray-muted);
}

.slot-counter.full {
    color: #f44336;
}

.pricing-extra-right {
    text-align: right;
}

.pricing-extra-left {
    text-align: left;
}

.pricing-row:hover {
    background: var(--color-bg-light);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-extra {
    font-size: 0.7em;
    color: var(--color-text-gray-muted);
}

.faq-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.faq-item {
    padding: 0.5rem 0;
}

.faq-item h3 {
    margin: 0 0 0.5rem 0;
    color: var(--color-black);
    font-size: 1rem;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

.faq-item p {
    margin: 0;
    color: var(--color-text-gray);
    line-height: 1.6;
}

.note {
    background: var(--color-bg-warning);
    border-left: 4px solid var(--color-primary);
    padding: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--color-note-warning);
}

.terms-list {
    list-style: none;
    padding-left: 0;
}

.terms-list li {
    padding: 0.5rem 0;
    color: var(--color-text-gray);
    line-height: 1.6;
}

.terms-list li:before {
    content: "→ ";
    color: var(--color-primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

.queue-section {
    margin: 1.5rem 0;
}

.queue-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 0.5rem 0;
    transition: opacity 0.3s ease;
}

.queue-section-header:hover {
    opacity: 0.8;
}

.queue-expand-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.queue-section-header h2 {
    margin-bottom: 0;
}

.queue-section.collapsed .queue-board {
    display: none;
}

/* Trello-Style Board Layout */
.queue-board {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    justify-content: space-between;
}

.queue-column {
    flex: 1;
    min-width: 0;
    background: var(--color-bg-light);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-primary-light);
}

.column-header h3 {
    font-family: 'Schoolbell', cursive;
    font-size: 1.2rem;
    color: var(--color-black);
    margin: 0;
}

.column-count {
    background: var(--color-primary);
    color: var(--color-white);
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    min-width: 24px;
    text-align: center;
}

/* Column-Specific Header Colors */
.queue-column:nth-child(1) .column-header h3 {
    color: var(--color-primary);
}

.queue-column:nth-child(1) .column-count {
    background: var(--color-primary);
}

.queue-column:nth-child(2) .column-header h3 {
    color: #FCD34D;
}

.queue-column:nth-child(2) .column-count {
    background: #FCD34D;
    color: #92400E;
}

.queue-column:nth-child(3) .column-header h3 {
    color: #34D399;
}

.queue-column:nth-child(3) .column-count {
    background: #34D399;
    color: #065F46;
}

/* Card Container */
.column-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 100px;
}

/* Artistic Commission Cards */
.commission-card {
    background: var(--color-white);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border-left: 4px solid var(--color-primary);
}

.commission-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.card-number {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-primary);
}

.paid-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.paid-dot.paid {
    background-color: #4caf50;
}

.paid-dot.unpaid {
    background-color: #f44336;
}

.card-icon {
    font-size: 1.2rem;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.card-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-black);
    margin: 0;
}

.card-detail {
    font-size: 0.8rem;
    color: var(--color-text-gray);
    margin: 0;
}

/* Card Color Variations by Column */
.queue-column:nth-child(1) .commission-card {
    border-left-color: var(--color-primary);
}

.queue-column:nth-child(1) .card-number {
    color: var(--color-primary);
}

.queue-column:nth-child(2) .commission-card {
    border-left-color: #FCD34D;
}

.queue-column:nth-child(2) .card-number {
    color: #D97706;
}

.queue-column:nth-child(3) .commission-card {
    border-left-color: #34D399;
}

.queue-column:nth-child(3) .card-number {
    color: #059669;
}

.contact-button {
    display: inline-block;
    background: var(--color-black);
    color: var(--color-white);
    padding: 0.75rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 600;
    margin: 0.5rem 0;
    transition: background 0.3s;
}

.contact-button:hover {
    background: var(--color-primary-dark);
}

.queue-slot-counter {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.9rem;
    color: var(--color-text-gray);
    margin-top: 0.75rem;
}

.commission-form-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: 0.75rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-family: 'Fredoka', sans-serif;
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.2);
    text-align: center;
}

.commission-form-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #7C3AED 100%);
}

.ping-list-button {
    display: none;
    background: transparent;
    color: var(--color-primary-dark);
    padding: 0.75rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.75rem;
    transition: all 0.3s ease;
    font-family: 'Fredoka', sans-serif;
    border: 2px solid var(--color-primary);
    text-align: center;
}

.ping-list-button:hover {
    background: var(--color-primary-pale);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.ping-list-button.visible {
    display: inline-block;
}

footer {
    padding: 2.5rem 2rem 1.5rem;
    border-radius: 1rem 1rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-brand h3 {
    font-family: 'Schoolbell', cursive;
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--color-text-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-heading {
    font-weight: 600;
    font-family: 'Fredoka', sans-serif;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-social {
    border-top: 2px solid rgba(167, 139, 250, 0.3);
    margin-top: 2rem;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--color-white);
    border-radius: 50%;
    color: var(--color-primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(167, 139, 250, 0.2);
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-hover);
}

.social-icon:active,
.social-icon:focus {
    outline: none;
    transform: translateY(0);
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(167, 139, 250, 0.2);
}

.social-icon:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.social-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.social-icon img {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-white);
    color: var(--color-text-dark);
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.email-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.email-link svg {
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    
}

.footer-bottom p {
    color: var(--color-text-gray);
    font-size: 0.85rem;
    margin: 0.25rem 0;
}

.footer-note {
    font-style: italic;
    color: var(--color-text-gray-muted);
    font-size: 0.8rem;
}

/* Animations */
@keyframes squish {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Apply pulse animation to KPI values */
.kpi-value {
    animation: pulse 2s ease-in-out infinite;
}

/* Add hover effect to interactive elements */
.queue-header:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.queue-section-header:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Enhance container shadow */
.container {
    box-shadow: var(--shadow-large);
    background: var(--color-white);
}

/* Animated Arrow Styling */
.animated-arrow {
    width: 2rem;
    height: auto;
    position: absolute;
    top: 13rem;
    left: 0rem;
}

.arrow-path {
    stroke: #000000 !important;
    stroke-width: 1.5 !important;
    fill: none !important;
}

@keyframes draw-arrow {
    0% {
        stroke-dashoffset: 1000 !important;
    }
    100% {
        stroke-dashoffset: 0 !important;
    }
}

/* Examples Gallery Styles */
.examples-gallery {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.example-type-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.example-type-title {
    font-size: 1.3rem;
    color: var(--color-primary-dark);
    margin: 0;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary-pale);
}

.example-variants {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.example-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.example-card:hover {
    transform: translateY(-8px);
}

.example-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 1rem;
    background: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.15);
    transition: box-shadow 0.3s ease;
}

.example-card:hover .example-image {
    box-shadow: 0 6px 20px rgba(167, 139, 250, 0.25);
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.example-card h3 {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    margin: 0;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

/* Image Modal Styles */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1rem;
}

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

.modal-content {
    background: var(--color-white);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text-dark);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease, color 0.3s ease;
    z-index: 1001;
}

.modal-close:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

#modal-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
}

#modal-title {
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin: 0;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

@media (max-width: 768px) {
    .queue-board {
        flex-direction: column;
    }

    .queue-column {
        width: 100%;
    }

    .example-variants {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .example-image {
        height: 150px;
    }

    .example-type-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 736px) {
    body {
        padding: 0;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home-intro {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .home-profile-section {
        width: 100%;
        align-items: center;
    }

    .animated-arrow {
        top: 10rem !important;
        left: 2rem !important;
    }

    .prices-content {
        flex-direction: column;
        align-items: center;
    }

    .ref-prices-img {
        height: 350px;
        width: 100%;
        max-width: 100%;
    }

    .home-info-section {
        text-align: center;
        align-items: center;
    }

    .home-title {
        font-size: 2em;
    }

    .profile-image {
        width: 12rem;
        height: 12rem;
    }

    .profile-description {
        max-width: 100%;
    }

    .status-indicators {
        flex-direction: column;
        align-items: center;
    }

    nav {
        margin: 0.5rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    footer {
        padding: 2rem 1rem 1.5rem;
    }

    .social-icons {
        gap: 0.75rem;
    }

    .social-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    /* Hide bottom character on mobile */
    .bottom-character {
        display: none !important;
    }
}

/* Bottom character positioning - Desktop only */
.bottom-character {
    position: fixed;
    bottom: 0.625rem;
    right: 1.25rem;
    width: 9rem;
    height: auto;
    z-index: 10;
}

@keyframes squish1 {
    0%, 100% { transform: scaleY(1) scaleX(1); }
    50% { transform: scaleY(0.96) scaleX(1.04); }
}

@keyframes squish2 {
    0%, 100% { transform: scaleY(1) scaleX(1); }
    50% { transform: scaleY(0.97) scaleX(1.03); }
}

@keyframes squish3 {
    0%, 100% { transform: scaleY(1) scaleX(1); }
    50% { transform: scaleY(0.95) scaleX(1.05); }
}

.bottom-character img {
    width: 100%;
    height: auto;
    transform-origin: bottom center;
    animation: squish1 2.7s ease-in-out infinite, squish2 3.2s ease-in-out infinite 0.5s, squish3 2.3s ease-in-out infinite 1s;
}

/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--color-primary);
}

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

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent-text h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    color: var(--color-text-dark);
    margin: 0 0 0.5rem 0;
}

.cookie-consent-text p {
    margin: 0;
    color: var(--color-text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.2);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(167, 139, 250, 0.3);
}

.cookie-btn-decline {
    background: var(--color-cream);
    color: var(--color-text-dark);
    border: 2px solid var(--color-primary-pale);
}

.cookie-btn-decline:hover {
    background: var(--color-cream-dark);
    border-color: var(--color-primary-light);
}

/* Mobile responsive */
@media (max-width: 736px) {
    .cookie-consent-content {
        flex-direction: column;
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .cookie-consent-text h3 {
        font-size: 1.1rem;
    }

    .cookie-consent-text p {
        font-size: 0.85rem;
    }

    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}
