<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
    <meta charset="<?php bloginfo( 'charset' ); ?>">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <?php wp_head(); ?>
    <style>
        /*
        Theme Name: Grimório On-line
        Theme URI: https://grimorionline.com.br/
        Author: Mister FILD
        Author URI: https://grimorionline.com.br/
        Description: Grimório On-line: Ocultismo, magia, bruxaria, rituais...
        Version: 3.1
        */
        /* Garante fundo preto imediato */
        html, body {
            background-color: #0a0a0c;
            color: #e0e0e0;
            margin: 0;
            padding: 0;
        }
        /* CSS das cartas com contorno dourado + brilho */
        .tarot-card { perspective: 1000px; height: 320px; display: block; width: 100%; max-width: 320px; }
        .tarot-inner { position: relative; width: 100%; height: 100%; transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1); transform-style: preserve-3d; }
        .tarot-card:hover .tarot-inner { transform: rotateY(180deg); }
        .tarot-front, .tarot-back { position: absolute; inset: 0; backface-visibility: hidden; border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
        .tarot-front {
            background: linear-gradient(160deg, #121216, #0a0a0c);
            border: 1px solid #c5a059;
            box-shadow: 0 0 25px rgba(197,160,89,0.25), inset 0 0 20px rgba(197,160,89,0.08);
        }
        .tarot-front::before { content: ''; position: absolute; inset: 8px; border: 1px solid rgba(197,160,89,0.35); border-radius: 8px; pointer-events: none; box-shadow: 0 0 12px rgba(197,160,89,0.15); }
        .tarot-back {
            background: repeating-linear-gradient(45deg, #0a0a0c, #0a0a0c 10px, #0d0d10 10px, #0d0d10 20px);
            border: 1px solid #c5a059;
            box-shadow: 0 0 25px rgba(197,160,89,0.25);
            transform: rotateY(180deg);
        }
        .tarot-symbol {
            font-size: 3rem;
            color: #c5a059;
            text-shadow: 0 0 15px rgba(197,160,89,0.7), 0 0 30px rgba(197,160,89,0.4);
        }
        .tarot-title { font-family: 'Cinzel', serif; color: #fff; text-transform: uppercase; letter-spacing: 0.15em; font-size: 1rem; text-align: center; padding: 0 1rem; }
        .tarot-back-text { font-family: 'Cinzel', serif; color: #c5a059; letter-spacing: 0.3em; }
    </style>
</head>
<body <?php body_class(); ?>>