:root {
    --bg-dark: #0f172a;
    --text-light: #f8fafc;
    --font-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    background-color: #000;
    color: var(--text-light);
}

.concept-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

#concept-onejob {
    background: radial-gradient(circle at top left, #4f46e5, transparent 50%),
                radial-gradient(circle at bottom right, #db2777, transparent 50%),
                radial-gradient(circle at center, #000000, #0a0a1a);
    background-size: cover;
}

/* Brand Header with Spellcheck Logo */
.brand-header {
    position: absolute;
    top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    user-select: none;
}

.spellcheck-logo {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.misspelled {
    color: #f8fafc;
    /* Red zig-zag spellcheck line SVG background pattern */
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='4'%3E%3Cpath d='M0 3 L 1.5 1 L 3 3 L 4.5 1 L 6 3' stroke='%23ef4444' stroke-width='1.2' fill='none'/%3E%3C/svg%3E") repeat-x bottom;
    background-size: 8px 4px;
    padding-bottom: 6px;
}

.correct {
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.crooked-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(-12deg) translateX(30px);
}

.launch-btn {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    color: #0f172a;
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 800;
    padding: 20px 48px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 
                inset 0 2px 0 rgba(255,255,255,0.8),
                inset 0 -4px 0 rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.launch-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 
                inset 0 2px 0 rgba(255,255,255,0.8),
                inset 0 -4px 0 rgba(0,0,0,0.1);
}

.launch-btn:active {
    transform: scale(0.95);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3), 
                inset 0 2px 0 rgba(255,255,255,0.8),
                inset 0 -2px 0 rgba(0,0,0,0.1);
}

/* Disorganized Toast Message */
.message-toast {
    margin-top: 56px; /* Lowered from 32px */
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    max-width: 350px;
    opacity: 0;
    pointer-events: none;
    
    /* Rotate relative to the -12deg container to appear tilted (-20deg relative to viewport) */
    transform: rotate(-8deg) translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.message-toast.show {
    opacity: 1;
    transform: rotate(-8deg) translateY(0);
}
