* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    background-color: #ffffff;
    background-image: url('images/bg.png');
    background-repeat: repeat;
    color: rgb(101, 29, 50);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.container {
    max-width: 480px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: rgb(101, 29, 50);
    letter-spacing: 0.5px;
}

.tagline {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.characters {
    margin-bottom: 20px;
}

.characters img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    background-color: #f8f8f8;
    border-radius: 16px;
    padding: 8px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.link-btn {
    display: block;
    padding: 16px 24px;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f7 100%);
    color: rgb(101, 29, 50);
    text-decoration: none;
    border: 2.5px solid rgb(101, 29, 50);
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.25s ease;
    box-shadow: 0 4px 0 rgb(101, 29, 50);
    position: relative;
    top: 0;
}

.link-btn:hover {
    background: linear-gradient(135deg, rgb(101, 29, 50) 0%, rgb(140, 50, 75) 100%);
    color: #ffffff;
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgb(70, 20, 35);
}

.link-btn:active {
    transform: translateY(4px);
    box-shadow: none;
}

footer {
    font-size: 0.85rem;
    opacity: 0.7;
}

@media (max-width: 400px) {
    h1 {
        font-size: 1.6rem;
    }
    
    .characters img {
        width: 140px;
        height: 140px;
    }
    
    .link-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}
