/* CastingOS shared site styles. Keep page-specific utility classes in HTML, and shared brand/runtime styles here. */
body {
            background-color: #07040d;
            color: #f3f4f6;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }

        /* Glassmorphism Styles */
        .glass-card {
            background: linear-gradient(135deg, rgba(22, 16, 43, 0.7) 0%, rgba(15, 10, 28, 0.85) 100%);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(139, 92, 246, 0.18);
        }

        .glass-card:hover {
            border-color: rgba(168, 85, 247, 0.45);
            box-shadow: 0 10px 30px -10px rgba(124, 58, 237, 0.25);
        }

        .glass-nav {
            background: rgba(7, 4, 13, 0.88);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(139, 92, 246, 0.15);
        }

        /* Ambient Glow backgrounds */
        .bg-glow-purple {
            background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, rgba(7, 4, 13, 0) 70%);
        }

        .bg-glow-cyan {
            background: radial-gradient(circle, rgba(0, 242, 254, 0.12) 0%, rgba(7, 4, 13, 0) 70%);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #07040d;
        }
        ::-webkit-scrollbar-thumb {
            background: #2e1065;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #6d28d9;
        }

        input[type=range] {
            accent-color: #a855f7;
        }

.language-select {
    min-width: 96px;
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.78);
    color: #e5e7eb;
    padding: 0.45rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 700;
    outline: none;
}

.language-select:focus {
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.22);
}

