.surprise-body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: var(--obsidian);
    height: 100vh;
}

/* Add background image styling */
.surprise-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/attached_assets/ibneeet2_1950s_photo_of_a_bernese_mountain_dog_female_lawyer_in_896ebe85-6f6a-488a-b087-5d46e75265b3.png');
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    opacity: 0.15;
    filter: grayscale(30%) contrast(120%);
    z-index: -1;
    transform: translateZ(0);
    will-change: transform;
}

.surprise-container {
    width: 100vw;
    height: 100vh;
    position: relative;
}

.page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background: rgba(26, 27, 30, 0.7);
    z-index: 1;
}

.page.active {
    opacity: 1;
    z-index: 2;
}

.content {
    text-align: center;
    padding: 2rem;
}

.surprise-text {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.active .surprise-text {
    opacity: 1;
    transform: translateY(0);
}

.surprise-button {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    background: var(--gold-metallic);
    border: none;
    border-radius: 12px;
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease-out;
}

.active .surprise-button {
    opacity: 1;
    transform: scale(1);
}

.surprise-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--gold-subtle);
}

@media (max-width: 768px) {
    .surprise-text {
        font-size: 2rem;
    }
}

.page-progress {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: var(--gold-metallic);
    transform: scale(1.2);
}