/* =========================================
   LiquiMixer - Retro Disco Neon Styles
   ========================================= */

:root {
    --neon-pink: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-yellow: #ffff00;
    --neon-green: #00ff00;
    --neon-orange: #ff8800;
    --neon-red: #ff0044;
    --neon-blue: #0088ff;
    --neon-purple: #aa00ff;
    
    --bg-dark: #0a0a15;
    --bg-card: rgba(20, 20, 40, 0.85);
    --bg-input: rgba(30, 30, 60, 0.9);
    
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    
    --border-radius: 20px;
    --border-radius-small: 12px;
}

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

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
}

/* Animated grid background */
.neon-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(255, 0, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

/* Neon clouds - sharp stylized clouds */
.neon-clouds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.cloud {
    position: absolute;
}

/* Cloud base shape - 3 overlapping circles */
.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 0 20px currentColor, 0 0 40px currentColor;
    border: 2px solid currentColor;
    background: rgba(10, 10, 21, 0.7);
}

/* ==========================================
   LEVÁ STRANA - 6 mraků
   ========================================== */

/* Mrak 1 - Růžový velký nahoře */
.cloud-left-1 {
    top: 3%;
    left: -20px;
    color: var(--neon-pink);
    animation: floatLeft 14s ease-in-out infinite;
}
.cloud-left-1::before {
    width: 70px;
    height: 70px;
    top: 25px;
    left: 0;
}
.cloud-left-1::after {
    width: 100px;
    height: 100px;
    top: 0;
    left: 40px;
}

/* Mrak 2 - Fialový střední */
.cloud-left-2 {
    top: 18%;
    left: -35px;
    color: var(--neon-purple);
    animation: floatLeft 16s ease-in-out infinite;
    animation-delay: -3s;
}
.cloud-left-2::before {
    width: 55px;
    height: 55px;
    top: 20px;
    left: 0;
}
.cloud-left-2::after {
    width: 80px;
    height: 80px;
    top: 0;
    left: 30px;
}

/* Mrak 3 - Cyan velký */
.cloud-left-3 {
    top: 35%;
    left: -15px;
    color: var(--neon-cyan);
    animation: floatLeft 12s ease-in-out infinite;
    animation-delay: -6s;
}
.cloud-left-3::before {
    width: 85px;
    height: 85px;
    top: 30px;
    left: 0;
}
.cloud-left-3::after {
    width: 120px;
    height: 120px;
    top: 0;
    left: 50px;
}

/* Mrak 4 - Zelený malý */
.cloud-left-4 {
    top: 55%;
    left: -40px;
    color: var(--neon-green);
    animation: floatLeft 18s ease-in-out infinite;
    animation-delay: -9s;
}
.cloud-left-4::before {
    width: 50px;
    height: 50px;
    top: 18px;
    left: 0;
}
.cloud-left-4::after {
    width: 70px;
    height: 70px;
    top: 0;
    left: 28px;
}

/* Mrak 5 - Oranžový střední */
.cloud-left-5 {
    top: 72%;
    left: -25px;
    color: var(--neon-orange);
    animation: floatLeft 15s ease-in-out infinite;
    animation-delay: -4s;
}
.cloud-left-5::before {
    width: 65px;
    height: 65px;
    top: 22px;
    left: 0;
}
.cloud-left-5::after {
    width: 90px;
    height: 90px;
    top: 0;
    left: 38px;
}

/* Mrak 6 - Modrý dole */
.cloud-left-6 {
    bottom: 5%;
    left: -30px;
    color: var(--neon-blue);
    animation: floatLeft 13s ease-in-out infinite;
    animation-delay: -7s;
}
.cloud-left-6::before {
    width: 75px;
    height: 75px;
    top: 28px;
    left: 0;
}
.cloud-left-6::after {
    width: 105px;
    height: 105px;
    top: 0;
    left: 45px;
}

/* ==========================================
   PRAVÁ STRANA - 6 mraků
   ========================================== */

/* Mrak 1 - Žlutý velký nahoře */
.cloud-right-1 {
    top: 5%;
    right: -25px;
    color: var(--neon-yellow);
    animation: floatRight 15s ease-in-out infinite;
}
.cloud-right-1::before {
    width: 80px;
    height: 80px;
    top: 28px;
    right: 0;
}
.cloud-right-1::after {
    width: 110px;
    height: 110px;
    top: 0;
    right: 48px;
}

/* Mrak 2 - Červený střední */
.cloud-right-2 {
    top: 22%;
    right: -40px;
    color: var(--neon-red);
    animation: floatRight 17s ease-in-out infinite;
    animation-delay: -5s;
}
.cloud-right-2::before {
    width: 60px;
    height: 60px;
    top: 22px;
    right: 0;
}
.cloud-right-2::after {
    width: 85px;
    height: 85px;
    top: 0;
    right: 35px;
}

/* Mrak 3 - Růžový střední */
.cloud-right-3 {
    top: 40%;
    right: -20px;
    color: var(--neon-pink);
    animation: floatRight 14s ease-in-out infinite;
    animation-delay: -2s;
}
.cloud-right-3::before {
    width: 72px;
    height: 72px;
    top: 26px;
    right: 0;
}
.cloud-right-3::after {
    width: 100px;
    height: 100px;
    top: 0;
    right: 42px;
}

/* Mrak 4 - Fialový malý */
.cloud-right-4 {
    top: 58%;
    right: -35px;
    color: var(--neon-purple);
    animation: floatRight 16s ease-in-out infinite;
    animation-delay: -8s;
}
.cloud-right-4::before {
    width: 48px;
    height: 48px;
    top: 16px;
    right: 0;
}
.cloud-right-4::after {
    width: 68px;
    height: 68px;
    top: 0;
    right: 26px;
}

/* Mrak 5 - Cyan střední */
.cloud-right-5 {
    top: 75%;
    right: -15px;
    color: var(--neon-cyan);
    animation: floatRight 13s ease-in-out infinite;
    animation-delay: -4s;
}
.cloud-right-5::before {
    width: 68px;
    height: 68px;
    top: 24px;
    right: 0;
}
.cloud-right-5::after {
    width: 95px;
    height: 95px;
    top: 0;
    right: 40px;
}

/* Mrak 6 - Zelený dole */
.cloud-right-6 {
    bottom: 3%;
    right: -30px;
    color: var(--neon-green);
    animation: floatRight 18s ease-in-out infinite;
    animation-delay: -10s;
}
.cloud-right-6::before {
    width: 78px;
    height: 78px;
    top: 28px;
    right: 0;
}
.cloud-right-6::after {
    width: 108px;
    height: 108px;
    top: 0;
    right: 46px;
}

/* Animace pro levou stranu */
@keyframes floatLeft {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-15px) translateX(8px);
    }
    50% {
        transform: translateY(-25px) translateX(15px);
    }
    75% {
        transform: translateY(-10px) translateX(5px);
    }
}

/* Animace pro pravou stranu */
@keyframes floatRight {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-12px) translateX(-8px);
    }
    50% {
        transform: translateY(-22px) translateX(-12px);
    }
    75% {
        transform: translateY(-8px) translateX(-5px);
    }
}


/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
    overflow: visible;
}

/* Pages */
.page {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo */
.logo-container {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.neon-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.letter {
    display: inline-block;
    animation: neonFlicker 3s infinite;
}

.l1 { color: var(--neon-pink); text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink); animation-delay: 0s; }
.l2 { color: var(--neon-cyan); text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan); animation-delay: 0.1s; }
.l3 { color: var(--neon-yellow); text-shadow: 0 0 10px var(--neon-yellow), 0 0 20px var(--neon-yellow), 0 0 40px var(--neon-yellow); animation-delay: 0.2s; }
.l4 { color: var(--neon-green); text-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green), 0 0 40px var(--neon-green); animation-delay: 0.3s; }
.l5 { color: var(--neon-orange); text-shadow: 0 0 10px var(--neon-orange), 0 0 20px var(--neon-orange), 0 0 40px var(--neon-orange); animation-delay: 0.4s; }
.l6 { color: var(--neon-pink); text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink); animation-delay: 0.5s; }
.l7 { color: var(--neon-cyan); text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan); animation-delay: 0.6s; }
.l8 { color: var(--neon-purple); text-shadow: 0 0 10px var(--neon-purple), 0 0 20px var(--neon-purple), 0 0 40px var(--neon-purple); animation-delay: 0.7s; }
.l9 { color: var(--neon-green); text-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green), 0 0 40px var(--neon-green); animation-delay: 0.8s; }
.l10 { color: var(--neon-orange); text-shadow: 0 0 10px var(--neon-orange), 0 0 20px var(--neon-orange), 0 0 40px var(--neon-orange); animation-delay: 0.9s; }

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    96% { opacity: 0.9; }
    97% { opacity: 1; }
}

.subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    letter-spacing: 0.3em;
    margin-top: 10px;
}

/* Warning Box */
.warning-box {
    background: var(--bg-card);
    border: 2px solid var(--neon-orange);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 
        0 0 20px rgba(255, 136, 0, 0.2),
        inset 0 0 30px rgba(255, 136, 0, 0.05);
}

.warning-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: var(--neon-orange);
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 136, 0, 0.5);
}

.warning-text {
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
}

/* Prep Box */
.prep-box {
    background: var(--bg-card);
    border: 2px solid var(--neon-cyan);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.2),
        inset 0 0 30px rgba(0, 255, 255, 0.05);
}

.prep-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    margin-bottom: 20px;
}

.prep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.prep-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 20px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: var(--border-radius-small);
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-height: 60px;
}

.prep-item:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--neon-cyan);
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Top Navigation */
.top-nav {
    position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    pointer-events: none;
}

.nav-left,
.nav-buttons {
    pointer-events: auto;
}

.nav-left {
    display: flex;
}

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

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--neon-cyan);
    border-radius: var(--border-radius-small);
    color: var(--text-color);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(0, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.nav-btn .nav-icon {
    font-size: 1.1rem;
}

/* Home button - neonový domeček */
.home-btn {
    padding: 10px 14px;
    border-color: var(--neon-cyan);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.home-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.home-btn:hover {
    background: rgba(0, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.home-icon {
    width: 22px;
    height: 22px;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 5px var(--neon-cyan));
    transition: all 0.3s ease;
}

.home-btn:hover .home-icon {
    filter: drop-shadow(0 0 10px var(--neon-cyan)) drop-shadow(0 0 20px var(--neon-cyan));
}

/* Menu button - neonová cyan */
.menu-btn .nav-text,
.menu-btn .nav-icon {
    color: var(--neon-cyan);
    font-weight: bold;
    text-shadow: 0 0 8px var(--neon-cyan);
}

/* Login button - neonová pink */
.login-btn {
    border-color: var(--neon-pink);
}

.login-btn .nav-text,
.login-btn .nav-icon {
    color: var(--neon-pink);
    font-weight: bold;
    text-shadow: 0 0 8px var(--neon-pink);
}

.login-btn:hover {
    background: rgba(255, 0, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
}

/* Menu Dropdown */
.menu-dropdown {
    position: fixed;
    top: 70px;
    right: 15px;
    width: 350px;
    max-width: calc(100vw - 30px);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    background: rgba(10, 10, 21, 0.95);
    border: 1px solid var(--neon-cyan);
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
    z-index: 1001;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-content {
    padding: 25px;
    position: relative;
}

.menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--neon-cyan);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-close:hover {
    color: var(--neon-pink);
    transform: scale(1.2);
}

.menu-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.menu-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.menu-section-title {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--neon-pink);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* Login Modal - Vycentrovaný overlay */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1001;
    animation: fadeIn 0.3s ease;
}

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

.login-content {
    position: relative;
    width: 480px;
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 30px 35px;
    background: linear-gradient(180deg, rgba(15, 15, 30, 0.99) 0%, rgba(10, 10, 25, 0.99) 100%);
    border: 2px solid var(--neon-pink);
    border-radius: var(--border-radius);
    box-shadow: 
        0 0 40px rgba(255, 0, 255, 0.4),
        0 0 80px rgba(255, 0, 255, 0.15),
        inset 0 0 60px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s ease;
}

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

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group-login {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.login-label {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-input {
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: var(--border-radius-small);
    color: var(--text-color);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-input:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.login-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.login-submit {
    margin-top: 10px;
    width: 100%;
}

.login-note {
    margin-top: 15px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.login-note a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-note a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-textarea {
    min-height: 100px;
    resize: vertical;
    font-family: var(--font-secondary);
}

.contact-submit {
    margin-top: 5px;
    width: 100%;
    background: transparent;
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-submit:hover {
    background: rgba(0, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Contact form status message */
.contact-status {
    padding: 10px 15px;
    border-radius: var(--border-radius-small);
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.contact-status.success {
    background: rgba(0, 255, 0, 0.15);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
}

.contact-status.error {
    background: rgba(255, 0, 100, 0.15);
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
}

/* Button loader animation */
.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Login subtitle */
.login-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Clerk Authentication Styles */
#clerk-sign-in,
#clerk-user-profile {
    width: 100%;
}

#clerk-sign-in .cl-rootBox,
#clerk-user-profile .cl-rootBox {
    width: 100% !important;
}

/* Clerk komponenty - přepsání stylů */
#clerk-sign-in .cl-card,
#clerk-user-profile .cl-card {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Hlavní kontejner */
#clerk-sign-in .cl-main,
#clerk-user-profile .cl-main {
    width: 100% !important;
}

/* Nadpisy */
#clerk-sign-in .cl-headerTitle,
#clerk-sign-in .cl-headerSubtitle,
#clerk-user-profile .cl-headerTitle {
    color: var(--text-primary) !important;
}

/* Social login tlačítka - lepší viditelnost */
#clerk-sign-in .cl-socialButtonsBlockButton,
#clerk-sign-in .cl-socialButtonsIconButton {
    border-radius: var(--border-radius-small) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    transition: all 0.2s ease !important;
}

#clerk-sign-in .cl-socialButtonsBlockButton:hover,
#clerk-sign-in .cl-socialButtonsIconButton:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: var(--neon-cyan) !important;
}

/* Ikony v tlačítkách - lepší viditelnost */
#clerk-sign-in .cl-socialButtonsBlockButtonIcon,
#clerk-sign-in .cl-socialButtonsIconButton svg {
    filter: brightness(1.5) !important;
}

/* Text v social buttons */
#clerk-sign-in .cl-socialButtonsBlockButtonText {
    color: white !important;
    font-weight: 500 !important;
}

/* Primární tlačítko */
#clerk-sign-in .cl-formButtonPrimary {
    border-radius: var(--border-radius-small) !important;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%) !important;
    border: none !important;
    font-weight: 600 !important;
}

#clerk-sign-in .cl-formButtonPrimary:hover {
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5) !important;
}

/* Inputy */
#clerk-sign-in .cl-formFieldInput {
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border-radius: var(--border-radius-small) !important;
}

#clerk-sign-in .cl-formFieldInput:focus {
    border-color: var(--neon-cyan) !important;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3) !important;
}

/* Labely */
#clerk-sign-in .cl-formFieldLabel {
    color: var(--text-secondary) !important;
}

/* Footer linky */
#clerk-sign-in .cl-footerAction,
#clerk-sign-in .cl-footerActionLink {
    color: var(--neon-cyan) !important;
}

#clerk-sign-in .cl-footerActionLink:hover {
    color: var(--neon-pink) !important;
}

/* Divider */
#clerk-sign-in .cl-dividerLine {
    background: rgba(255, 255, 255, 0.2) !important;
}

#clerk-sign-in .cl-dividerText {
    color: var(--text-secondary) !important;
}

/* Přepsání pozadí Clerk komponent */
#clerk-sign-in .cl-internal-b3fm6y,
#clerk-user-profile .cl-internal-b3fm6y {
    background: transparent !important;
}

/* Zarovnání elementů */
#clerk-sign-in .cl-socialButtons {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

#clerk-sign-in .cl-socialButtonsBlockButton {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 20px !important;
}

.user-info {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 0, 255, 0.1);
    border-radius: var(--border-radius-small);
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.user-email {
    font-size: 1rem;
    color: var(--neon-cyan);
    margin-bottom: 5px;
}

.user-name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.logout-btn {
    width: 100%;
    background: transparent;
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

.logout-btn:hover {
    background: rgba(255, 0, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

/* Override Clerk default styles for dark theme */
.cl-card {
    background: transparent !important;
    box-shadow: none !important;
}

.cl-internal-b3fm6y {
    background: transparent !important;
}

.cl-formButtonPrimary {
    background: transparent !important;
    border: 2px solid var(--neon-pink) !important;
    color: var(--neon-pink) !important;
}

.cl-formButtonPrimary:hover {
    background: rgba(255, 0, 255, 0.2) !important;
}

.cl-footerActionLink {
    color: var(--neon-cyan) !important;
}

.cl-input {
    background: rgba(0, 0, 0, 0.5) !important;
    border-color: rgba(255, 0, 255, 0.3) !important;
    color: white !important;
}

.cl-input:focus {
    border-color: var(--neon-pink) !important;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3) !important;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: rgba(10, 10, 21, 0.98);
    border: 1px solid var(--neon-pink);
    border-radius: var(--border-radius);
    padding: 30px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s ease;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 8px;
    font-size: 2rem;
}

.star-rating .star {
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.star-rating .star:hover ~ .star {
    color: rgba(255, 255, 255, 0.3);
}

/* Recipe Cards */
.recipes-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.recipe-card {
    background: rgba(128, 0, 128, 0.7);
    border: 2px solid rgba(128, 0, 128, 0.8);
    border-radius: var(--border-radius-small);
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
}

.recipe-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Barvy dle hodnocení - recepty */
.recipe-card.rating-5 {
    background: rgba(0, 200, 83, 0.85);
    border-color: rgba(0, 150, 60, 0.9);
}

.recipe-card.rating-4 {
    background: rgba(33, 150, 243, 0.85);
    border-color: rgba(25, 118, 210, 0.9);
}

.recipe-card.rating-3 {
    background: rgba(255, 235, 59, 0.85);
    border-color: rgba(251, 192, 45, 0.9);
}

.recipe-card.rating-2 {
    background: rgba(255, 152, 0, 0.85);
    border-color: rgba(245, 124, 0, 0.9);
}

.recipe-card.rating-1 {
    background: rgba(244, 67, 54, 0.85);
    border-color: rgba(211, 47, 47, 0.9);
}

.recipe-card.rating-0 {
    background: rgba(156, 39, 176, 0.85);
    border-color: rgba(123, 31, 162, 0.9);
}

/* Černé písmo pro všechny recepty */
.recipe-card,
.recipe-card .recipe-card-title,
.recipe-card .recipe-card-description,
.recipe-card .recipe-card-meta,
.recipe-card .recipe-card-rating {
    color: #000 !important;
}

.recipe-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.recipe-card-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--neon-cyan);
    margin: 0;
}

.recipe-card-rating {
    color: #ffd700;
    font-size: 0.9rem;
}

.recipe-card-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recipe-card-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.recipe-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Recipe Detail */
.recipe-detail-content {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
}

.recipe-detail-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.recipe-detail-rating {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.recipe-detail-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.recipe-detail-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.recipe-info-item {
    background: rgba(0, 255, 255, 0.05);
    padding: 15px;
    border-radius: var(--border-radius-small);
    text-align: center;
}

.recipe-info-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.recipe-info-value {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--neon-cyan);
}

.recipe-ingredients-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--neon-pink);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.recipe-meta-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.recipe-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.recipe-id {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.recipe-id code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: rgba(0, 255, 255, 0.7);
    word-break: break-all;
}

/* No recipes text */
.no-recipes-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 40px 20px;
    font-size: 1rem;
}

/* ============================================
   OBLÍBENÉ PRODUKTY STYLY
   ============================================ */

.products-header {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* Vyhledávací lišta produktů */
.products-search-bar {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--neon-purple);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 20px;
}

.search-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.search-field label {
    font-size: 0.8rem;
    color: var(--neon-cyan);
    font-weight: 500;
}

.search-text {
    flex: 2;
    min-width: 180px;
}

.search-type {
    flex: 1;
    min-width: 150px;
}

.search-rating {
    flex: 1;
    min-width: 160px;
}

.products-search-bar input[type="text"],
.products-search-bar select {
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--neon-purple);
    border-radius: var(--border-radius-small);
    color: var(--text-color);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.products-search-bar input[type="text"]:focus,
.products-search-bar select:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.products-search-bar select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff00ff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.products-search-bar select option {
    background: #1a1a2e;
    color: var(--text-color);
}

/* Hvězdičky pro filtrování */
.search-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--neon-purple);
    border-radius: var(--border-radius-small);
}

.search-star {
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.3);
}

.search-star:hover,
.search-star.hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
    transform: scale(1.1);
}

.search-star.active {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.clear-rating-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0 5px;
    margin-left: 5px;
    transition: all 0.2s ease;
}

.clear-rating-btn:hover {
    color: var(--neon-cyan);
}

.search-results-info {
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    min-height: 20px;
}

.search-results-info.has-results {
    color: var(--neon-green);
}

.search-results-info.no-results {
    color: var(--neon-pink);
}

/* Responzivní design pro vyhledávání */
@media (max-width: 600px) {
    .search-row {
        flex-direction: column;
    }
    
    .search-text,
    .search-type,
    .search-rating {
        min-width: 100%;
    }
}

/* Vyhledávací lišta receptů */
.recipes-search-bar {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--neon-purple);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 20px;
}

.recipes-search-bar input[type="text"] {
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--neon-purple);
    border-radius: var(--border-radius-small);
    color: var(--text-color);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.recipes-search-bar input[type="text"]:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* ============================================
   SUBSCRIPTION CARD STYLES
   ============================================ */

.subscription-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--neon-green);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
}

.subscription-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.subscription-icon {
    font-size: 1.5rem;
}

.subscription-header h3 {
    margin: 0;
    color: var(--text-color);
    font-size: 1.1rem;
}

.subscription-status {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.subscription-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius-small);
    padding: 15px;
    margin-bottom: 15px;
}

.subscription-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.subscription-row span {
    color: rgba(255, 255, 255, 0.7);
}

.subscription-row strong {
    color: var(--neon-cyan);
}

.subscription-warning {
    background: rgba(255, 0, 100, 0.2);
    border: 1px solid var(--neon-pink);
    border-radius: var(--border-radius-small);
    padding: 12px;
    margin-bottom: 15px;
    color: var(--neon-pink);
    font-size: 0.9rem;
}

.subscription-renew-btn {
    width: 100%;
    margin-top: 10px;
}

.no-products-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 40px 20px;
    font-size: 1rem;
}

/* Products List */
.products-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

/* Product Card */
.product-card {
    background: rgba(156, 39, 176, 0.85);
    border: 2px solid rgba(123, 31, 162, 0.9);
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Barvy dle hodnocení - produkty */
.product-card.rating-5 {
    background: rgba(0, 200, 83, 0.85);
    border-color: rgba(0, 150, 60, 0.9);
}

.product-card.rating-4 {
    background: rgba(33, 150, 243, 0.85);
    border-color: rgba(25, 118, 210, 0.9);
}

.product-card.rating-3 {
    background: rgba(255, 235, 59, 0.85);
    border-color: rgba(251, 192, 45, 0.9);
}

.product-card.rating-2 {
    background: rgba(255, 152, 0, 0.85);
    border-color: rgba(245, 124, 0, 0.9);
}

.product-card.rating-1 {
    background: rgba(244, 67, 54, 0.85);
    border-color: rgba(211, 47, 47, 0.9);
}

.product-card.rating-0 {
    background: rgba(156, 39, 176, 0.85);
    border-color: rgba(123, 31, 162, 0.9);
}

/* Černé písmo pro všechny produkty */
.product-card,
.product-card .product-card-title,
.product-card .product-card-description,
.product-card .product-card-meta,
.product-card .product-card-rating,
.product-card .product-card-type,
.product-card .product-type-badge {
    color: #000 !important;
}

.product-card .product-type-badge {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(0, 0, 0, 0.3);
}

.product-card-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-content {
    padding: 15px;
}

.product-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.product-card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--neon-cyan);
    margin: 0;
    flex: 1;
}

.product-card-rating {
    color: #ffd700;
    font-size: 0.85rem;
    white-space: nowrap;
}

.product-card-type {
    margin-bottom: 8px;
}

.product-type-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 0, 255, 0.2);
    border: 1px solid var(--neon-purple);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--neon-pink);
}

.product-type-badge.large {
    font-size: 0.9rem;
    padding: 6px 14px;
    margin-bottom: 10px;
}

.product-card-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-card-meta {
    display: flex;
    gap: 15px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Product Detail */
.product-detail-content {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
}

.product-detail-image {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.5);
}

.product-detail-header {
    margin-bottom: 20px;
}

.product-detail-type {
    margin-bottom: 15px;
}

.product-detail-rating {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.product-detail-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    white-space: pre-wrap;
}

.product-detail-url {
    margin: 20px 0;
}

.product-detail-url .neon-button {
    width: 100%;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-meta-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.product-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.product-id {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.product-id code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: rgba(0, 255, 255, 0.7);
    word-break: break-all;
}

/* Product Form */
.product-form {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 20px;
}

.product-form .form-group {
    margin-bottom: 20px;
}

.product-form label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--neon-cyan);
    margin-bottom: 8px;
}

.product-form input[type="text"],
.product-form input[type="url"],
.product-form textarea,
.product-form select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--neon-purple);
    border-radius: var(--border-radius-small);
    color: var(--text-color);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.product-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff00ff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.product-form select option {
    background: #1a1a2e;
    color: var(--text-color);
    padding: 10px;
}

.product-form input:focus,
.product-form textarea:focus,
.product-form select:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.product-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Product Star Rating */
.product-star-rating {
    display: flex;
    gap: 5px;
}

.product-star-rating .star {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-star-rating .star:hover,
.product-star-rating .star.active {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Image Upload */
.image-upload-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.image-preview {
    width: 100%;
    height: 200px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px dashed var(--neon-purple);
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.image-placeholder {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.image-upload-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.image-upload-buttons .neon-button,
.image-upload-buttons .upload-btn {
    flex: 1;
    min-width: 140px;
}

.upload-btn {
    cursor: pointer;
}

/* Mobile only button */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: flex;
    }
}

/* Form buttons */
.form-buttons {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Red button for delete */
.btn-red {
    background: linear-gradient(135deg, rgba(255, 0, 60, 0.3), rgba(255, 0, 100, 0.2));
    border-color: #ff003c !important;
    color: #ff6090 !important;
}

.btn-red:hover {
    background: linear-gradient(135deg, rgba(255, 0, 60, 0.5), rgba(255, 0, 100, 0.4));
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.5);
}

/* User Profile Buttons */
.user-profile-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.user-profile-buttons .neon-button {
    width: 100%;
}

/* Share Modal */
.share-link-container {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.share-link-input {
    flex: 1;
    padding: 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--neon-cyan);
    border-radius: var(--border-radius-small);
    color: var(--text-color);
    font-size: 0.9rem;
}

.copy-btn {
    padding: 12px 20px;
    background: var(--neon-cyan);
    border: none;
    border-radius: var(--border-radius-small);
    color: #000;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Login Prompt for Shared Recipes */
.login-prompt {
    text-align: center;
    padding: 60px 30px;
    background: rgba(255, 0, 255, 0.05);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: var(--border-radius);
}

.login-prompt-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.login-prompt-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--neon-pink);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.login-prompt-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.6;
}

.login-prompt .neon-button {
    padding: 15px 40px;
    font-size: 1rem;
}

/* Responsive Navigation */
@media (max-width: 480px) {
    .top-nav {
        top: 10px;
        left: 10px;
        right: 10px;
    }
    
    .nav-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .nav-btn .nav-text {
        display: none;
    }
    
    .nav-btn .nav-icon {
        font-size: 1.2rem;
    }
    
    .home-btn {
        padding: 8px 10px;
    }
    
    .home-icon {
        width: 20px;
        height: 20px;
    }
    
    .menu-dropdown,
    .login-content {
        width: calc(100vw - 30px);
        max-height: calc(100vh - 30px);
        padding: 20px;
    }
}

/* Prep Item Accordion */
.prep-item-accordion {
    display: flex;
    flex-direction: column;
    border-radius: var(--border-radius-small);
    overflow: hidden;
    transition: all 0.3s ease;
}

.prep-item-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--border-radius-small);
    color: var(--text-color);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 60px;
}

.prep-item-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.prep-item-btn.active {
    background: rgba(0, 255, 255, 0.15);
    border-color: var(--neon-cyan);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.prep-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--neon-cyan);
}

.prep-item-btn.active .prep-arrow {
    transform: rotate(180deg);
}

.prep-detail {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--neon-cyan);
    border-top: none;
    border-bottom-left-radius: var(--border-radius-small);
    border-bottom-right-radius: var(--border-radius-small);
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.prep-detail.open {
    max-height: 500px;
    padding: 15px 20px;
}

.prep-detail p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.prep-detail strong {
    color: var(--neon-pink);
}

/* Neon Button */
.neon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 50px;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neon-pink);
    background: transparent;
    border: 3px solid var(--neon-pink);
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.neon-button:hover {
    color: var(--bg-dark);
    background: var(--neon-pink);
    box-shadow: 
        0 0 20px var(--neon-pink),
        0 0 40px var(--neon-pink),
        0 0 60px var(--neon-pink);
}

.neon-button.secondary {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    padding: 15px 30px;
    font-size: 1rem;
}

.neon-button.secondary:hover {
    background: var(--neon-cyan);
    box-shadow: 
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.neon-button:hover .button-glow {
    left: 100%;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

#intro {
    text-align: center;
}

/* Page Title */
.page-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--neon-pink);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

/* Form container - uses global clouds */
#form {
    position: relative;
    overflow: visible;
}

/* Remove separate form clouds - using global clouds instead */
.form-cloud {
    display: none;
}

/* Form Groups */
.form-group {
    background: var(--bg-card);
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.form-group:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
}

/* eLiquid form - cyan borders */
/* Form group base styles are now handled by form-specific classes (.form-cyan, .form-green, .form-red) */

/* Dilute form - pink labels */
#dilute-form .form-label {
    color: var(--neon-pink);
}

#dilute-form .form-label-small {
    color: rgba(255, 0, 255, 0.7);
}

.form-label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.label-hint {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Input styles */
.input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.neon-input {
    width: 150px;
    padding: 15px 20px;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--neon-green);
    background: var(--bg-input);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: var(--border-radius-small);
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
}

.neon-input:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.neon-input.small {
    width: 100px;
    padding: 10px 15px;
    font-size: 1.2rem;
}

.neon-input.medium {
    width: 140px;
    padding: 12px 18px;
    font-size: 1.3rem;
}

.input-unit {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.input-warning {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 8px 12px;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 6px;
    animation: warningPulse 0.3s ease-out;
}

@keyframes warningPulse {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Select styles */
.neon-select {
    padding: 15px 20px;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    color: var(--neon-cyan);
    background: var(--bg-input);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: var(--border-radius-small);
    outline: none;
    cursor: pointer;
    min-width: 200px;
    max-width: 100%;
    width: auto;
    transition: all 0.3s ease;
}

#flavorType {
    min-width: 320px;
}

.neon-select:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.neon-select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.neon-select.small {
    padding: 10px 15px;
    font-size: 0.95rem;
    min-width: 120px;
}

.form-label-small {
    display: block;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    margin-top: 5px;
}

#nicotineRatioContainer {
    margin-top: 15px;
}

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

.ratio-toggle-btn {
    padding: 12px 25px;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-input);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-small);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ratio-toggle-btn:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.ratio-toggle-btn.active {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border-color: var(--neon-pink);
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

/* Ratio Container */
.ratio-container {
    text-align: center;
}

.ratio-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.ratio-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.ratio-label.left { color: var(--neon-cyan); }
.ratio-label.right { color: var(--neon-orange); }

/* Slider Container */
.slider-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.slider-container.small {
    margin-bottom: 10px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
    color: var(--neon-pink);
    background: transparent;
    border: 2px solid var(--neon-pink);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn.small {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
}

.slider-btn:hover {
    background: var(--neon-pink);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--neon-pink);
}

.slider-wrapper-with-limits {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.slider-limit {
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 35px;
    text-align: center;
}

.slider-limit.left {
    color: var(--neon-cyan);
}

.slider-limit.right {
    color: var(--neon-pink);
}

.slider-wrapper {
    flex: 1;
    position: relative;
    height: 30px;
}

.ratio-slider-wrapper {
    overflow: visible;
    border-radius: 10px;
    position: relative;
}

.slider-disabled-zone {
    position: absolute;
    top: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    pointer-events: none;
    z-index: 1;
    transition: width 0.3s ease;
    border-radius: 10px;
}

.slider-disabled-zone.left {
    left: 0;
    border-right: 2px solid rgba(255, 0, 68, 0.8);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.slider-disabled-zone.right {
    right: 0;
    border-left: 2px solid rgba(255, 0, 68, 0.8);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.limit-value {
    position: absolute;
    top: -20px;
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ff4466;
    text-shadow: 0 0 5px rgba(255, 0, 68, 0.5);
    white-space: nowrap;
}

.slider-disabled-zone.left .limit-value {
    right: 0;
    transform: translateX(50%);
}

.slider-disabled-zone.right .limit-value {
    left: 0;
    transform: translateX(-50%);
}

.slider-center-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 25px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    pointer-events: none;
    z-index: 2;
}

/* Custom Slider */
.ratio-slider,
.nicotine-slider,
.flavor-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 20px;
    background: transparent;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 20px;
    transform: translateY(-50%);
    border-radius: 10px;
    z-index: 1;
    transition: background 0.3s ease;
}

.ratio-slider::-webkit-slider-thumb,
.nicotine-slider::-webkit-slider-thumb,
.flavor-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 35px;
    height: 35px;
    background: var(--neon-pink);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 20px var(--neon-pink);
    border: 3px solid white;
    transition: all 0.3s ease;
}

.ratio-slider::-webkit-slider-thumb:hover,
.nicotine-slider::-webkit-slider-thumb:hover,
.flavor-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px var(--neon-pink);
}

.ratio-slider::-moz-range-thumb,
.nicotine-slider::-moz-range-thumb,
.flavor-slider::-moz-range-thumb {
    width: 35px;
    height: 35px;
    background: var(--neon-pink);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 20px var(--neon-pink);
    border: 3px solid white;
}

.ratio-display {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ratio-description,
.nicotine-description,
.flavor-description {
    padding: 18px 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius-small);
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px currentColor;
    border-left: 4px solid currentColor;
    text-align: left;
    transition: all 0.3s ease;
}

/* Nicotine styles */
.nicotine-base-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.target-nicotine-container {
    text-align: center;
}

.nicotine-display {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    margin: 15px 0;
}

.flavor-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flavor-display {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--neon-green);
}

/* Hidden class */
.hidden {
    display: none !important;
}

/* Results page */
.results-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.summary-item {
    background: var(--bg-card);
    border: 2px solid var(--neon-cyan);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.summary-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.summary-value {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Results Table */
.results-table-container {
    background: var(--bg-card);
    border: 2px solid var(--neon-pink);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
    overflow-x: auto;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.results-table {
    width: 100%;
    border-collapse: collapse;
}

.results-table th {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 15px;
    border-bottom: 2px solid var(--neon-pink);
    text-align: left;
}

.results-table td {
    padding: 18px 15px;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    font-size: 1.1rem;
}

.results-table tr:last-child td {
    border-bottom: none;
}

.results-table tr:hover td {
    background: rgba(255, 0, 255, 0.05);
}

.results-table .ingredient-name {
    font-weight: 600;
    color: var(--neon-cyan);
}

.results-table .ingredient-value {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.results-table .ingredient-percent {
    font-family: 'Orbitron', monospace;
    color: var(--neon-orange);
}

.results-table .ingredient-drops {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(170, 0, 255, 0.3);
}

.results-table .total-row td {
    border-top: 2px solid var(--neon-pink);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Results notes */
.results-notes {
    background: var(--bg-card);
    border: 2px solid var(--neon-yellow);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.1);
}

.results-notes h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: var(--neon-yellow);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

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

.results-notes li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.results-notes li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--neon-yellow);
}

/* PWA Install Prompt */
.install-prompt {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 2px solid var(--neon-pink);
    border-radius: var(--border-radius);
    padding: 20px 30px;
    z-index: 1000;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.install-content p {
    font-family: 'Orbitron', monospace;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    text-align: center;
}

.install-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.neon-button.small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* iOS Install Prompt */
.ios-prompt {
    max-width: 320px;
}

.ios-instructions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.ios-step {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.ios-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border-radius: 50%;
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
}

.ios-share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--neon-cyan);
    border-radius: 4px;
    color: var(--bg-dark);
    font-size: 0.9rem;
    vertical-align: middle;
    margin: 0 2px;
}

/* Hidden class */
.hidden {
    display: none !important;
}

/* Print styles */
@media print {
    .neon-grid, .disco-ball {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .neon-button {
        display: none;
    }
    
    .results-table {
        border: 1px solid #333;
    }
    
    .results-table th,
    .results-table td {
        border: 1px solid #333;
        color: black;
    }
}

/* Mode Selection Buttons */
.mode-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.mode-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 30px;
    background: var(--bg-card);
    border: 3px solid;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mode-button.cyan {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.mode-button.cyan:hover {
    box-shadow: 0 0 35px rgba(0, 255, 255, 0.5);
    transform: translateY(-3px);
}

.mode-button.cyan .mode-title {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.mode-button.cyan .mode-desc {
    color: rgba(0, 255, 255, 0.7);
}

.mode-button.pink {
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
}

.mode-button.pink:hover {
    box-shadow: 0 0 35px rgba(255, 0, 255, 0.5);
    transform: translateY(-3px);
}

.mode-button.pink .mode-title {
    color: var(--neon-pink);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.mode-button.pink .mode-desc {
    color: rgba(255, 0, 255, 0.7);
}

.mode-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.mode-desc {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    text-align: center;
}

/* Amount Choice Container */
.amount-choice-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.amount-choice {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--border-radius-small);
}

.amount-choice input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--neon-pink);
}

.amount-choice label {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    flex: 1;
    min-width: 200px;
}

.amount-choice .input-wrapper {
    margin-left: auto;
}

.amount-choice .neon-input:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.amount-divider {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 5px 0;
}

/* Dilute Nicotine Container */
.dilute-nicotine-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

/* Form Group Sub */
.form-group-sub {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Compact ratio container */
.ratio-container.compact {
    padding: 0;
}

.ratio-container.compact .slider-container {
    margin-bottom: 10px;
}

.ratio-display.small {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* =========================================
   Form Tabs - Záložky formuláře
   ========================================= */
.form-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.form-tab {
    padding: 12px 25px;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: var(--neon-cyan);
    background: var(--bg-input);
    border: 2px solid var(--neon-cyan);
    border-radius: var(--border-radius-small);
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-tab:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.form-tab.active {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Green tab - Shake & Vape */
.form-tab.tab-green {
    color: var(--neon-green);
    border-color: var(--neon-green);
}

.form-tab.tab-green:hover {
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.form-tab.tab-green.active {
    background: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

/* Red tab - Liquid PRO */
.form-tab.tab-red {
    color: var(--neon-red);
    border-color: var(--neon-red);
}

.form-tab.tab-red:hover {
    background: rgba(255, 0, 68, 0.1);
    box-shadow: 0 0 15px rgba(255, 0, 68, 0.3);
}

.form-tab.tab-red.active {
    background: var(--neon-red);
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 68, 0.5);
}

/* Form content areas */
.form-content {
    display: none;
}

.form-content.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

/* =========================================
   Cyan Form - Liquid Styles
   ========================================= */
.form-cyan .form-group {
    border-color: rgba(0, 255, 255, 0.3);
}

.form-cyan .form-group:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.form-cyan .form-label {
    color: var(--neon-cyan);
}

.form-cyan .form-label-small {
    color: rgba(0, 255, 255, 0.7);
}

.form-cyan .ratio-label.left {
    color: var(--neon-cyan);
}

.form-cyan .slider-limit.left {
    color: var(--neon-cyan);
}

.form-cyan .slider-limit.right {
    color: var(--neon-cyan);
}

/* Cyan ratio labels */
.form-cyan .ratio-label.right {
    color: var(--neon-cyan);
}

/* Cyan inputs - neon pink values */
.form-cyan .neon-input {
    color: var(--neon-pink);
    border-color: rgba(0, 255, 255, 0.3);
}

.form-cyan .neon-input:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* Cyan selects - neon pink values */
.form-cyan .neon-select {
    color: var(--neon-pink);
    border-color: rgba(0, 255, 255, 0.3);
}

.form-cyan .neon-select:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* Cyan displays - colors are set dynamically by JavaScript */

/* Cyan input units - neon pink */
.form-cyan .input-unit {
    color: var(--neon-pink);
}

/* Cyan ratio display */
.form-cyan .ratio-display {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cyan slider buttons */
.form-cyan .slider-btn {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
}

.form-cyan .slider-btn:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--neon-cyan);
}

/* Cyan ratio toggle buttons - neon pink active */
.form-cyan .ratio-toggle-btn {
    border-color: rgba(0, 255, 255, 0.3);
}

.form-cyan .ratio-toggle-btn:hover {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

.form-cyan .ratio-toggle-btn.active {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border-color: var(--neon-pink);
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

/* Cyan label hints */
.form-cyan .label-hint {
    color: rgba(0, 255, 255, 0.6);
}

/* =========================================
   Green Form - Shake & Vape Styles
   ========================================= */
.form-green .form-group {
    border-color: rgba(0, 255, 0, 0.3);
}

.form-green .form-group:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.form-green .form-label {
    color: var(--neon-green);
}

.form-green .form-label-small {
    color: rgba(0, 255, 0, 0.7);
}

.form-green .ratio-label.left {
    color: var(--neon-green);
}

.form-green .slider-limit.left {
    color: var(--neon-green);
}

.form-green .slider-limit.right {
    color: var(--neon-green);
}

/* Green ratio labels */
.form-green .ratio-label.right {
    color: var(--neon-green);
}

/* Green inputs - neon orange values */
.form-green .neon-input {
    color: var(--neon-orange);
    border-color: rgba(0, 255, 0, 0.3);
}

.form-green .neon-input:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

/* Green selects - neon orange values */
.form-green .neon-select {
    color: var(--neon-orange);
    border-color: rgba(0, 255, 0, 0.3);
}

.form-green .neon-select:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

/* Green displays - colors are set dynamically by JavaScript */

/* Green input units - neon orange */
.form-green .input-unit {
    color: var(--neon-orange);
}

/* Green ratio display */
.form-green .ratio-display {
    background: linear-gradient(90deg, var(--neon-green), var(--neon-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Green slider buttons */
.form-green .slider-btn {
    color: var(--neon-green);
    border-color: var(--neon-green);
}

.form-green .slider-btn:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--neon-green);
}

/* Green ratio toggle buttons - neon orange active */
.form-green .ratio-toggle-btn {
    border-color: rgba(0, 255, 0, 0.3);
}

.form-green .ratio-toggle-btn:hover {
    border-color: var(--neon-orange);
    color: var(--neon-orange);
}

.form-green .ratio-toggle-btn.active {
    background: linear-gradient(135deg, var(--neon-orange), #cc6600);
    border-color: var(--neon-orange);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(255, 136, 0, 0.4);
}

/* Green label hints */
.form-green .label-hint {
    color: rgba(0, 255, 0, 0.6);
}

/* Green button */
.neon-button.btn-green {
    color: var(--neon-green);
    border-color: var(--neon-green);
}

.neon-button.btn-green:hover {
    color: var(--bg-dark);
    background: var(--neon-green);
    box-shadow: 
        0 0 20px var(--neon-green),
        0 0 40px var(--neon-green),
        0 0 60px var(--neon-green);
}

/* =========================================
   Red Form - Liquid PRO Styles
   ========================================= */
.form-red .form-group {
    border-color: rgba(255, 0, 68, 0.3);
}

.form-red .form-group:hover {
    border-color: var(--neon-red);
    box-shadow: 0 0 20px rgba(255, 0, 68, 0.2);
}

.form-red .form-label {
    color: var(--neon-red);
}

.form-red .form-label-small {
    color: rgba(255, 0, 68, 0.7);
}

.form-red .ratio-label.left {
    color: var(--neon-red);
}

.form-red .slider-limit.left {
    color: var(--neon-red);
}

.form-red .slider-limit.right {
    color: var(--neon-red);
}

/* Red ratio labels */
.form-red .ratio-label.right {
    color: var(--neon-red);
}

/* Red inputs - neon yellow values */
.form-red .neon-input {
    color: var(--neon-yellow);
    border-color: rgba(255, 0, 68, 0.3);
}

.form-red .neon-input:focus {
    border-color: var(--neon-red);
    box-shadow: 0 0 20px rgba(255, 0, 68, 0.3);
}

/* Red selects - neon yellow values */
.form-red .neon-select {
    color: var(--neon-yellow);
    border-color: rgba(255, 0, 68, 0.3);
}

.form-red .neon-select:focus {
    border-color: var(--neon-red);
    box-shadow: 0 0 20px rgba(255, 0, 68, 0.3);
}

/* Red displays - colors are set dynamically by JavaScript */

/* Red input units - neon yellow */
.form-red .input-unit {
    color: var(--neon-yellow);
}

/* Red ratio display */
.form-red .ratio-display {
    background: linear-gradient(90deg, var(--neon-red), var(--neon-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Red slider buttons */
.form-red .slider-btn {
    color: var(--neon-red);
    border-color: var(--neon-red);
}

.form-red .slider-btn:hover {
    background: var(--neon-red);
    color: white;
    box-shadow: 0 0 15px var(--neon-red);
}

/* Red ratio toggle buttons - neon yellow active */
.form-red .ratio-toggle-btn {
    border-color: rgba(255, 0, 68, 0.3);
}

.form-red .ratio-toggle-btn:hover {
    border-color: var(--neon-yellow);
    color: var(--neon-yellow);
}

.form-red .ratio-toggle-btn.active {
    background: linear-gradient(135deg, var(--neon-yellow), #cccc00);
    border-color: var(--neon-yellow);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.4);
}

/* Red label hints */
.form-red .label-hint {
    color: rgba(255, 0, 68, 0.6);
}

/* Red button */
.neon-button.btn-red {
    color: var(--neon-red);
    border-color: var(--neon-red);
}

.neon-button.btn-red:hover {
    color: white;
    background: var(--neon-red);
    box-shadow: 
        0 0 20px var(--neon-red),
        0 0 40px var(--neon-red),
        0 0 60px var(--neon-red);
}

/* =========================================
   Linked Products - Propojené produkty
   ========================================= */

/* Container pro výběr produktů v modalu */
.linked-products-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.selected-products-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Řádek pro výběr produktu */
.product-select-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 30, 60, 0.6);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: var(--border-radius-small);
    padding: 8px 10px;
}

.product-select-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-search-input {
    width: 100%;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.product-search-input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.2);
}

.product-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.product-select {
    width: 100%;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
}

.product-select:focus {
    outline: none;
    border-color: var(--neon-pink);
}

.product-select option {
    background: #1a1a2e;
    color: var(--text-primary);
    padding: 8px;
}

.remove-product-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 68, 0.2);
    border: 1px solid rgba(255, 0, 68, 0.5);
    border-radius: 8px;
    color: var(--neon-red);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.remove-product-btn:hover {
    background: rgba(255, 0, 68, 0.4);
    border-color: var(--neon-red);
}

/* Tlačítko přidat produkt */
.add-product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px dashed rgba(0, 255, 0, 0.4);
    border-radius: var(--border-radius-small);
    color: var(--neon-green);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-product-btn:hover {
    background: rgba(0, 255, 0, 0.2);
    border-color: var(--neon-green);
}

.add-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Seznam propojených produktů v detailu receptu */
.recipe-linked-products {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.linked-products-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.linked-product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(30, 30, 60, 0.6);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: var(--border-radius-small);
    cursor: pointer;
    transition: all 0.2s ease;
}

.linked-product-item:hover {
    background: rgba(50, 50, 80, 0.8);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.linked-product-icon {
    font-size: 1.3rem;
}

.linked-product-name {
    flex: 1;
    color: var(--text-primary);
    font-size: 1rem;
}

.linked-product-rating {
    color: #ffd700;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    
    .neon-title {
        font-size: 2rem;
    }
    
    .form-group {
        padding: 20px 15px;
    }
    
    .ratio-display {
        font-size: 2rem;
    }
    
    .neon-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    /* Tabs responsive */
    .form-tabs {
        flex-direction: column;
        gap: 8px;
    }
    
    .form-tab {
        padding: 10px 15px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    /* Linked products responsive */
    .product-select-row {
        padding: 6px 8px;
    }
    
    .product-search-input,
    .product-select {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .add-product-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .linked-product-item {
        padding: 10px 12px;
    }
}

