/* =========================================
   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);
}

/* 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);
}

.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);
}

/* 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);
}

/* 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 {
    flex: 1;
    position: relative;
    height: 30px;
}

/* 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;
    }
}

/* 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;
    }
}

