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

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 95vw;
    margin: 0 auto;
    padding: 20px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    animation: fadeInPage 0.8s ease;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 4em;
    text-shadow: 0 0 10px rgba(185, 156, 217, 0.4);
    animation: slideDownTitle 0.7s ease;
    transition: transform 0.3s ease;
}

header h1:hover {
    transform: scale(1.05);
}

@keyframes slideDownTitle {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 150px;
}

.page-section {
    width: 100%;
    padding: 10px 40px;
    opacity: 0;
}

.page-section.left {
    text-align: left;
}

.page-section.right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 40px;
}

.page-section.right h2 {
    margin-top: 40px;
}

.page-section[data-page="3"] h2 {
    margin-top: 60px;
}

.page-section.left .images {
    float: right;
    margin-left: 30px;
}

.page-section.right .images {
    float: left;
    margin-right: 30px;
}

.page-section > * {
    max-width: 600px;
}

.page-section .images {
    max-width: none;
}

.page-section.visible {
    animation: fadeInContent 0.6s ease forwards;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #b19cd9;
}

.page-section p {
    font-size: 1.1em;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.8;
    animation: slideInText 0.6s ease 0.3s forwards;
}

@keyframes slideInText {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bullets {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.bullets li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05em;
    color: #dddddd;
    animation: slideInBullet 0.5s ease backwards;
    transition: all 0.3s ease;
}

.bullets li:nth-child(1) { animation-delay: 0.1s; }
.bullets li:nth-child(2) { animation-delay: 0.2s; }
.bullets li:nth-child(3) { animation-delay: 0.3s; }
.bullets li:nth-child(4) { animation-delay: 0.4s; }
.bullets li:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInBullet {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bullets li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #b19cd9;
    font-weight: bold;
    transition: all 0.3s ease;
}

.bullets li:hover {
    padding-left: 40px;
}

.bullets li:hover:before {
    transform: translateX(10px);
}

.images {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-container img {
    max-width: 300px;
    height: auto;
    border-radius: 5px;
    border: 2px solid #555;
    transition: transform 0.3s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-caption {
    margin-top: 8px;
    font-size: 0.9em;
    color: #888;
}

.image-container img:hover {
    transform: scale(1.15);
}
