:root {
    --primary-bg: #0f172a;
    --card-bg: #1e293b;
    --accent-gold: #c5a059;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.subtitle {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 40px;
}

.card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.quote-container {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.decoration {
    color: var(--accent-gold);
    opacity: 0.3;
    font-size: 2rem;
    margin-bottom: 15px;
}

#texto-ofensa {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 300;
}

.actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-bg);
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: #d4b477;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 15px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(197, 160, 89, 0.1);
}

.share-section {
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding-top: 20px;
}

.share-section span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.share-icon {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.share-icon:hover {
    color: var(--accent-gold);
    transform: scale(1.2);
}

footer {
    margin-top: 40px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsividade */
@media (max-width: 480px) {
    header h1 { font-size: 2.2rem; }
    .card { padding: 25px; }
    .actions { flex-direction: column; }
    .btn-primary { width: 100%; }
}