/* Custom SVG icons */
.custom-icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
    display: inline-block;
}

.kick-icon {
    width: 1.5rem;
    height: 1.5rem;
    filter: brightness(0) saturate(100%) invert(53%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0.85) contrast(0.9);
    transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Kick icon hover effect to match other icons */
.social-media a[data-social="kick"]:hover .kick-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus management for keyboard navigation */
body.keyboard-navigation *:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
    border-radius: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    body {
        background: #000000;
    }
    
    .brand-title {
        color: #ffffff;
        text-shadow: none;
    }
    
    .social-media a {
        border: 2px solid #ffffff;
        color: #ffffff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .fade-element {
        opacity: 1;
        transform: none;
    }
}

/* Color contrast improvements */
:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --accent-color: #ffffff;
    --border-color: #333333;
    --hover-bg: rgba(255, 255, 255, 0.05);
    --focus-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #0b0b0b 20%, #0d0d0d 40%, #0f0f0f 60%, #121212 80%, var(--secondary-bg) 100%);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
}

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    position: relative;
}

.content {
    z-index: 2;
}

.fade-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.fade-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.logo-section {
    margin-bottom: 3rem;
}

.brand-title {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 700;
    letter-spacing: 0.3em;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffffff, #cccccc, #ffffff);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.brand-subtitle {
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #888888;
    margin-bottom: 2rem;
}

.construction-message {
    margin-bottom: 3rem;
}

.construction-message h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: #ffffff;
}

.construction-message p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    line-height: 1.6;
    color: #bbbbbb;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.loading-bar {
    width: 300px;
    height: 2px;
    background-color: #333333;
    margin: 0 auto 2rem;
    border-radius: 1px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    width: 0%;
    animation: loading 3s ease-in-out infinite;
    border-radius: 1px;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-media a {
    color: #666666;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.8rem;
    border-radius: 12px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.social-media a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.social-media a:hover {
    color: #ffffff;
    transform: translateY(-2px);
    border-color: #444444;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.05);
}

.social-media a:hover::before {
    left: 100%;
}

footer {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: #666666;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes loading {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

/* Background effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}