/* Shared styles for ArcaneRuneHub */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Raleway:wght@300;400;600&display=swap');

:root {
    --bg-deep: #0f0c29;
    --bg-gradient: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
    --accent-gold: #f9d423;
    --accent-purple: #a18cd1;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--bg-gradient);
    color: #e0e0e0;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
}

h1, h2, h3, .mystical-font {
    font-family: 'Cinzel', serif;
}

.rune-card, .content-panel {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.content-panel:hover {
    border-color: var(--accent-gold);
}

.nav-link {
    position: relative;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f0c29;
}
::-webkit-scrollbar-thumb {
    background: #302b63;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a18cd1;
}

.btn-primary {
    background: var(--accent-gold);
    color: #0f0c29;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(249, 212, 35, 0.5);
}

/* Questionnaire styles */
.question-box {
    display: none;
}
.question-box.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.option-btn {
    width: 100%;
    text-align: left;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.option-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-purple);
}

