:root {
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --blue-tekhelet: #1e1b4b;
    --glass-border: rgba(212, 175, 55, 0.3);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #050505;
}

.font-cinzel {
    font-family: 'Cinzel', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Glassmorphism */
.glass-nav {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.glass-panel {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

/* Text Effects */
.text-gold {
    color: var(--gold);
}

.glow-text {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--gold-light);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 10px auto 0;
    box-shadow: 0 0 10px var(--gold);
}

/* Buttons */
.btn-futuristic {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 1rem 2.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
}

.btn-futuristic:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.nav-link {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--gold);
}

/* Cards */
.feature-card {
    background: linear-gradient(145deg, rgba(30,41,59,0.4) 0%, rgba(15,23,42,0.6) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s, border-color 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.selection-card {
    height: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
    padding: 20px;
}

.selection-card .overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, rgba(0,0,0,0.8) 100%);
    transition: all 0.5s;
}

.selection-card:hover .overlay {
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2) 0%, rgba(0,0,0,0.6) 100%);
}

.filter-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.cmd-card {
    background: rgba(15, 23, 42, 0.8);
    border-left: 4px solid var(--gold);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s;
    position: relative;
}

.cmd-card:hover {
    background: rgba(25, 35, 55, 0.9);
    box-shadow: -5px 0 15px rgba(212, 175, 55, 0.1);
}

.blog-card {
    background: #0f172a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in {
    animation: fadeInUp 0.5s ease-out;
}

/* Star Field background trick */
.star-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 3px),
        radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 2px),
        radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    opacity: 0.3;
}