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

body {
    font-family: 'Segoe UI', sans-serif;
    background: #1e1e2f;
    color: #fff;
    overflow-x: hidden;
}

.section {
    min-height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    opacity: 0;
    transition: all 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.section.active {
    left: 0;
    opacity: 1;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 600px;
}

.btn {
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    font-weight: bold;
    background: #ffd369;
    color: #1e1e2f;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background: #ffbb33;
    transform: translateY(-2px);
}

.social {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.social a {
    color: #ffd369;
    font-size: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social a:hover {
    color: #ffbb33;
}

.social a span {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #ffd369;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social a:hover span {
    opacity: 1;
}

ul.website-list {
    list-style: none;
    width: 100%;
    max-width: 500px;
    padding: 0;
    margin-bottom: 2rem;
}

ul.website-list li {
    background: #2b2b3d;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 10px;
    transition: background 0.3s;
}

ul.website-list li:hover {
    background: #3a3a50;
    cursor: pointer;
}

ul.website-list a {
    text-decoration: none;
    color: #ffd369;
    font-size: 1.1rem;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
    }
}

.slogan {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffd369;
    margin-top: 1.5rem;
    text-align: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.slogan:hover {
    opacity: 1;
}
