/* index.css */
:root {
    --mrbeast-pink: #ff007f;
    --mrbeast-pink-glow: rgba(255, 0, 127, 0.6);
    --mrbeast-cyan: #00d4ff;
    --mrbeast-cyan-glow: rgba(0, 212, 255, 0.5);
    --bg-dark: #0a0b16;
    --text-light: #ffffff;
    --glass-bg: rgba(10, 11, 22, 0.95);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Invisible interaction zone at bottom 25% */
.trigger-zone {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 25vh;
    z-index: 50;
    cursor: pointer;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

/* MrBeast Themed Panel */
.glass-panel {
    background: var(--glass-bg);
    border: 3px solid var(--mrbeast-pink);
    border-radius: 24px;
    padding: 2.5rem;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 0 30px var(--mrbeast-pink-glow), inset 0 0 20px var(--mrbeast-pink-glow);
    color: var(--text-light);
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 40px;
    background: var(--mrbeast-cyan);
    filter: blur(30px);
    opacity: 0.5;
    z-index: -1;
}

.modal-overlay.visible .glass-panel {
    transform: translateY(0) scale(1);
}

.modal-step {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.modal-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

h2 {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 0 0 15px var(--mrbeast-cyan);
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    display: block;
}

p {
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Options Grid */
.options-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.option-btn {
    background: #111;
    border: 2px solid var(--mrbeast-cyan);
    color: var(--text-light);
    padding: 1rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.2s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
    font-family: inherit;
}

.option-btn:hover {
    background: var(--mrbeast-cyan);
    color: #000;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 20px var(--mrbeast-cyan-glow);
}

/* Text Inputs */
.modern-input, .modern-textarea {
    width: 100%;
    background: #111;
    border: 2px solid var(--mrbeast-cyan);
    border-radius: 12px;
    padding: 1rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    outline: none;
    margin-bottom: 2rem;
    transition: all 0.2s ease;
    display: block;
}

.modern-textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.6;
}

.modern-input:focus, .modern-textarea:focus {
    border-color: var(--mrbeast-pink);
    box-shadow: 0 0 15px var(--mrbeast-pink-glow);
}

/* Actions */
.actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    flex: 1;
    padding: 1rem;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 1.15rem;
    font-style: italic;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    outline: none;
    text-transform: uppercase;
    font-family: inherit;
}

.action-btn.primary {
    background: var(--mrbeast-pink);
    color: white;
    box-shadow: 0 0 20px var(--mrbeast-pink-glow), inset 0px -4px 0px rgba(0,0,0,0.2);
    border: 2px solid #fff;
}

.action-btn.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px var(--mrbeast-pink), inset 0px -4px 0px rgba(0,0,0,0.2);
    background: #ff1a8c;
}

.action-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--mrbeast-cyan);
}

.action-btn.secondary:hover {
    background: var(--mrbeast-cyan);
    color: #000;
    box-shadow: 0 0 20px var(--mrbeast-cyan-glow);
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem;
    text-transform: uppercase;
    opacity: 0.7;
}

.close-btn:hover {
    opacity: 1;
    color: var(--mrbeast-pink);
}

.mt-4 {
    margin-top: 1rem;
    width: 100%;
}

.success-icon {
    font-size: 4rem;
    text-shadow: 0 0 20px var(--mrbeast-cyan);
    margin-bottom: 1rem;
}
