/* ── Home Page Inline Styles (extracted for performance) ── */

/* Spline 3D Container */
.spline-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    z-index: 2;
    pointer-events: none;
}

.spline-container spline-viewer {
    width: 100%;
    height: 100%;
    pointer-events: auto;
}

.hero-right.spline-active .character-container {
    display: none;
}

.hero-right .character-container {
    transition: opacity 0.5s ease;
}

.spline-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold, #DAA520);
    font-size: 1rem;
    text-align: center;
}

.spline-loading i {
    font-size: 2rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .spline-container {
        position: relative;
        width: 100%;
        height: 300px;
    }
}

.hero-section.with-spline {
    position: relative;
}

.hero-section.with-spline .hero-left {
    z-index: 5;
}

/* Floating Gold Particles */
.particles-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle-gold {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #ffd700 0%, transparent 70%);
    border-radius: 50%;
    animation: floatParticle 10s linear infinite;
    opacity: 0.6;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* CTA Buttons */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta.primary {
    background: linear-gradient(135deg, #DAA520, #B8860B);
    color: #000;
    border: none;
    box-shadow: 0 4px 20px rgba(218, 165, 32, 0.4);
}

.btn-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(218, 165, 32, 0.6);
}

.btn-cta.secondary {
    background: transparent;
    color: #DAA520;
    border: 2px solid rgba(218, 165, 32, 0.5);
}

.btn-cta.secondary:hover {
    background: rgba(218, 165, 32, 0.1);
    border-color: #DAA520;
    transform: translateY(-3px);
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover::before {
    left: 100%;
}
