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

:root {
    --primary-orange: #ea580c;
    --primary-orange-dark: #ea580c;
    --text-black: #1f2937;
    --text-gray: #6b7280;
    --text-gray-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-gray: #f9fafb;
    --bg-gray-light: #f3f4f6;
    --border-gray: #e5e7eb;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-white);
    color: var(--text-black);
    overflow-x: hidden;
    padding-top: 80px; /* Header iÃ§in padding */
}

body.loading {
    overflow: hidden;
}

/* Page Loader - Discord Style */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
0deg, #ffffff 0%, #cecece 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-loader.hidden {
    opacity: 1;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader-logo-img {
    width: 150px;
    height: auto;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 10px 30px rgba(234, 88, 11, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 15px 40px rgba(234, 88, 11, 0.5));
    }
}

.loader-text {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--primary-orange);
    text-shadow: 0 0 20px rgba(234, 88, 11, 0.5);
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(234, 88, 11, 0.5);
        opacity: 1;
    }
    50% {
        text-shadow: 0 0 30px rgba(234, 88, 11, 0.8), 0 0 40px rgba(234, 88, 11, 0.4);
        opacity: 0.9;
    }
}

/* Spinner - Discord Style */
.loader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    opacity: 0;
    display: none;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--primary-orange);
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    width: 80px;
    height: 80px;
    border-top-color: var(--primary-orange);
    animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-top-color: rgba(234, 88, 11, 0.7);
    animation-delay: -0.2s;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    border-top-color: rgba(234, 88, 11, 0.5);
    animation-delay: -0.4s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Enhanced Liquid Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.glass-effect-strong {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 48px 0 rgba(0, 0, 0, 0.15);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-overlay {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
}

/* Glass Effect for Buttons */
.glass-btn {
    background: rgb(255 255 255 / 12%);
    backdrop-filter: blur(3px) saturate(136%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgb(255 255 255 / 9%);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-btn:hover {
    background: rgb(255 255 255 / 12%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.glass-btn.active {
    background: rgba(249, 115, 22, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-color: rgba(249, 115, 22, 0.95);
    box-shadow: 0 6px 24px 0 rgba(249, 115, 22, 0.3);
    color: white;
}

/* Orange Glass Button */
.glass-btn.orange,
.glass-btn.bg-orange-600 {
    background: rgb(234 88 11);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(234, 88, 11, 0.3);
    box-shadow: 0 4px 16px 0 rgba(234, 88, 11, 0.2);
    color: white;
}

.glass-btn.orange:hover,
.glass-btn.bg-orange-600:hover {
    background: rgba(234, 88, 11, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-color: rgba(234, 88, 11, 0.5);
    box-shadow: 0 6px 24px 0 rgba(234, 88, 11, 0.4);
    transform: translateY(-2px);
}

/* Glass Effect for Badges */
.glass-badge {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-badge:hover {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.glass-badge.orange {
    background: rgba(249, 115, 22, 0.15);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-color: rgba(249, 115, 22, 0.3);
    color: var(--primary-orange);
}

.glass-badge.orange:hover {
    background: rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.4);
}

/* Header Styles with Liquid Glass */
.header-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    height: 92px;
}

.header-main.scrolled {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(229, 231, 235, 0.2);
}

.header-main.dark-nav.scrolled {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
    color: white;
    font-weight: 500;
}

.header-main.dark-nav .nav-link {
    color: var(--text-black);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.header-main.dark-nav .nav-link:hover {
    color: var(--primary-orange);
}

.logo {
    transition: color 0.3s ease;
}

.header-main.dark-nav .logo {
    color: var(--primary-orange);
}

/* Mega Menu - Fixed Position with Gap */
.nav-item {
    position: relative;
}

.mega-menu-container {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-20px);
    padding-top: 20px;
}

.nav-item:hover .mega-menu-container,
.mega-menu-container:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.mega-menu {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-top: 2px solid rgba(249, 115, 22, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 60px 40px;
    margin: 0;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.mega-menu-item {
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.mega-menu-item:hover {
    transform: translateY(-8px);
}

.mega-menu-item-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mega-menu-item:hover .mega-menu-item-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.2);
    transform: translateY(-4px);
}

.mega-menu-item-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(249, 115, 22, 0.1);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.mega-menu-item:hover .mega-menu-item-icon {
    background: rgba(249, 115, 22, 0.2);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
    transform: scale(1.1);
}

.mega-menu-item-icon i {
    font-size: 36px;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.mega-menu-item:hover .mega-menu-item-icon i {
    transform: scale(1.1);
}

.mega-menu-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.mega-menu-item:hover h4 {
    color: var(--primary-orange);
}

.mega-menu-item p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Language Selector */
.lang-selector {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgb(255 255 255 / 0%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    padding: 80px 30px 30px;
    overflow-y: auto;
    box-shadow: -4px 0 40px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1999;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    color: var(--text-black);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 2001;
}

.mobile-menu-close:hover {
    background: rgba(249, 115, 22, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-color: rgba(249, 115, 22, 0.5);
    color: white;
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.3);
    transform: translateY(-2px) rotate(90deg);
}

.mobile-menu-close:active {
    transform: translateY(0) rotate(90deg) scale(0.95);
}

/* Hamburger Icon */
.hamburger {
    width: 44px;
    height: 44px;
    position: relative;
    cursor: pointer;
    padding: 0;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hamburger.glass-btn {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hamburger.glass-btn:hover {
    background: rgba(249, 115, 22, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
}

.hamburger.glass-btn:hover span {
    background: white;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 24px;
    background: var(--text-black);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    left: 50%;
    transform: translateX(-50%);
}

.header-main.dark-nav .hamburger span {
    background: var(--text-black);
}

.hamburger span:nth-child(1) {
    top: 14px;
    transform: translateX(-50%);
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.hamburger span:nth-child(3) {
    bottom: 14px;
    transform: translateX(-50%);
}

.hamburger.active span {
    background: white;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

.hamburger.active span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Logo */
.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--primary-orange);
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Header Container */
.header-container {
    max-width: 1400px;
    margin: 4px auto;
    padding: 0 2rem;
}

@media (max-width: 1400px) {
    .mega-menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .mega-menu-container {
        display: none;
    }
    
    body {
        padding-top: 80px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .header-main {
        height: 92px;
    }
    
    /* Loader Mobile */
    .loader-container {
        gap: 30px;
    }
    
    .loader-logo-img {
        width: 150px;
    }
    
    .loader-text {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .loader-spinner {
        width: 60px;
        height: 60px;
    }
    
    .spinner-ring:nth-child(1) {
        width: 60px;
        height: 60px;
    }
    
    .spinner-ring:nth-child(2) {
        width: 45px;
        height: 45px;
        top: 7.5px;
        left: 7.5px;
    }
    
    .spinner-ring:nth-child(3) {
        width: 30px;
        height: 30px;
        top: 15px;
        left: 15px;
    }
}
.tcolor{
    color: var(--primary-orange);
}

.logodata{
    width:140px;
}

/* Floating Action Button (FAB) */
.fab-container {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 1000;
}

.fab-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), #f97316);
    border: none;
    box-shadow: 0 8px 24px rgba(234, 88, 11, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    overflow: hidden;
}

.fab-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.fab-button:hover::before {
    width: 300px;
    height: 300px;
}

.fab-button:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 12px 32px rgba(234, 88, 11, 0.5), 0 6px 16px rgba(0, 0, 0, 0.2);
}

.fab-button:active {
    transform: scale(0.95) rotate(90deg);
}

.fab-icon-open,
.fab-icon-close {
    position: absolute;
    font-size: 24px;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

.fab-button.active .fab-icon-open {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

.fab-button.active .fab-icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.fab-button.active {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.fab-button.active:hover {
    transform: rotate(45deg) scale(1.1);
}

/* FAB Menu */
.fab-menu {
    position: absolute;
    bottom: 80px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.fab-container.active .fab-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

/* FAB Items */
.fab-item {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    animation-delay: var(--delay);
}

.fab-container.active .fab-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fab-container.active .fab-item:nth-child(1) {
    transition-delay: 0.05s;
}

.fab-container.active .fab-item:nth-child(2) {
    transition-delay: 0.1s;
}

.fab-container.active .fab-item:nth-child(3) {
    transition-delay: 0.15s;
}

.fab-container.active .fab-item:nth-child(4) {
    transition-delay: 0.2s;
}

.fab-container.active .fab-item:nth-child(5) {
    transition-delay: 0.25s;
}

.fab-container.active .fab-item:nth-child(6) {
    transition-delay: 0.3s;
}

.fab-container.active .fab-item:nth-child(7) {
    transition-delay: 0.35s;
}

/* Specific Colors for Each Social Media */
.fab-item:nth-child(1) {
    background: linear-gradient(135deg, #ea4335, #dc2626);
}

.fab-item:nth-child(2) {
    background: linear-gradient(135deg, #E4405F, #C13584);
}

.fab-item:nth-child(3) {
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.fab-item:nth-child(4) {
    background: linear-gradient(135deg, #1877F2, #0866FF);
}

.fab-item:nth-child(5) {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.fab-item:nth-child(6) {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.fab-item:nth-child(7) {
    background: linear-gradient(135deg, #0077B5, #005885);
}

.fab-item:hover {
    transform: scale(1.15) translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.fab-item:active {
    transform: scale(1.05) translateY(-2px);
}

/* Tooltip */
.fab-item::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 70px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.fab-item::before {
    content: '';
    position: absolute;
    left: 60px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-item:hover::after,
.fab-item:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fab-container {
        bottom: 80px;
        left: 24px;
    }
    
    .fab-button {
        width: 56px;
        height: 56px;
    }
    
    .fab-item {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .fab-item::after {
        display: none;
    }
    
    .fab-item::before {
        display: none;
    }
}

.uygulamacard img {
    width: 150px!important;
}

.uygulamacard h3 {
    font-size: 12px!important;
}