/**
 * 🏆 Fitness Coach Pro - World Championship Recipes Design
 * Version: 2.0 (Premium Dark Edition)
 * 
 * "Start Unknown, Finish Unforgettable."
 */

:root {
    --fcp-dark-bg: #131f24;
    --fcp-dark-surface: #1a2730;
    --fcp-primary: #58cc02;
    --fcp-primary-glow: rgba(88, 204, 2, 0.4);
    --fcp-accent: #ff9600;
    --fcp-text-main: #ffffff;
    --fcp-text-muted: #8b979f;
    --fcp-glass-border: rgba(255, 255, 255, 0.1);
    --fcp-shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.fcp-recipes-page {
    background-color: var(--fcp-dark-bg);
    color: var(--fcp-text-main);
    font-family: 'Tajawal', sans-serif;
    margin: 0;
    padding-bottom: 100px;
    /* Space for bottom nav */
    overflow-x: hidden;
}

/* =========================================
   HERO SECTION
   ========================================= */
.recipes-hero {
    position: relative;
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(180deg, rgba(88, 204, 2, 0.1) 0%, rgba(19, 31, 36, 0) 100%);
    margin-bottom: 20px;
}

.recipes-hero h1 {
    font-size: 2.5rem;
    margin: 0;
    background: linear-gradient(45deg, #fff, #58cc02);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(88, 204, 2, 0.2);
    font-weight: 800;
    letter-spacing: -1px;
}

.recipes-hero p {
    color: var(--fcp-text-muted);
    font-size: 1.1rem;
    margin-top: 10px;
    opacity: 0.8;
}

/* =========================================
   TAB NAVIGATION (Profile Style)
   ========================================= */
.duo-profile-tabs {
    display: flex;
    gap: 8px;
    margin: 0 auto 24px;
    overflow-x: auto;
    padding: 8px 0 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--duo-green) var(--duo-bg);
    -webkit-overflow-scrolling: touch;
    width: 90%;
    max-width: 90%;
    box-sizing: border-box;
    position: sticky;
    top: 60px;
    z-index: 50;
    /* Glass effect already in body but reinforcing */
    background: transparent;
    justify-content: center;
}

.duo-profile-tabs::-webkit-scrollbar {
    height: 6px;
}

.duo-profile-tabs::-webkit-scrollbar-track {
    background: var(--duo-bg);
    border-radius: 10px;
}

.duo-profile-tabs::-webkit-scrollbar-thumb {
    background: var(--duo-green);
    border-radius: 10px;
}

.duo-tab-btn {
    flex: 1 1 0;
    min-width: 80px;
    /* Ensure they don't get too small */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 8px;
    background: var(--duo-bg-card);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: inherit;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    color: var(--fcp-text-muted);
}

.duo-tab-btn:hover {
    background: var(--duo-bg-light);
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--duo-green);
    color: #fff;
}

.duo-tab-btn.active {
    background: linear-gradient(135deg, var(--duo-green), var(--duo-green-dark));
    border-color: var(--duo-green);
    color: white;
    box-shadow: var(--shadow-glow-green), var(--shadow-btn);
    transform: translateY(-2px);
}

.duo-tab-btn .tab-icon {
    font-size: 24px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.duo-tab-btn:hover .tab-icon {
    transform: scale(1.15) rotate(5deg);
}

.duo-tab-btn.active .tab-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.duo-tab-btn .tab-label {
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

@media (min-width: 481px) {
    .duo-profile-tabs {
        justify-content: center;
        /* keep centered if few */
        gap: 10px;
    }
}


/* =========================================
   RECIPES GRID
   ========================================= */
.fcp-recipes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fcp-recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* =========================================
   RECIPE CARD (The Star of the Show)
   ========================================= */
.fcp-recipe-card {
    background: var(--fcp-dark-surface);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--fcp-glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: var(--fcp-shadow-card);
}

.fcp-recipe-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--fcp-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--fcp-primary);
    z-index: 10;
}

/* Card Image Area */
.recipe-card-image {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.recipe-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.fcp-recipe-card:hover .recipe-card-image img {
    transform: scale(1.15);
}

.recipe-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: #0f181c;
}

/* Floating Badges */
.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.card-badge.video {
    left: 15px;
    right: auto;
    background: var(--fcp-primary);
    box-shadow: 0 4px 15px var(--fcp-primary-glow);
}

/* Card Content */
.recipe-card-content {
    padding: 20px;
    position: relative;
}

.recipe-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.4;
    color: var(--fcp-text-main);
}

.recipe-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--fcp-text-muted);
    font-size: 0.9rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 8px;
}

/* "View" Button (Appears on Hover) */
.view-btn-overlay {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fcp-recipe-card:hover .view-btn-overlay {
    opacity: 1;
    transform: translateY(-80px);
    /* Move up into image area */
}

/* =========================================
   MODAL - PREMIUM OVERLAY
   ========================================= */
.fcp-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.fcp-modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%) scale(0.9);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: var(--fcp-dark-surface);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.fcp-modal-backdrop.active .fcp-modal-container {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

/* Modal Header */
.modal-header-image {
    height: 250px;
    position: relative;
    flex-shrink: 0;
}

.modal-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 5;
}

.modal-close-btn:hover {
    background: #ff4b4b;
    transform: rotate(90deg);
}

.modal-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 80px 30px 20px;
    background: linear-gradient(to top, #1a2730 0%, transparent 100%);
}

.modal-title-overlay h2 {
    margin: 0;
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Modal Body */
.modal-body {
    padding: 30px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--fcp-glass-border) transparent;
}

/* Stats Grid in Modal */
.modal-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
    display: block;
}

.stat-value {
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--fcp-text-muted);
}

/* Content Sections */
.modal-section {
    margin-bottom: 30px;
}

.modal-section h3 {
    color: var(--fcp-primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-content-text {
    line-height: 1.8;
    color: #d0d7de;
    font-size: 1rem;
    white-space: pre-wrap;
}

/* Action Button */
.modal-action-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--fcp-primary);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 0 #46a302, 0 8px 20px rgba(88, 204, 2, 0.4);
    transition: all 0.2s;
    margin-top: 10px;
}

.modal-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #46a302, 0 12px 25px rgba(88, 204, 2, 0.5);
}

.modal-action-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #46a302;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .fcp-recipes-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }

    .recipes-hero h1 {
        font-size: 2rem;
    }

    .fcp-modal-container {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        top: 0;
        left: 0;
        transform: none !important;
    }

    .modal-header-image {
        height: 200px;
    }

    .modal-stats-grid {
        gap: 10px;
        padding: 15px;
    }

    .stat-value {
        font-size: 0.9rem;
    }
}

/* =========================================
   RECIPE MODAL - PREMIUM GAMIFIED DESIGN
   ========================================= */
.fcp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fcp-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fcp-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 16, 20, 0.85);
    backdrop-filter: blur(8px);
    animation: overlayFadeIn 0.3s ease;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fcp-modal-content {
    position: relative;
    background: linear-gradient(180deg, #1a2c35 0%, #162229 100%);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 3px rgba(88, 204, 2, 0.3),
        0 0 40px rgba(88, 204, 2, 0.2);
    z-index: 1;
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(88, 204, 2, 0.2);
}

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

/* Modal Header Image */
.modal-hero-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #58cc02 0%, #46a302 100%);
}

.modal-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.modal-hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(26, 44, 53, 0.95) 0%, transparent 100%);
}

/* Title Overlay */
.modal-hero-image h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #ffffff;
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    padding: 30px;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

/* Close Button */
.fcp-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 0;
    margin: 0;
}

.fcp-modal-close:hover {
    background: rgba(255, 75, 75, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(255, 75, 75, 0.4);
}

/* Modal Body */
.modal-body {
    padding: 30px;
    background: #1a2c35;
    color: #ffffff;
    overflow-y: auto;
    flex: 1;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(88, 204, 2, 0.5);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(88, 204, 2, 0.7);
}

/* Stats Bar - Gamified */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    background: linear-gradient(135deg, rgba(88, 204, 2, 0.15) 0%, rgba(28, 176, 246, 0.15) 100%);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    border: 2px solid rgba(88, 204, 2, 0.3);
    box-shadow: 
        0 4px 0 rgba(0, 0, 0, 0.3),
        0 0 20px rgba(88, 204, 2, 0.2);
}

.stat-item {
    text-align: center;
    padding: 12px;
    background: rgba(26, 44, 53, 0.6);
    border-radius: 16px;
    border: 2px solid rgba(88, 204, 2, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: rgba(88, 204, 2, 0.5);
    box-shadow: 0 4px 12px rgba(88, 204, 2, 0.3);
}

.stat-item span {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stat-item div:first-of-type {
    font-weight: 800;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item div:last-of-type {
    font-size: 12px;
    color: #b8cdd6;
    font-weight: 500;
}

/* Section Headers */
.section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Ingredients List */
#crm-ingredients {
    list-style: none;
    padding: 0;
    margin: 0;
}

#crm-ingredients li {
    padding: 14px 16px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-right: 4px solid #58cc02;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #ffffff;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

#crm-ingredients li:hover {
    background: rgba(88, 204, 2, 0.15);
    transform: translateX(-4px);
    border-right-color: #7cdb36;
}

#crm-ingredients li span {
    color: #58cc02;
    margin-left: 18px;
    margin-right: 4px;
    font-size: 18px;
    font-weight: bold;
}

#crm-ingredients li strong {
    color: #7cdb36;
    font-weight: 700;
    margin-left: 8px;
}

/* Steps */
#crm-steps {
    background: rgba(255, 150, 0, 0.1);
    border-radius: 16px;
    padding: 20px;
    line-height: 1.8;
    color: #ffffff;
    font-size: 16px;
    border: 2px solid rgba(255, 150, 0, 0.3);
    white-space: pre-wrap;
    margin-top: 10px;
}

/* Video Section */
#crm-video-section {
    margin-top: 30px;
    padding: 20px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 16px;
    border: 2px solid rgba(168, 85, 247, 0.3);
}

#crm-video-section h3 {
    border-bottom-color: #a855f7;
    color: #a855f7;
}

#crm-video-wrapper {
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

#crm-video-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Two Column Layout */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 20px;
}

/* Modal Large Variant */
.fcp-modal-large {
    max-width: 95%;
    width: 95%;
}

/* Loading Animation */
.fcp-modal-content.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success Animation */
@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .fcp-modal-content {
        width: 95%;
        max-width: 95%;
        max-height: 95vh;
        border-radius: 20px;
    }

    .modal-hero-image {
        height: 200px;
    }

    .modal-hero-image h2 {
        font-size: 24px;
        padding: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 15px;
    }

    .two-col-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 10px;
    }

    .stat-item span {
        font-size: 24px;
    }

    .stat-item div:first-of-type {
        font-size: 20px;
    }

    #crm-video-wrapper iframe {
        height: 250px;
    }
}

/* =========================================
   CHEF ANIMATION - WORLD CHAMPIONSHIP STYLE
   ========================================= */
.chef-animation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 16, 20, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    will-change: opacity;
}

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

.chef-animation-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.chef-character {
    position: relative;
    font-size: 120px;
    line-height: 1;
    z-index: 10;
    transform: scale(0.8);
    animation: chefEntrance 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    will-change: transform;
}

@keyframes chefEntrance {
    0% {
        transform: scale(0.3) translateY(50px);
        opacity: 0;
    }
    60% {
        transform: scale(1.1) translateY(-10px);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.chef-body {
    display: inline-block;
    animation: chefBounce 0.6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    will-change: transform;
}

@keyframes chefBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.chef-knife {
    position: absolute;
    top: 20%;
    right: -40px;
    font-size: 60px;
    transform-origin: bottom center;
    animation: knifeSwing 0.4s ease-in-out infinite;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4));
    will-change: transform;
}

@keyframes knifeSwing {
    0%, 100% {
        transform: rotate(-15deg) translateY(0);
    }
    50% {
        transform: rotate(15deg) translateY(-10px);
    }
}

.chef-fork {
    position: absolute;
    top: 25%;
    left: -50px;
    font-size: 60px;
    transform-origin: bottom center;
    animation: forkSwing 0.5s ease-in-out infinite 0.1s;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4));
    will-change: transform;
}

@keyframes forkSwing {
    0%, 100% {
        transform: rotate(10deg) translateY(0);
    }
    50% {
        transform: rotate(-10deg) translateY(-8px);
    }
}

.chef-confetti-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .chef-character {
        font-size: 80px;
    }
    
    .chef-knife,
    .chef-fork {
        font-size: 40px;
    }
    
    .chef-knife {
        right: -30px;
    }
    
    .chef-fork {
        left: -35px;
    }
}