/* Estilo base (claro) */
body {
 background-color: #1b5e20;
 background-image: 
    radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
 background-blend-mode: overlay;
 background-attachment: fixed;
 color: #f0f0f0;
 font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
 transition: background-color 0.3s, color 0.3s;
 min-height: 100vh;
 text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
 font-size: 1.1rem;
 min-width: 100%; 
 display: flex;
 flex-direction: column;
 justify-content: center;
 justify-items: center;
 align-items: center;
}

/* Container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-items: center;
    justify-content: center;
    box-shadow: inset 0 0 150px rgba(0,0,0,0.5);
    border-radius: 50px;
    max-height: 100%;
    gap: 60px;
    padding: 50px;
}

/* Título/logo */

.blackjack-logo {
    max-width: 350px;
    border: 3px solid #ffeb3b;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
}

.blackjack-logo:hover {
    transform: scale(1.05);
}

.api-title {
     color: #ffeb3b;
}

.api-title a h1{
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin: 0;
}

.api-title a p {
    margin: 0;
    font-size: 1.2rem;
}

.api-title:hover {
    color:#f0f0f0;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.9);
}

/*Conteúdo principal*/
.conteudo{
    display: flex;
    align-items:center;
    justify-items: center;
    justify-content: space-around;
    max-width: 100%;
    max-height: 100%;
    flex-wrap: wrap;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    backdrop-filter: blur(10px);
    border: 4px solid #ffeb3b;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(255, 235, 59, 0.05);
}
