body {
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #232425;
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

.container {
    padding: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.avatar {
    width: 180px;
    border-radius: 50%;
    margin: 40px auto;
    display: block;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-icons img {
    width: 35px;
    background: white;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
}

h1 {
    font-size: 26px;
    font-weight: 600;
    margin-top: 20px;
}

.description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: 10px auto;
}

.subtitle {
    font-size: 16px;
    font-style: italic;
    margin-top: 40px;
}

a {
    color: #7A82FF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.journey-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #7A82FF;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #7A82FF;
    border-radius: 30px;
    margin: 40px auto;
    width: fit-content;
}

.back-button {
    display: block;
    margin: 30px auto;
    color: #7A82FF;
    text-decoration: none;
    font-size: 16px;
}

.journey-content {
    text-align: left;
    max-width: 800px;
    margin: 200px auto 50px;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 100;
}

.journey-content p {
    text-indent: 25px;
    margin-bottom: 20px;
}

.first-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.journey-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 150vh;
    padding-top: 120px;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #2C2F33;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 320px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-in-out;
}
}

.popup button {
    margin-top: 10px;
    padding: 8px 16px;
    background: #7A82FF;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.popup button:hover {
    background: #5a62e2;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
