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

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: #000;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    max-width: 600px;
    width: 100%;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

header h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    color: #fff;
    margin-bottom: 10px;
    font-weight: 900;
    transition: all 0.3s ease;
}

header h1:hover {
    transform: scale(1.02);
    cursor: default;
}

header p {
    color: #888;
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

header p:hover {
    color: #aaa;
}

.microwave-section {
    margin: 25px 0;
}

.microwave {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    filter: brightness(0.95);
}

.microwave:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.microwave.beeping {
    transform: scale(1.05);
    filter: brightness(1.3);
}

.beep-count {
    margin-top: 20px;
    color: #666;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.beep-count:hover {
    color: #888;
    transform: scale(1.05);
}

.cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.buy-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.buy-btn:hover {
    background: #f5f5f5;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.buy-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.tg-link {
    color: #777;
    text-decoration: none;
    padding: 15px 30px;
    border: 2px solid #333;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tg-link:hover {
    color: #fff;
    border-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.08);
}

.tg-link:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
        max-width: 500px;
    }
    
    .microwave {
        max-width: 320px;
    }
    
    .buy-btn {
        padding: 14px 26px;
        font-size: 1.05rem;
    }
    
    .tg-link {
        padding: 11px 23px;
        font-size: 0.9rem;
    }
    
    .cta {
        gap: 12px;
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 8px;
    }
    
    .microwave {
        max-width: 280px;
    }
    
    .buy-btn {
        padding: 12px 22px;
        font-size: 0.95rem;
    }
    
    .tg-link {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .cta {
        gap: 10px;
        margin-top: 20px;
    }
    
    .microwave-section {
        margin: 20px 0;
    }
    
    .beep-count {
        margin-top: 15px;
    }
}

@keyframes beep-glow {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.4); }
    100% { filter: brightness(1); }
}

@keyframes subtle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.01); }
}

.microwave.beeping {
    animation: beep-glow 0.6s ease-in-out;
}

.beep-count {
    animation: subtle-pulse 2s ease-in-out infinite;
}