/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fredoka', cursive;
    overflow-x: hidden;
    background: linear-gradient(135deg, #6b46c1 0%, #3b82f6 50%, #4338ca 100%);
    min-height: 100vh;
    position: relative;
}

/* Container de partículas */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #fbbf24, #ec4899);
    opacity: 0.2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Gradiente overlay */
.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

/* Container principal */
.main-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

/* Ícones flutuantes */
.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.6;
    animation: bounce 2s ease-in-out infinite;
    user-select: none;
}

.icon-gamepad {
    top: 10%;
    left: 8%;
    animation-delay: 0s;
}

.icon-star {
    top: 20%;
    right: 12%;
    animation-delay: 0.5s;
}

.icon-trophy {
    bottom: 25%;
    left: 15%;
    animation-delay: 1s;
}

.icon-rocket {
    bottom: 15%;
    right: 10%;
    animation-delay: 1.5s;
}

.icon-fire {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.icon-gem {
    top: 40%;
    right: 8%;
    animation-delay: 2.5s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Seção do título */
.title-section {
    text-align: center;
    margin-bottom: 3rem;
}

.main-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    background: linear-gradient(45deg, #06b6d4, #8b5cf6, #ec4899);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    margin-bottom: 0.5rem;
}

.sub-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.tagline p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #06b6d4;
    font-weight: 600;
}

.sparkle {
    font-size: 1.5rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Container do botão */
.button-container {
    position: relative;
    margin-bottom: 3rem;
}

.button-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, #06b6d4, #8b5cf6, #ec4899);
    border-radius: 50px;
    filter: blur(20px);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.main-button {
    position: relative;
    z-index: 1;
    padding: 1.5rem 3rem;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    font-family: 'Fredoka', cursive;
    background: linear-gradient(45deg, #f97316, #dc2626, #ec4899);
    color: white;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.main-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5);
    background: linear-gradient(45deg, #fb923c, #ef4444, #f472b6);
}

.main-button:active {
    transform: scale(0.95);
}

.button-icon {
    font-size: 1.5rem;
    animation: bounce 1s ease-in-out infinite;
}

.button-text {
    text-align: center;
    line-height: 1.2;
}

/* Texto adicional */
.additional-text {
    text-align: center;
    max-width: 600px;
}

.description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.sub-description {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #06b6d4;
    font-weight: 600;
}

/* Decoração do rodapé */
.footer-decoration {
    position: absolute;
    bottom: 2rem;
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.dot-1 {
    background: #06b6d4;
    animation-delay: 0s;
}

.dot-2 {
    background: #8b5cf6;
    animation-delay: 0.5s;
}

.dot-3 {
    background: #ec4899;
    animation-delay: 1s;
}

/* Responsividade */
@media (max-width: 768px) {
    .main-container {
        padding: 15px;
    }
    
    .floating-icon {
        font-size: 2rem;
    }
    
    .main-button {
        padding: 1.2rem 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .button-text {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
    }
    
    .tagline {
        flex-direction: column;
        gap: 0.2rem;
    }
}

@media (max-width: 480px) {
    .floating-icon {
        font-size: 1.5rem;
    }
    
    .icon-fire,
    .icon-gem {
        display: none;
    }
    
    .main-button {
        padding: 1rem 1.5rem;
    }
}

/* Animações adicionais */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-section {
    animation: fadeInUp 1s ease-out;
}

.button-container {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.additional-text {
    animation: fadeInUp 1s ease-out 0.6s both;
}

