* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    overflow: hidden;
    background: #000;
}

.container {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

.slide {
    height: 100vh;
    width: 100vw;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 60px 40px;
}

.slide:nth-child(1) {
    transform: translateY(0);
}

.slide:nth-child(2) {
    transform: translateY(100vh);
}

.slide:nth-child(3) {
    transform: translateY(200vh);
}

.slide h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease-out 0.3s forwards;
}

.slide h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out 0.5s forwards;
}

.slide p {
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out 0.7s forwards;
}

.slide .bounce {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out 0.7s forwards;
}

.slide.active h1,
.slide.active h2,
.slide.active p,
.slide.active .bounce {
    animation-play-state: running;
}

.portfolio-links {
    display: flex;
    flex-direction: column;
}

.portfolio-link {
    font-size: 1.3rem;
    line-height: 1.6;
}

.portfolio-link a {
    color: #FFF
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navigation {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-dot.active {
    background: white;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.scroll-hint {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.scroll-hint.hidden {
    opacity: 0;
}

.scroll-arrow {
    margin-top: 10px;
    font-size: 1.5rem;
    animation: bounce 2s 3;
    text-align: center;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .slide h1 {
        font-size: 2.5rem;
    }
    
    .slide h2 {
        font-size: 2rem;
    }
    
    .slide p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .navigation {
        right: 20px;
    }
}