@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&display=swap');

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0d0d0d;
    color: #f0f0f0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.main-title-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-in, transform 1s ease-in;
}

.main-title-section.show {
    opacity: 1;
    transform: translateY(0);
}

.main-title-section h1 {
    font-family: 'Cinzel', serif;
    font-size: 10vw;
    font-weight: 700;
    margin: 0;
    color: #e0e0e0;
    letter-spacing: 15px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.main-title-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 3vw;
    font-weight: 400;
    margin: 0;
    color: #a0a0a0;
    letter-spacing: 5px;
}

/* Изменяем класс, чтобы он начинался после первого экрана */
.content-section {
    min-height: 100vh;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    /* Добавляем начальное состояние для анимации */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-in, transform 1s ease-in;
}

/* Новый класс для анимации */
.content-section.show-content {
    opacity: 1;
    transform: translateY(0);
}

#pudge-model-container {
    width: 100%;
    max-width: 1300px; /* Увеличиваем максимальную ширину */
    height: 1000px;     /* Увеличиваем высоту */
    background-color: transparent;
    margin: 80px 0;
}

.pudge-description {
    max-width: 600px;
    margin-bottom: 40px;
    font-size: 1.2em;
    font-style: italic;
    color: #c0c0c0;
    line-height: 1.6;
}

.attributes {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.attribute {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100px;
}

.attribute img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}

.attribute p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #f0f0f0;
}

.attribute .value {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 5px;
}

.abilities-section {
    margin-top: 60px;
    width: 100%;
    max-width: 900px;
}

.abilities-section h3 {
    font-family: 'Cinzel', serif;
    font-size: 2em;
    margin-bottom: 20px;
}

.aspects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.aspect {
    width: 300px;
    padding: 15px;
    border-radius: 10px;
    background-color: #1a1a1a;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.aspect h4 {
    margin-top: 0;
    font-size: 1.2em;
}

.aspect p {
    font-size: 0.9em;
    line-height: 1.4;
    color: #c0c0c0;
}

.ability-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.ability {
    width: 200px;
    padding: 15px;
    border-radius: 10px;
    background-color: #1a1a1a;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.ability img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}

.ability h4 {
    margin-top: 10px;
    font-size: 1.1em;
}

.ability p {
    font-size: 0.9em;
    line-height: 1.4;
    color: #c0c0c0;
}