/* Styles généraux */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Navbar personnalisée */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.6px;
    transition: all 0.4s ease;
}

.navbar-brand:hover {
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar-brand:hover img {
    transform: scale(1.08) rotate(5deg);
}

/* Styles pour le header modernisé */
.navbar-lob {
    background: linear-gradient(135deg, #1a1f2c 0%, #2c3e50 100%);
}

.nav-item .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-item .nav-link:hover {
    transform: translateY(-2px);
}

.nav-item .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background-color: #60a5fa;
    border-radius: 3px;
}

/* Styles pour les icônes du menu */
.menu-icon {
    margin-right: 8px;
    font-size: 1rem;
}

/* Animation de pulse pour les notifications */
.badge-pulse {
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 rgba(255, 82, 82, 0.7);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 10px 5px rgba(255, 82, 82, 0.4);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
    }
}

/* Styles pour la navbar améliorée */
body {
    font-family: 'Poppins', sans-serif;
}

.navbar-lob {
    background: linear-gradient(135deg, #1a1f2c 0%, #2c3e50 100%);
    padding: 0.8rem 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar-lob:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.navbar-nav {
    gap: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.navbar-collapse {
    justify-content: space-between;
}

.nav-link {
    font-weight: 500;
    padding: 0.7rem 1.1rem !important;
    position: relative;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: 0 1px;
    overflow: hidden;
    color: rgba(255,255,255,0.85) !important;
    letter-spacing: 0.2px;
    text-align: center;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(96, 165, 250, 0.15);
    z-index: -1;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 8px;
}

.nav-link:hover {
    color: #60a5fa !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-link:hover::before {
    height: 100%;
}

.nav-link.active {
    color: #60a5fa !important;
    font-weight: 600;
    background-color: rgba(96, 165, 250, 0.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 40%;
    height: 3px;
    background-color: #60a5fa;
    border-radius: 3px 3px 0 0;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(96, 165, 250, 0.5);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(96, 165, 250, 0.5);
    }
    to {
        box-shadow: 0 0 15px rgba(96, 165, 250, 0.8);
    }
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.btn-auth {
    border-radius: 50px;
    padding: 0.55rem 1.4rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.3px;
}

.btn-auth::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-login {
    background-color: transparent;
    border: 2px solid #60a5fa;
    color: #60a5fa;
}

.btn-login::after {
    background-color: #60a5fa;
}

.btn-login:hover {
    color: white;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.4);
    transform: translateY(-2px);
}

.btn-login:hover::after {
    width: 100%;
}

.btn-register {
    background-color: #60a5fa;
    border: 2px solid #60a5fa;
    color: white;
}

.btn-register::after {
    background-color: #3b82f6;
}

.btn-register:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.btn-register:hover::after {
    width: 100%;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #60a5fa;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.2);
}

.user-menu:hover .user-avatar {
    border-color: #3b82f6;
    transform: scale(1.05);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.3);
}

.notification-badge {
    position: absolute;
    top: 0px;
    right: 2px;
    font-size: 0.7rem;
    padding: 0.2rem 0.45rem;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.8rem;
    border-radius: 50px;
    background-color: rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.user-menu:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.navbar-icon {
    font-size: 1.2rem;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.navbar-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.navbar-icon:hover::after {
    width: 120%;
    height: 120%;
}

.navbar-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.navbar-icon:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.navbar-icon:hover i {
    transform: scale(1.1);
}

/* Alignement des icônes avec le texte */
.nav-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.6rem;
    font-size: 1.05rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 20px;
    height: 20px;
    line-height: 1;
    vertical-align: middle;
}

.nav-link:hover i {
    transform: translateY(-1px) scale(1.15);
    color: #60a5fa;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.nav-link.active i {
    color: #60a5fa;
    transform: scale(1.1);
}

/* Carte des paris */
.LoLMatch-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    background-color: #fff;
}

.LoLMatch-card:hover {
    transform: translateY(-5px);
}

.LoLMatch-card .card-header {
    background-color: #1a1a2e;
    color: white;
    font-weight: bold;
}

.LoLMatch-card .vs {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a2e;
}

.team-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Bouton de pari */
.btn-bet {
    background-color: #4361ee;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-bet:hover {
    background-color: #3a56d4;
    transform: scale(1.05);
}

/* Badge de token */
.token-badge {
    background-color: #ffc107;
    color: #333;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.token-badge i {
    color: #ff9800;
}

/* Carte de défi */
.challenge-card {
    border-left: 4px solid #4361ee;
    background-color: #f8f9fa;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.challenge-progress {
    height: 8px;
    border-radius: 4px;
    margin-top: 10px;
    background-color: #e9ecef;
}

.challenge-progress .progress-bar {
    background-color: #4361ee;
}

/* Animation pour les notifications */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.badge-notification {
    animation: pulse 2s infinite;
}

/* Style pour la page de profil */
.profile-header {
    background-color: #1a1a2e;
    color: white;
    padding: 30px 0;
    margin-bottom: 30px;
    border-radius: 0 0 20px 20px;
}

.profile-stats {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
}

.xp-progress {
    height: 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
}

.xp-progress .progress-bar {
    background-color: #4361ee;
}

/* Style pour les tableaux */
.table-stats {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.table-stats thead {
    background-color: #1a1a2e;
    color: white;
}

/* Style pour le portefeuille */
.wallet-card {
    background-color: #1a1a2e;
    color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.wallet-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.wallet-balance {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0;
}

.wallet-token-icon {
    font-size: 24px;
    color: #ffc107;
    margin-right: 10px;
}

/* Style pour les pages d'authentification */
.auth-card {
    max-width: 500px;
    margin: 50px auto;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.auth-card .card-header {
    background-color: #1a1a2e;
    color: white;
    font-weight: bold;
    padding: 20px;
}

.auth-card .card-body {
    padding: 30px;
}

.auth-btn {
    background-color: #4361ee;
    border: none;
    padding: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.auth-btn:hover {
    background-color: #3a56d4;
    transform: translateY(-2px);
}

/* Style pour les alertes */
.alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Style pour le classement */
.leaderboard-item {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.leaderboard-rank {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #1a1a2e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.leaderboard-top .leaderboard-rank {
    background-color: #ffc107;
    color: #333;
}

/* Styles pour le leaderboard */
.leaderboard-table th {
    font-weight: 600;
    border-bottom-width: 2px;
}

.leaderboard-table td {
    vertical-align: middle;
}

.leaderboard-position {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.position-1 {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #fff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    animation: position-1-pulse 2s infinite;
}

.position-2 {
    background: linear-gradient(135deg, #c0c0c0, #a9a9a9);
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.position-3 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: #fff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

.position-1, .position-2, .position-3 {
    transition: all 0.3s ease;
}

.position-1:hover, .position-2:hover, .position-3:hover {
    transform: scale(1.1);
}

@keyframes position-1-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.streak-badge {
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: 600;
}

.streak-high {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.streak-medium {
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.streak-low {
    background-color: rgba(108, 117, 125, 0.2);
    color: #6c757d;
}

/* Animation pour le vainqueur */
@keyframes winner-glow {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.crown-icon {
    animation: winner-glow 2s infinite;
    color: #FFD700;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.7));
}

/* Styles pour les onglets de classement */
.leaderboard-tabs .nav-link {
    border-radius: 0.5rem 0.5rem 0 0;
    font-weight: 500;
}

.leaderboard-tabs .nav-link.active {
    border-bottom: 3px solid #0d6efd;
}

.leaderboard-tabs .nav-link:not(.active):hover {
    background-color: rgba(13, 110, 253, 0.05);
}

/* Style pour les notifications */
.notification-item {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #1a1a2e;
    transition: all 0.3s ease;
}

.notification-item:hover {
    transform: translateX(5px);
}

.notification-item.unread {
    border-left-color: #4361ee;
}

.notification-title {
    font-weight: bold;
    color: #1a1a2e;
}

.notification-date {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Styles pour les notifications */
.notification-item {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.notification-item.unread {
    border-left-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
}

.notification-item:hover {
    transform: translateX(3px);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.notification-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.notification-actions {
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.notification-item:hover .notification-actions {
    opacity: 1;
}

.notification-date {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Badge avec animation pour nouvelles notifications */
.badge-pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

/* Section filtres de notification */
.notification-filters {
    margin-bottom: 1.5rem;
}

.notification-filters .btn-group {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Style pour les filtres du classement */
.dropdown-item.active {
    background-color: rgba(13, 110, 253, 0.15);
    color: #0d6efd;
    font-weight: 600;
}

/* Badges améliorés pour le taux de réussite */
.winrate-badge {
    padding: 0.35em 0.65em;
    border-radius: 50rem;
    display: inline-block;
    font-weight: 600;
}

.winrate-high {
    background-color: rgba(25, 135, 84, 0.2);
    color: #198754;
}

.winrate-medium {
    background-color: rgba(13, 110, 253, 0.2);
    color: #0d6efd;
}

.winrate-low {
    background-color: rgba(108, 117, 125, 0.2);
    color: #6c757d;
}

/* Media Queries */
@media (max-width: 768px) {
    .profile-avatar {
        width: 80px;
        height: 80px;
    }
    
    .wallet-balance {
        font-size: 28px;
    }
}

/* Styles pour la page des joueurs suivis */
.player-card {
    transition: all 0.2s ease-in-out;
}

.player-card:hover {
    transform: translateY(-3px);
}

.ingame-player .player-card {
    border-width: 2px !important;
}

.ingame-player .player-card:hover {
    box-shadow: 0 8px 15px rgba(40, 167, 69, 0.2) !important;
}

.player-card .btn-bet {
    transition: all 0.2s;
}

.player-card:hover .btn-bet {
    transform: scale(1.03);
}

.badge.animate__pulse {
    animation-duration: 2s;
}

/* Styles pour les compteurs de joueurs */
.player-count-all, .player-count-ingame {
    min-width: 1.5rem;
}

/* Animation pour les joueurs en jeu */
@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(40, 167, 69, 0.5); }
    50% { box-shadow: 0 0 20px rgba(40, 167, 69, 0.5); }
    100% { box-shadow: 0 0 5px rgba(40, 167, 69, 0.5); }
}

.ingame-player .player-card {
    animation: glow 3s infinite;
}

/* Styles pour la nouvelle interface de la page d'accueil */
.player-icon {
    font-size: 1.5rem;
    color: #007bff;
}

.card.h-100 {
    transition: all 0.3s ease;
}

.card.h-100:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.badge.bg-success {
    animation: pulse 2s infinite;
}

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

/* Styles améliorés pour la barre de navigation */
.navbar-scrolled {
    padding: 0.6rem 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #131720 0%, #1e2a3a 100%);
}

.nav-link span {
    position: relative;
    z-index: 2;
    margin-left: 2px;
    transition: all 0.3s ease;
}

.nav-flash {
    animation: navFlash 0.4s ease;
}

@keyframes navFlash {
    0% { background-color: rgba(96, 165, 250, 0); }
    50% { background-color: rgba(96, 165, 250, 0.3); }
    100% { background-color: rgba(96, 165, 250, 0); }
}

.nav-right-section {
    transition: all 0.3s ease;
}

.navbar-dark .navbar-toggler {
    border: none;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-toggler:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.navbar-dark .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    transition: all 0.3s ease;
}

.user-avatar {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.user-menu:hover .user-avatar {
    transform: scale(1.08);
}

.user-actions-container {
    gap: 0.6rem;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    padding: 0.3rem 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.user-actions-container:hover {
    background: rgba(255,255,255,0.08);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    border-color: rgba(255,255,255,0.08);
}

.username-text {
    font-weight: 500;
    transition: all 0.3s ease;
}

.user-menu:hover .username-text {
    color: #60a5fa;
}

/* Effet de tooltip amélioré */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

[data-tooltip]:hover:after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Animation de badge de notification */
.badge-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(220, 53, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

/* Styles pour le footer moderne */
.footer {
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.footer-brand {
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-left: 2px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.footer-link {
    position: relative;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
}

.footer-link:hover {
    color: #60a5fa !important;
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.footer-link i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-link:hover i {
    transform: scale(1.2);
}

.social-links {
    display: flex;
    gap: 0.7rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8) !important;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.social-icon i {
    position: relative;
    z-index: 1;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    color: #fff !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:active {
    transform: translateY(-1px) scale(0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.copyright-inner {
    position: relative;
    display: inline-block;
}

.copyright-inner::before,
.copyright-inner::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, rgba(96, 165, 250, 0), rgba(96, 165, 250, 0.5), rgba(96, 165, 250, 0));
}

.copyright-inner::before {
    left: -40px;
}

.copyright-inner::after {
    right: -40px;
}

@media (max-width: 768px) {
    .footer-links {
        margin: 1rem 0;
    }
}
