:root {
    --primary-color: #FF6B6B;
    --secondary-color: #f8f8f8;
    --accent-color: #FF3E3E;
    --text-color: #333;
    --pokemon-yellow: #FFCB05;
    --pokemon-blue: #3D7DCA;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Arial', sans-serif;
    background: white;
    color: var(--text-color);
}

.container {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.pokeball {
    width: 100px;
    height: 100px;
    background: linear-gradient(to bottom, var(--accent-color) 0%, var(--accent-color) 50%, white 50%, white 100%);
    border-radius: 50%;
    position: relative;
    margin: 0 auto 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.pokeball::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: white;
    border: 8px solid #333;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.pokeball::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background: #333;
    top: 50%;
    transform: translateY(-50%);
}

h1 {
    font-family: 'Pokemon Solid', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #FF0000;
    letter-spacing: 2px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.download-btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 2rem;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 62, 62, 0.4);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.discord {
    background-color: #7289DA;
}

.whatsapp {
    background-color: #25D366;
}

.facebook {
    background-color: #1877F2;
}

.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .social-links {
        flex-wrap: wrap;
    }
}