/*
Theme Name: Ritual Alchemy Lab
Description: Tema para o gerador de banhos rituais
Version: 1.0
Author: Seu Nome
*/

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #2c1810;
    color: #f5f5dc;
    padding: 1rem 0;
}

.site-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

/* Footer */
.site-footer {
    background: #2c1810;
    color: #f5f5dc;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Aplicação React */
#ritual-app {
    min-height: 100vh;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
}

/* Estilos do AdSense */
.adsense-container {
    margin: 20px 0;
    text-align: center;
}

/* Responsivo */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
}