:root {
    /* Primary brand colors */
    --primary-accent: #CD0C58;
    --primary-accent-glow: rgba(205, 12, 88, 0.4);
    
    /* Dark theme for an elegant, modern, premium data aesthetic */
    --bg-color: #0b0f19;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.65);
    
    /* Glassmorphism styling variables */
    --glass-bg: rgba(15, 23, 42, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

/* Hide scrollbar during initial animations */
body.no-scroll {
    overflow: hidden !important;
}

/* Custom Scrollbar for Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

/* Abstract Data Glow Background */
.glow-bg {
    position: fixed;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, var(--primary-accent-glow) 0%, rgba(11,15,25,0) 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    animation: pulseGlow 8s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Glassmorphism Container Effect */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

/* Logo Setup */
.brand-logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.15));
    transition: transform 0.5s ease, filter 0.5s ease;
}
.brand-logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 20px var(--primary-accent-glow));
}

/* Typography styles */
.text-light-opacity {
    color: var(--text-muted);
}

/* Interactive link transitions */
.custom-link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-link:hover {
    color: var(--primary-accent);
}

/* Contact Details Cards */
.info-card {
    border: 1px solid transparent;
}
.info-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--glass-border);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(205, 12, 88, 0.1);
    border: 1px solid rgba(205, 12, 88, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover .icon-wrapper {
    background: var(--primary-accent);
    border-color: var(--primary-accent);
    transform: scale(1.1);
}

.info-card:hover .contact-icon {
    color: white;
}

.contact-icon {
    font-size: 1.25rem;
    color: var(--primary-accent);
    transition: color 0.3s ease;
}

/* Social Button styling */
.social-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.75rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
}

.social-btn:hover {
    background: var(--primary-accent);
    color: white;
    border-color: var(--primary-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(205, 12, 88, 0.4);
}

/* Smooth load-in animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Language Switcher Styling */
.lang-switcher button {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
}

.lang-switcher button:hover {
    color: var(--text-main);
}

.lang-switcher button.active {
    color: var(--primary-accent);
}
