@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;700;900&display=swap');

:root {
    --primary: #ff0055;
    --bg-dark: #000000;
    --glass: rgba(255, 255, 255, 0.08);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: white;
    overflow-x: hidden;
}

/* --- CREATOR PAGE STYLES --- */
.creator-body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at top right, #2a0845, #000000);
}

.creator-box {
    width: 90%;
    max-width: 450px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.creator-box h1 {
    font-size: 2rem;
    background: linear-gradient(to right, #ff00cc, #3333ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

input, textarea, select {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

input:focus, textarea:focus {
    border-color: #ff00cc;
    background: rgba(0,0,0,0.5);
}

/* Custom File Input */
input[type="file"] {
    padding: 10px;
    background: rgba(255,255,255,0.05);
}

button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, #ff00cc, #3333ff);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255, 0, 204, 0.4);
}

/* --- VIEWER (WRAPPED STYLE) STYLES --- */
.viewer-body {
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    box-sizing: border-box;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* Typography for Slides */
.big-text {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.highlight {
    color: #ff00cc;
    text-shadow: 0 0 20px rgba(255,0,204,0.5);
}

.photo-frame {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid white;
    transform: rotate(-5deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.message-box {
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 600px;
    font-weight: 300;
}

/* Start Button Overlay */
#start-overlay {
    z-index: 100;
    background: black;
}