/* --- ESTILO ULTRA PREMIUM MELLANY NAILS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

#app-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* LOGO COM EFEITO DE JOIA */
.logo {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #fff;
    font-weight: 300;
    text-align: center;
}

.logo span { 
    background: linear-gradient(135deg, #d4af37 0%, #fcf6ba 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
    font-weight: 900;
}

/* CARD GLASSMORPHISM */
.glass-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(212, 175, 55, 0.05);
    padding: 35px;
    border-radius: 30px;
    width: 100%;
    max-width: 480px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* CONTAINER DA ROLETA */
.wheel-container {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 10px auto 25px auto;
    border: 8px solid #d4af37;
    border-radius: 50%;
    padding: 2px;
    background: #000;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2), inset 0 0 15px rgba(0,0,0,0.8);
}

#wheel { 
    width: 100%; 
    height: auto; 
    border-radius: 50%;
    filter: contrast(1.1) brightness(1.1);
}

.pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fcf6ba, #d4af37);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    z-index: 10;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6));
}

/* BOTÕES DE ALTA COSTURA */
.btn-pix, .btn-social, .btn-whatsapp, .btn-copy {
    width: 100%;
    max-width: 360px;
    padding: 18px;
    margin-top: 15px;
    border: none;
    border-radius: 15px;
    font-family: 'Montserrat';
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff;
    text-decoration: none;
    display: block;
    letter-spacing: 1px;
    text-align: center;
}

.btn-pix { 
    background: linear-gradient(135deg, #d4af37 0%, #fcf6ba 50%, #b8860b 100%); 
    color: #1a1a1a; 
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    border-bottom: 4px solid #8a6d1d;
}

/* BOTÃO WHATSAPP - ESMERALDA PREMIUM COM REFLEXO */
.btn-whatsapp { 
    background: linear-gradient(135deg, #075e54 0%, #128c7e 50%, #075e54 100%); 
    border-bottom: 4px solid #043d37;
    box-shadow: 0 10px 20px rgba(7, 94, 84, 0.3), inset 0 1px 1px rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* BOTÃO COPIAR PIX - DESIGN LUXO */
.btn-copy {
    background: #111;
    color: #d4af37;
    border: 1px solid #d4af37;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    font-size: 0.85rem;
}

/* BOTÕES SOCIAIS */
.insta { 
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045); 
    border-bottom: 4px solid #801616 !important;
}

.tiktok { 
    background: linear-gradient(45deg, #000000, #25F4EE, #FE2C55); 
    border: none !important;
    border-bottom: 4px solid #1a1a1a !important;
}

/* TEXTO DE RESULTADO COM ANIMAÇÃO METÁLICA */
#result-text {
    margin-top: 20px;
    font-weight: 900;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #d4af37 20%, #fcf6ba 40%, #fcf6ba 60%, #d4af37 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 3s linear infinite;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

@keyframes shineText {
    to { background-position: 200% center; }
}

/* INPUTS */
input {
    width: 100%;
    max-width: 360px;
    padding: 15px;
    margin: 12px 0;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #fff;
    border-radius: 12px;
    font-family: 'Montserrat';
    text-align: center;
    outline: none;
    transition: 0.3s;
}

.card-pagamento {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    width: 100%;
}

.qr-container {
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    display: inline-block;
    margin: 10px 0 20px 0;
    border: 4px solid #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}