:root {
    --wizard-blue: #00d2ff;
    --wizard-purple: #9d50bb;
    --glass: rgba(255, 255, 255, 0.07);
    --gold: #ffd700;
}

body.wizard-theme {
    margin: 0;
    background: radial-gradient(circle at center, #1a1a2e 0%, #0f0f1a 100%);
    color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

.stars {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.3; pointer-events: none; z-index: 0;
}

#presentation-container {
    display: flex;
    width: 900vw;
    height: 100vh;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.slide {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.glass-content {
    width: 90%;
    max-width: 1100px;
    background: var(--glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    padding: 60px;
    padding-bottom: 100px; /* Space for deep-dive link */
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

.magic-badge {
    background: linear-gradient(90deg, var(--wizard-blue), var(--wizard-purple));
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h1 {
    font-size: 4.8rem;
    margin: 0 0 25px 0;
    line-height: 1.1;
}

h1 span {
    color: var(--wizard-blue);
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

p {
    font-size: 2.2rem;
    line-height: 1.4;
    color: #efefef;
    margin: 0;
}

.split-view {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.visual-icon {
    font-size: 9rem;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.pricing-card {
    text-align: center;
    border: 2px solid var(--wizard-blue);
}

.big-price {
    font-size: 8rem;
    font-weight: 900;
    margin: 15px 0;
    color: var(--gold);
}

.big-price span { font-size: 2rem; color: #fff; opacity: 0.6; }

.wizard-list {
    list-style: none; padding: 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    text-align: left; margin-top: 30px;
}

.wizard-list li {
    font-size: 1.6rem;
    padding-left: 45px;
    position: relative;
}

.wizard-list li::before {
    content: '✦'; position: absolute; left: 0; color: var(--wizard-blue); font-size: 2rem;
}

.deep-dive-btn {
    position: absolute; bottom: 30px; right: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--wizard-blue);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.3s;
}

.deep-dive-btn:hover { background: rgba(255, 255, 255, 0.2); }

.nav-bar {
    position: fixed; bottom: 40px; left: 5%; width: 90%;
    display: flex; align-items: center; justify-content: space-between;
    z-index: 100;
}

.nav-button {
    background: white; border: none; width: 65px; height: 65px;
    border-radius: 50%; font-size: 1.5rem; font-weight: bold;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    cursor: pointer;
}

#progress-bar {
    flex-grow: 1; height: 10px; background: rgba(255,255,255,0.1);
    margin: 0 30px; border-radius: 10px; overflow: hidden;
}

#progress-fill {
    width: 11.11%; height: 100%;
    background: linear-gradient(90deg, var(--wizard-purple), var(--wizard-blue));
    transition: width 0.4s ease;
}
