/* 
 * STATUSYO - Futuristic Modern Design
 * Theme: Dark, Neon Cyan/Purple Accents, Glassmorphism
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Syncopate:wght@400;700&display=swap');

/* Header Styles (from header.php) */
:root {
    --bg-deep: #050508;
    --neon-cyan: #00f3ff;
    --neon-pink: #bc13fe;
    --text-main: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);
    
    /* Platform Theme Variables (default: YouTube red) */
    --platform-primary: #ff0000;
    --platform-secondary: #ff4444;
    --platform-primary-rgb: 255, 0, 0;
    
    /* Legacy Support */
    --bg-black: #000000;
    --bg-panel: #0a0a0a;
    --neon-red: var(--platform-primary);
    --neon-red-dim: rgba(var(--platform-primary-rgb), 0.5);
    --neon-blue: #00f3ff;
    --neon-green: #0aff0a;
    --neon-purple: #bc13fe;
    --text-white: #ffffff;
    --text-gray: #888888;
    --border-red: 1px solid var(--platform-primary);
    --border-dim: 1px solid #222;
}

/* Platform Theme Overrides */
body[data-platform="tiktok"] {
    --platform-primary: #ff0050;
    --platform-secondary: #ff0080;
    --platform-primary-rgb: 255, 0, 80;
}

body[data-platform="kick"] {
    --platform-primary: #53fc18;
    --platform-secondary: #00ff00;
    --platform-primary-rgb: 83, 252, 24;
}

body[data-platform="twitch"] {
    --platform-primary: #9146ff;
    --platform-secondary: #a970ff;
    --platform-primary-rgb: 145, 70, 255;
}

body {
    background-color: var(--bg-deep) !important;
    color: var(--text-main) !important;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Effects */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.12) 0%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
    animation: pulse 10s infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

/* Typography */
h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
    letter-spacing: -1px;
}

a { text-decoration: none; transition: 0.2s; }

/* --- UTILITIES --- */
.text-red { color: var(--neon-red) !important; text-shadow: 0 0 10px var(--neon-red); }
.text-blue { color: var(--neon-blue) !important; text-shadow: 0 0 10px var(--neon-blue); }
.text-green { color: var(--neon-green) !important; text-shadow: 0 0 10px var(--neon-green); }

.bg-panel { background-color: var(--bg-panel); }

/* --- COMPONENTS --- */

/* 1. Navbar - Solid Black with Red Line */
.navbar-ultimate {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid var(--neon-red);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.2);
    padding: 0.5rem 0;
}

.nav-link {
    font-family: 'Teko', sans-serif;
    font-size: 1.4rem; /* Big Fonts */
    color: var(--text-gray) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white) !important;
    text-shadow: 0 0 10px #fff;
}

/* 2. Cards - SHARP EDGES (No Radius) */
.card-red {
    background: var(--bg-panel);
    border: 1px solid #222;
    border-radius: 0 !important; /* Sharp */
    position: relative;
    transition: 0.3s;
    overflow: hidden;
}

/* Red Neon Hover Effect */
.card-red::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: var(--neon-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.3s;
}

.card-red:hover {
    border-color: var(--neon-red);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.15);
    transform: translateY(-5px);
}

.card-red:hover::before {
    transform: scaleX(1);
}

/* 3. Buttons - Cyberpunk Style */
.btn-cyber-red {
    background: transparent;
    border: 1px solid var(--neon-red);
    color: var(--neon-red);
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    padding: 5px 30px;
    border-radius: 0; /* Sharp */
    position: relative;
    overflow: hidden;
    transition: 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cyber-red:hover {
    background: var(--neon-red);
    color: #000;
    box-shadow: 0 0 20px var(--neon-red);
}

/* 4. Search Bar - Aggressive */
.input-group-red {
    border: 1px solid #333;
    transition: 0.3s;
}
.input-group-red:focus-within {
    border-color: var(--neon-red);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.form-control-red {
    background: #050505;
    border: none;
    border-radius: 0;
    color: #fff !important;
    font-family: 'Chakra Petch';
    padding: 15px;
}

/* 5. Avatar Frame */
.avatar-frame {
    position: relative;
    width: 80px; height: 80px;
    padding: 3px;
    background: #111;
    border: 1px solid #333;
}
.card-red:hover .avatar-frame {
    border-color: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red);
}
.avatar-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* 6. RGB Badges */
.badge-neon {
    border-radius: 0;
    font-family: 'Teko';
    font-size: 1rem;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    color: #fff;
}

/* 7. Table - High Tech */
.table-dark-red {
    --bs-table-bg: transparent;
    --bs-table-color: #fff;
    border-color: #222;
}

.table-dark-red th {
    background: #0a0a0a;
    color: var(--neon-red);
    font-family: 'Teko';
    font-size: 1.2rem;
    border-bottom: 2px solid var(--neon-red);
    padding: 15px;
}

.table-dark-red td {
    vertical-align: middle;
    padding: 15px;
    font-size: 1.1rem;
}

.table-dark-red tr:hover td {
    background: rgba(255, 0, 0, 0.05);
    color: #fff;
}

/* 8. Ad Box */
.ad-cyber {
    background: repeating-linear-gradient(
        45deg,
        #050505,
        #050505 10px,
        #0a0a0a 10px,
        #0a0a0a 20px
    );
    border: 1px solid #222;
    color: #444;
    font-family: 'Teko';
    font-size: 1.5rem;
    display: flex;
    align-items: center; justify-content: center;
    min-height: 100px;
}

/* ============================================
   FUTURISTIC HOMEPAGE SECTIONS
   ============================================ */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 50, 50, 0.1) 0%, transparent 50%);
    animation: heroPulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes heroPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-platform-icon,
.hero-youtube-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.platform-icon-large {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: platformPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px var(--platform-primary));
    transition: 0.3s;
    color: #fff;
    box-shadow: 0 0 40px var(--platform-primary);
}

.platform-icon-large i {
    font-size: 2.5rem !important;
}

.platform-icon-large:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 50px var(--platform-primary));
}

.youtube-play-icon {
    width: 120px;
    height: 85px;
    position: relative;
    animation: platformPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px var(--platform-primary));
    transition: 0.3s;
}

.youtube-play-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 40px var(--platform-primary));
}

.youtube-play-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes platformPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 30px var(--platform-primary));
    }
    50% { 
        transform: scale(1.05);
        filter: drop-shadow(0 0 40px var(--platform-primary));
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff0000 50%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(255, 0, 0, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
    text-align: center;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 700px;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.hero-stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: 0.4s;
}

.hero-stat-card:hover::before {
    opacity: 1;
}

.hero-stat-card:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
}

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff0000, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.4rem;
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff0000;
    animation: float 15s infinite;
    opacity: 0.6;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Section Spacing */
.home-section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #ff0000, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.6));
    animation: neonGlow 2s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.6));
        text-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(255, 0, 0, 1));
        text-shadow: 0 0 40px rgba(255, 0, 0, 1);
    }
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.category-card-futuristic {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.8rem;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-card-futuristic::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.15), transparent);
    transition: 0.6s;
}

.category-card-futuristic:hover::after {
    left: 100%;
}

.category-card-futuristic:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #ff0000;
    box-shadow: 0 25px 50px rgba(255, 0, 0, 0.4);
}

.category-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 68, 68, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: 2px solid rgba(255, 0, 0, 0.4);
    transition: 0.4s;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.category-card-futuristic:hover .category-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    border-color: #ff0000;
    box-shadow: 0 0 40px #ff0000;
}

.category-name-futuristic {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #ff0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.5);
    animation: categoryNeon 3s ease-in-out infinite alternate;
}

@keyframes categoryNeon {
    0% {
        text-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.5);
    }
    100% {
        text-shadow: 0 0 30px rgba(255, 0, 0, 1), 0 0 60px rgba(255, 0, 0, 0.8);
    }
}

.category-count {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Channel Cards Modern */
.channel-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.channel-card-modern {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.channel-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #ff4444);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s;
}

.channel-card-modern:hover::before {
    transform: scaleX(1);
}

.channel-card-modern:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
}

.channel-avatar-modern {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #ff0000, #ff4444);
    position: relative;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.channel-avatar-modern img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #000;
}

.channel-title-modern {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: #ff0000;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}

.channel-stats-modern {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff0000, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.6));
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

/* Trending Section */
.trending-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 0, 0, 0.08) 50%, transparent 100%);
    padding: 100px 0;
}

.trending-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #ff0000, #ff4444);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.12) 0%, transparent 70%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #ffffff, #ff0000, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.6));
    animation: neonGlow 2s ease-in-out infinite alternate;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ff0000, #ff4444);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
    border: none;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
    color: #fff;
    background: linear-gradient(135deg, #ff2222, #ff6666);
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease-out;
}

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


/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .home-section {
        padding: 60px 0;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .channel-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FUTURISTIC NAVBAR
   ============================================ */

.navbar-futuristic {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.navbar-brand-section {
    flex-shrink: 0;
}

.navbar-logo {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0;
    transition: 0.3s;
}

.logo-main {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.logo-accent {
    background: linear-gradient(135deg, var(--platform-primary), var(--platform-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--platform-primary);
    filter: drop-shadow(0 0 10px var(--platform-primary));
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.6));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(255, 0, 0, 1));
    }
}

.navbar-logo:hover .logo-accent {
    animation: logoGlow 0.5s ease-in-out infinite alternate;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
}

.nav-item-futuristic {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: transparent;
    border: 1px solid transparent;
}

.nav-item-futuristic i {
    font-size: 1.1rem;
    transition: 0.3s;
}

.nav-item-futuristic:hover {
    color: #fff;
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-2px);
}

.nav-item-futuristic:hover i {
    color: #ff0000;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    transform: scale(1.2);
}

.nav-item-futuristic.active {
    color: var(--platform-primary, #ff0000);
    background: rgba(var(--platform-primary-rgb, 255, 0, 0), 0.15);
    border-color: rgba(var(--platform-primary-rgb, 255, 0, 0), 0.4);
    text-shadow: 0 0 20px var(--platform-primary, rgba(255, 0, 0, 0.8));
    box-shadow: 0 0 20px rgba(var(--platform-primary-rgb, 255, 0, 0), 0.3);
}

.nav-item-futuristic.active i {
    color: var(--platform-primary, #ff0000);
    text-shadow: 0 0 20px var(--platform-primary, rgba(255, 0, 0, 1));
    filter: drop-shadow(0 0 10px var(--platform-primary, rgba(255, 0, 0, 0.8)));
}

/* Platform Selector - Her platform kendi renginde */
.platform-selector {
    transition: all 0.3s ease;
    position: relative;
}

.platform-selector:hover {
    transform: translateY(-2px);
}

.platform-selector:hover i {
    transform: scale(1.2);
}

/* Coming Soon Badge */
.coming-soon-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
    z-index: 10;
    white-space: nowrap;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
    }
    50% {
        box-shadow: 0 2px 12px rgba(255, 107, 107, 0.7);
    }
}

/* Platform renkleri inline style ile uygulanıyor, burada sadece genel stiller */

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px #ff0000;
    animation: indicatorPulse 2s ease-in-out infinite;
}

@keyframes indicatorPulse {
    0%, 100% {
        opacity: 0.8;
        box-shadow: 0 0 10px #ff0000;
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px #ff0000;
    }
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.search-btn-futuristic {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;
}

.search-btn-futuristic:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.5);
    color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    transform: scale(1.1);
    text-decoration: none;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1031;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.navbar-toggle:hover span {
    background: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}

.navbar-bottom-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 30px rgba(255, 0, 0, 1);
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(5, 5, 8, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1rem;
        border-left: 2px solid rgba(255, 0, 0, 0.3);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease;
        z-index: 1030;
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .nav-item-futuristic {
        width: 100%;
        justify-content: flex-start;
    }
    
    .navbar-actions {
        margin-left: 0;
        width: 100%;
        margin-top: 2rem;
    }
    
    .navbar-container {
        padding: 1rem;
    }
}

/* ============================================
   HOME GENERAL PAGE STYLES
   ============================================ */

.platform-card-modern {
    display: block;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.platform-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.platform-card-modern:hover::before {
    opacity: 1;
}

.platform-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.1);
}

.platform-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.platform-card-modern:hover .platform-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.platform-name-modern {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Syncopate', sans-serif;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.platform-card-modern:hover .platform-name-modern {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.platform-stats-modern {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.platform-stats-modern .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Syncopate', sans-serif;
    background: linear-gradient(135deg, #ffffff, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-stats-modern .stat-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Platform Coming Soon Badge */
.platform-coming-soon-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.4);
    z-index: 10;
    white-space: nowrap;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 2px 10px rgba(255, 107, 107, 0.4);
    }
    50% {
        box-shadow: 0 2px 15px rgba(255, 107, 107, 0.7);
    }
}

.platform-hover-effect {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    transition: all 0.4s;
    opacity: 0;
    transform: translateX(-10px);
}

.platform-card-modern:hover .platform-hover-effect {
    opacity: 1;
    transform: translateX(0);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-card-modern:hover::before {
    opacity: 1;
}

.stat-card-modern:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
}

.stat-icon-modern {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 1rem;
    text-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.stat-card-modern:hover .stat-icon-modern {
    transform: scale(1.1);
    text-shadow: 0 0 35px rgba(255, 0, 0, 0.8);
}

.stat-value-modern {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Syncopate', sans-serif;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-label-modern {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 243, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00f3ff, #bc13fe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 243, 255, 0.5);
}

.feature-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Syncopate', sans-serif;
    position: relative;
    z-index: 1;
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Home General Page Specific Styles */
.hero-section-home {
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-title-home {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #00f3ff, #bc13fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-home {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.home-features-section {
    padding: 5rem 0;
}

/* Home General Page Styles */
.hero-section-home {
    min-height: 85vh;
}

.hero-title-home {
    font-size: clamp(2.5rem, 6vw, 5rem) !important;
    margin-bottom: 1.5rem !important;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #ff0000, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-home {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.platform-card-modern {
    display: block;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.platform-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.platform-card-modern:hover::before {
    opacity: 1;
}

.platform-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.1);
}

.platform-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.platform-card-modern:hover .platform-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.platform-name-modern {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Syncopate', sans-serif;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.platform-card-modern:hover .platform-name-modern {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.platform-stats-modern {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Syncopate', sans-serif;
    background: linear-gradient(135deg, #ffffff, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-hover-effect {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    transition: all 0.4s;
    opacity: 0;
    transform: translateX(-10px);
}

.platform-card-modern:hover .platform-hover-effect {
    opacity: 1;
    transform: translateX(0);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-card-modern:hover::before {
    opacity: 1;
}

.stat-card-modern:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
}

.stat-icon-modern {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 1rem;
    text-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.stat-card-modern:hover .stat-icon-modern {
    transform: scale(1.1);
    text-shadow: 0 0 35px rgba(255, 0, 0, 0.8);
}

.stat-value-modern {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Syncopate', sans-serif;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-label-modern {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

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

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    text-shadow: 0 0 35px rgba(255, 0, 0, 0.8);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Syncopate', sans-serif;
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* GTranslate Custom Styles */
.language-selector-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Hide GTranslate default popup */
#google_translate_element {
    display: none !important;
}

.gtranslate_wrapper {
    position: relative;
}

/* Custom GTranslate Dropdown Styling */
.gtranslate_wrapper select,
.gtranslate_wrapper .gt_container {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 0, 0, 0.3) !important;
    border-radius: 12px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
    font-family: 'Outfit', sans-serif !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    min-width: 120px !important;
    outline: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff0000' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 12px !important;
    padding-right: 2.5rem !important;
}

.gtranslate_wrapper select:hover,
.gtranslate_wrapper .gt_container:hover {
    background: rgba(255, 0, 0, 0.1) !important;
    border-color: rgba(255, 0, 0, 0.5) !important;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2) !important;
}

.gtranslate_wrapper select:focus,
.gtranslate_wrapper .gt_container:focus {
    background: rgba(255, 0, 0, 0.15) !important;
    border-color: rgba(255, 0, 0, 0.6) !important;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3) !important;
}

.gtranslate_wrapper option {
    background: #1a1a1a !important;
    color: #fff !important;
    padding: 0.5rem !important;
}

/* GTranslate flag icons */
.gtranslate_wrapper img {
    margin-right: 0.5rem !important;
    vertical-align: middle !important;
    border-radius: 2px !important;
}

/* Hide GTranslate popup/banner */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#google_translate_element2,
.goog-te-menu-frame {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}

body {
    top: 0 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .gtranslate_wrapper select,
    .gtranslate_wrapper .gt_container {
        min-width: 100px !important;
        font-size: 0.85rem !important;
        padding: 0.4rem 0.75rem !important;
        padding-right: 2rem !important;
    }
}
