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

body {
    background-color: #f5f5f5;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    transition: background-color 0.1s ease;
}

.container {
    text-align: center;
    transition: opacity 0.5s ease;
    width: 100%;
}

.hidden {
    display: none !important;
    opacity: 0;
}

/* SHEIN Styles */
#serious-container {
    width: 92%;
    max-width: 450px;
}

.shein-card {
    background: white;
    padding: 40px;
    border-radius: 0px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-top: 6px solid #222;
}

.shein-logo {
    width: 180px;
    margin-bottom: 25px;
}

.promo-title {
    color: #000;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.promo-desc {
    color: #333;
    margin-bottom: 25px;
    line-height: 1.5;
    font-size: 1.1rem;
}

#fake-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

#fake-form input {
    padding: 12px 15px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

#fake-form input:focus {
    border-color: #222;
}

.coupon-box {
    background: #f8f8f8;
    border: 2px dashed #ccc;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #999;
    letter-spacing: 2px;
}

#claim-btn {
    background-color: #222;
    color: white;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#claim-btn:hover {
    background-color: #444;
}

.terms {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #888;
}

/* Troll Styles - ULTIMATE MODE */
body.troll-mode {
    animation: epilepsy-flash 0.1s infinite alternate;
}

@keyframes epilepsy-flash {
    0% { background-color: #ff0000; }
    20% { background-color: #00ff00; }
    40% { background-color: #0000ff; }
    60% { background-color: #ffff00; }
    80% { background-color: #ff00ff; }
    100% { background-color: #00ffff; }
}

#troll-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10;
}

.troll-text {
    position: absolute;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: bold;
    color: white;
    text-shadow: 4px 4px 0 #000, -4px -4px 0 #000, 4px -4px 0 #000, -4px 4px 0 #000;
    animation: float-around 2s infinite linear, color-cycle 0.5s infinite;
    z-index: 20;
    text-align: center;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 10px;
}

@keyframes color-cycle {
    0% { color: #ff0; }
    50% { color: #f0f; }
    100% { color: #0ff; }
}

@keyframes float-around {
    0% { transform: scale(1) rotate(-10deg); }
    50% { transform: scale(1.5) rotate(10deg); }
    100% { transform: scale(1) rotate(-10deg); }
}

.floating-sister {
    position: absolute;
    width: 250px;
    height: auto;
    border-radius: 50%;
    border: 15px solid lime;
    box-shadow: 0 0 50px magenta;
    animation: spin 4s infinite linear;
}

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