:root {
    --bg: #121212;
    --text: #ffffff;
    --theme: #1db954;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow: hidden;
    /* Prevent scrolling, we use tap navigation */
    height: 100vh;
    width: 100vw;
}

.progress-container {
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 100;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width 0.1s linear;
}

main {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: var(--theme);
    /* Dynamic background per slide */
    color: var(--text, white);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    text-align: center;
}

.slide.active {
    opacity: 1;
    pointer-events: all;
}

h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

h2 {
    font-size: 4rem;
    /* Big impact headers */
    font-weight: 900;
    margin-bottom: 40px;
}

p {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Animations included via GSAP, but basic CSS for static states */

/* Podium */
.podium {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    height: 400px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.podium-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.bar {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 10px 10px 0 0;
}

.podium-item.winner .bar {
    background: #fff;
    color: var(--theme);
}

.rank {
    font-size: 2rem;
    margin-bottom: 10px;
}

.name {
    margin-top: 10px;
    font-weight: bold;
}

/* Card */
.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    margin: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
}

.highlight-box {
    background: #fff;
    color: var(--theme);
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    margin-top: 20px;
    font-size: 1.5rem;
}

/* List */
.list {
    list-style: none;
    text-align: left;
    width: 100%;
    max-width: 600px;
}

.list li {
    font-size: 2rem;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.badge {
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1.5rem;
}

/* Leaderboard */
.leaderboard {
    width: 100%;
    max-width: 500px;
    text-align: left;
    font-size: 2rem;
}

.leaderboard li {
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
}

/* Big Stats */
.big-stats {
    display: grid;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat .number {
    font-size: 6rem;
    font-weight: 900;
}

.stat .label {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Uptime */
.uptime-circle {
    width: 300px;
    height: 300px;
    border: 20px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    font-weight: 900;
    margin: 0 auto 40px;
}

/* Glitch */
.glitch {
    font-size: 4rem;
    text-transform: uppercase;
    animation: glitch 1s infinite;
}

@keyframes glitch {
    0% {
        transform: translate(0)
    }

    20% {
        transform: translate(-2px, 2px)
    }

    40% {
        transform: translate(-2px, -2px)
    }

    60% {
        transform: translate(2px, 2px)
    }

    80% {
        transform: translate(2px, -2px)
    }

    100% {
        transform: translate(0)
    }
}

/* Feature List - Consistent Layout */
.shipped-tag {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    opacity: 0.8;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    text-align: left;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.2s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

.feature-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin: 0;
}

.award-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.award {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    flex: 1;
}

.award .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .podium {
        height: 300px;
    }

    .stat .number {
        font-size: 4rem;
    }

    .award-grid {
        flex-direction: column;
    }
}