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

body {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 25%, #cccccc 50%, #666666 75%, #000000 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Logo - Top Left */
.logo {
    position: absolute;
    top: 30px;
    left: 30px;
    height: 75px;
    width: auto;
    z-index: 10;
    transition: all 0.2s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Flavor Text - Far Left */
.flavor-text {
    position: absolute;
    left: 50px;
    top: 35%;
    transform: translateY(-50%);
    z-index: 5;
}

.flavor-title-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
}

.flavor-title {
    font-family: 'Impact', 'Arial Black', 'Franklin Gothic Bold', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    color: #000000;
    line-height: 0.9;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    transition: all 0.2s ease;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.flavor-title:hover {
    transform: translateY(-2px);
}

.title-icon {
    width: 240px;
    height: 240px;
    object-fit: contain;
    transition: all 0.3s ease;
    transform: scaleX(-1);
}

.title-icon:hover {
    transform: scaleX(-1) scale(1.05);
}

.flavor-desc {
    font-size: 1.6rem;
    color: #333333;
    line-height: 1.4;
    max-width: 500px;
    margin: 0;
    transition: all 0.2s ease;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.flavor-desc:hover {
    color: #000000;
}

/* Chip Container - Center Right */
.chip-container {
    position: absolute;
    left: 60%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.chip-backdrop {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background-color: #f8f9fa;
    opacity: 0.6;
    filter: blur(120px);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.chip-image {
    max-width: 600px;
    max-height: 750px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
    display: block;
    position: relative;
    z-index: 2;
}

.chip-image:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

.chip-side-icon {
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    object-fit: contain;
    filter: blur(5px);
    opacity: 0.3;
    z-index: 1;
    transition: all 0.5s ease;
}


/* Waitlist Box - Bottom Left */
.waitlist-box {
    position: absolute;
    bottom: 60px;
    left: 50px;
    background-color: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px 35px;
    width: 550px;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.2s ease;
}

.waitlist-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #cccccc;
    background-color: #f0f0f0;
}

.waitlist-box h3 {
    font-family: 'Impact', 'Arial Black', 'Franklin Gothic Bold', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.waitlist-box p {
    font-size: 0.85rem;
    color: #333333;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 500;
}

.waitlist-box input[type="email"] {
    width: 63%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-right: 12px;
    background-color: #ffffff;
    color: #333333;
    transition: all 0.2s ease;
    display: inline-block;
}

.waitlist-box input[type="email"]::placeholder {
    color: #999999;
}

.waitlist-box input[type="email"]:focus {
    outline: none;
    border-color: #333333;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.waitlist-box button {
    width: 35%;
    background-color: #333333;
    color: #ffffff;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.waitlist-box button:hover {
    background-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.waitlist-box button:active {
    transform: translateY(0);
}

.success-message {
    text-align: center;
    color: #28a745;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 15px;
}

.error-message {
    text-align: center;
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 12px;
}

/* Flavor Indicators - Under Description */
.flavor-indicators {
    position: absolute;
    left: 50px;
    top: 55%;
    display: flex;
    gap: 25px;
    z-index: 10;
}

.flavor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.flavor-circle {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.7;
    border: 3px solid #e9ecef;
    margin-bottom: 12px;
    background-color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.flavor-circle.active {
    opacity: 1;
    border: 3px solid #333333;
    transform: scale(1.1);
    background-color: #f8f9fa;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.flavor-circle img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.flavor-circle.chili-lime img {
    width: 85px;
    height: 85px;
}

.flavor-circle:hover {
    opacity: 0.9;
    transform: scale(1.05);
    border-color: #666666;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.flavor-label {
    font-family: 'Impact', 'Arial Black', 'Franklin Gothic Bold', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
}

.flavor-item:hover .flavor-label {
    color: #333333;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        overflow-y: auto;
        height: auto;
        min-height: 100vh;
        padding-bottom: 300px;
    }
    .logo {
        top: 15px;
        left: 15px;
        height: 40px;
    }
    
    .flavor-text {
        left: 15px;
        top: 20%;
        max-width: 280px;
    }
    
    .flavor-title-container {
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .flavor-title {
        font-size: 3.5rem;
        line-height: 0.8;
    }
    
    .title-icon {
        width: 60px;
        height: 60px;
    }
    
    .flavor-desc {
        font-size: 1.1rem;
        max-width: 280px;
        margin-bottom: 20px;
    }
    
    .chip-container {
        left: 55%;
        top: 60%;
    }
    
    .chip-backdrop {
        width: 600px;
        height: 600px;
        filter: blur(100px);
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.5);
    }
    
    .chip-image {
        max-width: 280px;
        max-height: 350px;
    }
    
    .chip-side-icon {
        right: -150px;
        width: 250px;
        height: 250px;
        filter: blur(3px);
        opacity: 0.25;
    }
    
    .flavor-indicators {
        left: 15px;
        top: 40%;
        gap: 15px;
    }
    
    .flavor-circle {
        width: 80px;
        height: 80px;
        border: 3px solid transparent;
    }
    
    .flavor-circle.active {
        border: 3px solid #333333;
    }
    
    .flavor-circle img {
        width: 50px;
        height: 50px;
    }
    
    .flavor-circle.chili-lime img {
        width: 55px;
        height: 55px;
    }
    
    .flavor-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    
    .waitlist-box {
        position: fixed;
        bottom: 20px;
        left: 15px;
        right: 15px;
        width: auto;
        padding: 15px 20px;
        margin: 0;
        z-index: 1000;
    }
    
    .waitlist-box h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .waitlist-box p {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .waitlist-box input[type="email"] {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .waitlist-box button {
        width: 100%;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    body {
        overflow-y: auto;
        height: auto;
        min-height: 100vh;
        padding-bottom: 280px;
    }
    .flavor-title-container {
        gap: 12px;
    }
    
    .flavor-title {
        font-size: 2.8rem;
    }
    
    .title-icon {
        width: 50px;
        height: 50px;
    }
    
    .flavor-desc {
        font-size: 1rem;
        max-width: 250px;
        margin-bottom: 15px;
    }
    
    .chip-container {
        left: 50%;
        top: 65%;
    }
    
    .chip-backdrop {
        width: 600px;
        height: 600px;
        filter: blur(100px);
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.5);
    }
    
    .chip-image {
        max-width: 220px;
        max-height: 280px;
    }
    
    .chip-side-icon {
        right: -100px;
        width: 180px;
        height: 180px;
        filter: blur(2px);
        opacity: 0.2;
    }
    
    .flavor-indicators {
        top: 37%;
        gap: 12px;
    }
    
    .flavor-circle {
        width: 65px;
        height: 65px;
    }
    
    .flavor-circle img {
        width: 40px;
        height: 40px;
    }
    
    .flavor-circle.chili-lime img {
        width: 45px;
        height: 45px;
    }
    
    .flavor-label {
        font-size: 0.6rem;
    }
    
    .waitlist-box {
        position: fixed;
        bottom: 15px;
        padding: 12px 15px;
        margin: 0;
        z-index: 1000;
    }
    
    .waitlist-box h3 {
        font-size: 0.9rem;
    }
    
    .waitlist-box p {
        font-size: 0.7rem;
    }
}

@media (max-width: 320px) {
    .flavor-title {
        font-size: 2.2rem;
    }
    
    .flavor-desc {
        font-size: 0.9rem;
    }
    
    .chip-image {
        max-width: 180px;
        max-height: 220px;
    }
    
    .flavor-circle {
        width: 55px;
        height: 55px;
    }
    
    .flavor-circle img {
        width: 35px;
        height: 35px;
    }
    
    .flavor-label {
        font-size: 0.55rem;
    }
}