@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary: #7e3af2;
    --primary-dark: #6c2bd9;
    --secondary: #f472b6;
    --secondary-dark: #db2777;
}

body {
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
}

.dice-roll {
    transition: all 0.3s ease;
}

.dice-roll:hover {
    transform: scale(1.05);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-block {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-left: 4px solid var(--primary);
}

.condition-card {
    transition: all 0.3s ease;
}

.condition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.initiative-tracker {
    background: rgba(30, 41, 59, 0.7);
}

.dice-history::-webkit-scrollbar {
    width: 8px;
}

.dice-history::-webkit-scrollbar-track {
    background: #1f2937;
}

.dice-history::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}