* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 100%);
    min-height: 100vh;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0 0 0;
}

.logo {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ff6b35 0%, #d32f2f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.25rem;
    color: #a0a0a0;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 16px;
}

.intro-text {
    font-size: 1rem;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto;
}

.questionnaire-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px 35px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    margin-bottom: 40px;
}

.section {
    margin-bottom: 20px;
}

.section:last-child {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.flavor-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 20px;
}

.rating-group {
    margin-bottom: 24px;
}

.rating-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    color: #e0e0e0;
    font-size: 1rem;
}

.rating-stars {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.star {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.star:hover,
.star.active {
    color: #ff6b35;
}

.heat-scale {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.heat-flame {
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.3;
    filter: grayscale(1);
    transform: scale(1);
}

.heat-flame:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.1);
}

.heat-flame.active {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
    animation: flicker 1.5s ease-in-out infinite alternate;
}

@keyframes flicker {
    0% { 
        opacity: 1; 
        filter: hue-rotate(0deg) brightness(1);
    }
    100% { 
        opacity: 0.7; 
        filter: hue-rotate(10deg) brightness(1.6);
    }
}

.heat-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.heat-dot:hover,
.heat-dot.active {
    background: #ff6b35;
    color: white;
}

.heat-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #a0a0a0;
    margin-top: 8px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #ff6b35;
    letter-spacing: 0.5px;
}

.status-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ff6b35;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

.spots-counter {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 24px 32px;
    border-radius: 16px;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
    margin-top: 40px;
}

.spots-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b35;
    line-height: 1;
    margin-bottom: 8px;
}

.spots-text {
    font-size: 1rem;
    color: #d0d0d0;
    margin-bottom: 16px;
    font-weight: 500;
}

.spots-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #d32f2f);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.spots-counter.urgent {
    border-color: rgba(255, 69, 0, 0.5);
    background: rgba(255, 69, 0, 0.1);
}

.spots-counter.urgent .spots-number {
    color: #ff4500;
    animation: pulse-urgent 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes pulse-urgent {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.info-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.info-section h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    letter-spacing: -0.02em;
}

.info-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #b0b0b0;
    text-align: center;
    font-weight: 400;
}

.features {
    list-style: none;
    margin-top: 40px;
}

.features li {
    padding: 16px 0;
    font-size: 1.05rem;
    color: #d0d0d0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
}

.features li::before {
    content: '✓';
    color: #ff6b35;
    font-weight: 600;
    margin-right: 16px;
    font-size: 1.1rem;
}

.launch-info {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 24px;
    border-radius: 16px;
    margin-top: 32px;
}

.launch-info h3 {
    color: #ff6b35;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.launch-info p {
    color: #d0d0d0;
    margin: 0;
    font-size: 1rem;
}

.form-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    letter-spacing: -0.02em;
}

.form-subtitle {
    text-align: center;
    color: #a0a0a0;
    margin-bottom: 40px;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #e0e0e0;
    font-size: 0.95rem;
}

input, select, textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

input::placeholder, textarea::placeholder {
    color: #606060;
}

select option {
    background: #2d1810;
    color: #ffffff;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #d32f2f 100%);
    border: none;
    padding: 18px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    margin-top: 32px;
    font-family: inherit;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.heat-levels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.heat-level {
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.85rem;
    color: #a0a0a0;
}

.footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer p {
    color: #808080;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.flavors-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    margin-bottom: 0;
}

.flavors-section h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: #a0a0a0;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 400;
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.flavor-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.flavor-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 53, 0.2);
}

.flavor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.flavor-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.heat-indicator {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.heat-dots {
    color: #ff6b35;
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 4px;
}

.heat-label {
    font-size: 0.8rem;
    color: #a0a0a0;
    font-weight: 500;
}

.flavor-card p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .form-section {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .logo {
        font-size: 2.5rem;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .questionnaire-form {
        padding: 15px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .info-section, .form-section, .flavors-section {
        padding: 20px 20px;
    }

    .heat-levels {
        grid-template-columns: 1fr;
    }
    
    .flavors-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .flavor-card {
        padding: 16px;
    }

    .flavor-card h3 {
        font-size: 1.1rem;
    }
    
    .flavor-card p {
        font-size: 0.9rem;
    }
    
    .flavor-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .heat-indicator {
        align-items: flex-start;
    }

    .heat-dots {
        font-size: 1rem;
    }
    
    .heat-label {
        font-size: 0.75rem;
    }

    .spots-counter {
        padding: 20px 24px;
        margin-top: 30px;
    }
    
    .spots-number {
        font-size: 2.5rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .rating-stars {
        justify-content: center;
    }
    
    .heat-scale {
        justify-content: center;
    }
}

.success-message {
    display: none;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 500;
}