* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    text-align: center;
    background-color: #1F1F1F;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

header {
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    color: #D68858;
}

.skin-preview {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.skin-preview img {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.skin-preview img:hover {
    transform: scale(1.1);
}

.info {
    margin-top: 20px;
    font-size: 1.2rem;
}

button {
    padding: 10px 20px;
    margin: 10px;
    background-color: #D68858;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #C15817;
}

footer {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #BBBBBB;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .info {
        font-size: 1rem;
    }

    footer {
        font-size: 0.7rem;
    }
}
