/* Main Variables */
:root {
    --primary: #8c5eff;
    --primary-dark: #6c3ce9;
    --primary-light: #a685ff;
    --secondary: #ff4757;
    --accent: #00d9ff;
    --dark: #0f0f23;
    --darker: #0a0a1a;
    --light: #f8f9fa;
    --card-bg: rgba(20, 20, 40, 0.8);
    --border: rgba(255, 255, 255, 0.15);
    --glow-color: rgba(140, 94, 255, 0.8);
    --secondary-glow: rgba(255, 71, 87, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.4);
}

/* Base Styles */
body {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 50%, #1a1a2e 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: var(--primary);
    color: white;
}

::-moz-selection {
    background: var(--primary);
    color: white;
}

/* Text Styles & Effects */
.text-gradient {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-alt {
    background: linear-gradient(90deg, #ff4757 0%, #f9cb28 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-glow {
    text-shadow: 0 0 10px rgba(140, 94, 255, 0.5), 0 0 20px rgba(140, 94, 255, 0.3);
}

/* Header & Navigation */
.navbar {
    background: rgba(10, 10, 20, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(140, 94, 255, 0.1) 0%, rgba(255, 71, 87, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.navbar:hover::before {
    opacity: 1;
}

.navbar.bg-dark {
    background-color: rgba(12, 12, 12, 0.95) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    color: white;
    font-weight: 700;
    font-size: 1.6rem;
}

.navbar-brand span {
    color: var(--primary);
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0px 2px;
    position: relative;
    padding: 8px 16px !important;
    border-radius: 8px;
    overflow: hidden;
}

.navbar-nav .nav-link:hover {
    color: var(--text-primary) !important;
    background: var(--glass-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background: linear-gradient(135deg, rgba(140, 94, 255, 0.2) 0%, rgba(255, 71, 87, 0.2) 100%);
    box-shadow: var(--shadow-md);
    transform: translateX(0px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-slider {
    height: 80vh;
    max-height: 800px;
}

.hero-slide {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transition: all 0.5s ease;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s both;
    animation-delay: 0.3s;
}

.hero-buttons {
    animation: fadeIn 1s both;
    animation-delay: 0.6s;
}

.hero-buttons .btn {
    margin: 0 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

/* Game Categories */
.game-categories {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 10;
}

.game-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.game-category i {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary);
    transition: all 0.3s;
}

.game-category:hover {
    transform: translateY(-5px);
    color: var(--primary);
}

.game-category:hover i {
    color: var(--secondary);
}

/* Swiper Navigation */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary) !important;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px var(--glow-color);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    margin-bottom: 0;
}

.section-title span {
    position: relative;
}

/* Team Cards */
.teams-section {
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 50%, var(--darker) 100%);
    overflow: hidden;
}

.teams-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(140, 94, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 71, 87, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.teams-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://via.placeholder.com/1920x1080/1a1a2e/1a1a2e?text=');
    background-size: cover;
    opacity: 0.2;
    z-index: 0;
}

.team-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(140, 94, 255, 0.05) 0%, rgba(255, 71, 87, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.team-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.team-card:hover::before {
    opacity: 1;
}

.team-card-banner {
    position: relative;
    height: 120px;
    overflow: hidden;
}

.team-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 20, 0.1), rgba(10, 10, 20, 0.8));
    z-index: 1;
}

.team-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-body {
    padding: 25px 15px 15px;
    position: relative;
}

.team-logo {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary);
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}
.teamlogo {
    position: absolute;
   
    left: 50%;
   
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary);

    overflow: hidden;
}

.team-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
}

.team-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.game-tag {
    background-color: rgba(140, 94, 255, 0.2);
    color: var(--primary);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.team-stats {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.btn-team-action {
    display: block;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-align: center;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s;
    text-decoration: none;
    font-weight: 500;
}

.btn-team-action:hover {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    box-shadow: 0 0 10px var(--glow-color);
}

/* Tournament Cards */
.tournaments-section {
    position: relative;
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 100%);
}

.tournaments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://via.placeholder.com/1920x1080/1a1a2e/1a1a2e?text=');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.tournament-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.tournament-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.tournament-banner {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.tournament-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.tournament-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tournament-card:hover .tournament-banner img {
    transform: scale(1.1);
}

.tournament-status {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.upcoming {
    background: linear-gradient(90deg, #f9cb28 0%, #ff9f43 100%);
    color: #000;
}

.status-badge.live {
    background: linear-gradient(90deg, #ff4757 0%, #ff0000 100%);
    color: #fff;
    animation: pulse 1.5s infinite;
}

.tournament-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tournament-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.tournament-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.tournament-title a:hover {
    color: var(--primary);
}

.tournament-info {
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.info-item i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary);
}

.tournament-organizer {
    display: flex;
    align-items: center;
    padding-top: 15px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.organizer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
    margin-right: 15px;
}

.organizer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.organizer-info {
    display: flex;
    flex-direction: column;
}

.organizer-label {
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.organizer-name {
    font-weight: 600;
    color: #fff;
}

/* Feature Cards */
.features-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #121212 100%);
}

.feature-card {
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(140, 94, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 25px;
    color: var(--primary);
}

/* Social Feed */
.social-section {
    position: relative;
    overflow: hidden;
    background-color: var(--darker);
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://via.placeholder.com/1920x1080/1a1a2e/1a1a2e?text=') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.social-links {
    display: flex;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-left: 10px;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(140, 94, 255, 0.3);
}

.social-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.social-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.social-profile {
    display: flex;
    align-items: center;
}

.social-profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.social-profile-info h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.social-username {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.social-platform {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.twitter {
    background: #1DA1F2;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.tiktok {
    background: #000;
}

.social-content {
    padding: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.social-card-img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
}

.social-stats {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
}

.social-stats span {
    display: flex;
    align-items: center;
}

.social-stats i {
    margin-right: 5px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.7) 0%, rgba(20, 20, 40, 0.7) 100%), url('https://via.placeholder.com/1920x1080/1a1a2e/1a1a2e?text=');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(140, 94, 255, 0.2) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    border-radius: 10px;
    background: rgba(10, 10, 20, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(140, 94, 255, 0.1);
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border: none;
    border-radius: 12px;
    padding: 9px 20px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 20px var(--glow-color);
}

.pulse-button {
    position: relative;
    box-shadow: 0 0 0 0 rgba(140, 94, 255, 0.7);
    animation: pulse 2s infinite;
}

/* Newsletter Section */
.newsletter-icons__section {
    padding: 60px 0;
    background-color: var(--darker);
}

.page-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
}

.flex-grid--center {
    align-items: center;
}

.grid__item {
    padding: 0 15px;
}

.large-up--two-fifths {
    width: 40%;
}

.large-up--three-fifths {
    width: 60%;
}

.large-up--one-third {
    width: 33.33%;
}

.highlight-red strong {
    color: var(--primary);
}

/* Neon Border Effects */
.neon-border {
    box-shadow: 0 0 10px var(--glow-color), 0 0 20px var(--glow-color);
    border-color: var(--primary) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 6px;
    border: 2px solid var(--darker);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    box-shadow: 0 0 10px rgba(140, 94, 255, 0.5);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--darker);
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(140, 94, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(140, 94, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(140, 94, 255, 0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(140, 94, 255, 0.3); }
    50% { box-shadow: 0 0 30px rgba(140, 94, 255, 0.6); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Modern Loading Animation */
.loading-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

/* Hover Glow Effect */
.hover-glow:hover {
    animation: glow 2s infinite;
}

/* Smooth Transitions */
.smooth-transition {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated Background */
.animated-bg {
    background: linear-gradient(-45deg, #0f0f23, #1a1a2e, #16213e, #0f0f23);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Utility Classes */
.text-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, #ff6b7a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.shadow-primary {
    box-shadow: 0 8px 32px rgba(140, 94, 255, 0.3);
}

.shadow-secondary {
    box-shadow: 0 8px 32px rgba(255, 71, 87, 0.3);
}

.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
                linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Admin Panel Styles */
:root {
    --admin-primary: #8c5eff;
    --admin-primary-dark: #6c3ce9;
    --admin-secondary: #ff4757;
    --admin-dark: #0f0f23;
    --admin-darker: #0a0a1a;
    --admin-card-bg: rgba(20, 20, 40, 0.8);
    --admin-border: rgba(255, 255, 255, 0.15);
    --admin-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --admin-glass-bg: rgba(255, 255, 255, 0.05);
}

/* Admin Body Styles */
body {
    background: linear-gradient(135deg, var(--admin-darker) 0%, var(--admin-dark) 50%, #1a1a2e 100%);
    background-attachment: fixed;
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Admin Content Wrapper */
.content-wrapper {
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-left: 280px;
    transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 100vh;
}

.content-wrapper.sidebar-collapsed {
    margin-left: 70px;
}

@media (max-width: 768px) {
    .content-wrapper {
        margin-left: 0;
    }
    
    .content-wrapper.sidebar-collapsed {
        margin-left: 0;
    }
}

/* Admin Card Styles */
.card {
    background: var(--admin-card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--admin-border);
    border-radius: 16px;
    box-shadow: var(--admin-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.4);
}

/* Admin Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--admin-primary) 0%, var(--admin-primary-dark) 100%);
    border: none;
    border-radius: 12px;
    padding: 9px 20px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(140, 94, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(140, 94, 255, 0.4);
}

/* Admin Form Controls */
.form-control {
    background: var(--admin-glass-bg);
    border: 1px solid var(--admin-border);
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--admin-primary);
    box-shadow: 0 0 0 3px rgba(140, 94, 255, 0.2);
}

/* Admin Table Styles */
.table {
    background: var(--admin-card-bg);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    overflow: hidden;
}

.table thead th {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-weight: 600;
}

.table tbody td {
    border-color: var(--admin-border);
    color: rgba(255, 255, 255, 0.9);
}

.table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Admin Footer Styles */
.sticky-footer {
    background: var(--admin-card-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--admin-border);
}

.sticky-footer .copyright {
    color: rgba(255, 255, 255, 0.8);
    padding: 20px 0;
}

.sticky-footer .copyright span {
    font-weight: 500;
}

.sticky-footer .copyright div {
    margin-top: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.sticky-footer .copyright div span {
    color: var(--admin-primary);
    font-weight: 600;
}

/* Admin Modal Styles */
.modal-content {
    background: var(--admin-card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--admin-border);
    border-radius: 16px;
}

.modal-header {
    border-bottom: 1px solid var(--admin-border);
}

.modal-title {
    color: #fff;
    font-weight: 600;
}

.modal-header .close {
    color: #fff;
    opacity: 0.8;
}

.modal-body {
    color: rgba(255, 255, 255, 0.9);
}

.modal-body p {
    margin-bottom: 0;
}

.modal-footer {
    border-top: 1px solid var(--admin-border);
}

.modal-footer .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--admin-border);
    color: #fff;
}

/* Admin Scroll to Top Button */
.scroll-to-top {
    background: linear-gradient(135deg, var(--admin-primary) 0%, var(--admin-primary-dark) 100%);
    border: none;
    box-shadow: var(--admin-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-to-top i {
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .social-feed {
        grid-template-columns: 1fr;
    }
    
    .hero-img {
        height: 50vh;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .game-categories {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 15px 10px;
    }
    
    .game-category {
        margin: 0 10px;
        flex-shrink: 0;
    }
    
    .large-up--two-fifths,
    .large-up--three-fifths,
    .large-up--one-third {
        width: 100%;
    }
    
    .newsletter-icon__newsletter-container {
        margin-bottom: 30px;
    }
}

/* Game Page Styles */
.hero-games-section {
    position: relative;
    height: 350px;
    background-image: url('/assets/images/games-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    margin-bottom: 30px;
}

.hero-games-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero-games-section .hero-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.hero-games-section .hero-content h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInDown 0.8s both;
}

.hero-games-section .search-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s both;
    animation-delay: 0.2s;
}

.hero-games-section .search-container .form-control {
    height: 50px;
    font-size: 18px;
    background-color: #29243d;
    border-radius: 12px 0 0 12px;
    border: 1px solid var(--border);
    
    padding: 0 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-games-section .search-container .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(140, 94, 255, 0.3);
}

.hero-games-section .search-container .btn {
    height: 50px;
    border-radius: 0 12px 12px 0;
    width: 60px;
    background: var(--primary);
    transition: all 0.3s;
}

.hero-games-section .search-container .btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 0 15px rgba(140, 94, 255, 0.5);
}

.game-card {
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    border-radius: 15px;
    height: 100%;
    background-color: #1a1a2e;
    border: 1px solid var(--border);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.game-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border-color: var(--primary);
}

.game-image-container {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.game-card:hover .game-image {
    transform: scale(1.1);
}

.game-card .card-body {
    background: linear-gradient(180deg, #1a1a2e 0%, #121212 100%);
    padding: 12px 10px;
}

.game-name {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s;
}

.game-name:hover {
    color: var(--primary);
    transform: translateX(3px);
}

/* Pagination Styles */
.pagination {
    gap: 5px;
}

.pagination .page-item .page-link {
    background-color: #1a1a2e;
    border-color: var(--border);
    color: #fff;
    border-radius: 8px;
    transition: all 0.3s;
    padding: 8px 15px;
}

.pagination .page-item .page-link:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary);
    color: #fff;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 10px rgba(140, 94, 255, 0.5);
}

/* Footer Styles */
footer {
    background-color: #0c0c14;
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
    border-top: 1px solid var(--border);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/footer-bg-pattern.png');
    background-size: cover;
    opacity: 0.03;
    pointer-events: none;
}

footer h4, footer h5 {
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.highlight-line {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.highlight-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(140, 94, 255, 0.3);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: all 0.3s;
    font-size: 0.95rem;
    position: relative;
}

.footer-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

footer .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    height: 46px;
    border-radius: 8px 0 0 8px;
}

footer .form-control:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: none;
}
footer .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6); /* Light placeholder for dark background */
    opacity: 1; /* Ensures full visibility */
}

footer .btn {
    border-radius: 0 8px 8px 0;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: none;
}

footer .btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

/* Media Queries for Footer and Games */
@media (max-width: 768px) {
    .hero-games-section {
        height: 280px;
    }
    
    .hero-games-section .hero-content h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .highlight-line {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .hero-games-section .search-container .form-control {
        font-size: 16px;
        height: 45px;
    }
    
    .hero-games-section .search-container .btn {
        height: 45px;
    }
    
    .game-card {
        margin-bottom: 20px;
    }
    
    .game-image-container {
        height: 140px;
    }
}

/* Game Detail Page Styles */
.breadcrumb {
    background-color: rgba(26, 26, 46, 0.6);
    padding: 15px 20px;
    border-radius: 8px;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--primary-light);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.game-banner {
    height: 250px;
    overflow: hidden;
    position: relative;
    border-radius: 10px 10px 0 0;
}

.game-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.game-banner:hover img {
    transform: scale(1.05);
}

.game-stats .badge {
    font-size: 1rem;
    padding: 8px 15px;
    border-radius: 20px;
    background-color: var(--primary);
    transition: all 0.3s;
}

.game-stats .badge:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 0 10px rgba(140, 94, 255, 0.5);
}

.game-rules {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.game-rules h1, .game-rules h2, .game-rules h3, 
.game-rules h4, .game-rules h5, .game-rules h6 {
    color: #fff;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.game-rules ul, .game-rules ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.game-rules li {
    margin-bottom: 0.5rem;
}

.card-header {
    background-color: rgba(26, 26, 46, 0.8);
    border-bottom: 1px solid var(--border);
    padding: 15px 20px;
}

.card-header h5 {
    margin-bottom: 0;
    color: #fff;
    font-weight: 600;
}

.card-header h5 i {
    color: var(--primary);
    margin-right: 8px;
}

/* Improved card styles for game pages */
.game-detail-card {
    background-color: rgba(26, 26, 46, 0.6);
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.game-detail-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

/* Advanced Tournament Page Styles */
.hero-tournaments-section {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #1a1a2e 100%);
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-color-alt));
    opacity: 0.1;
    animation: floatShapes 20s infinite linear;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 80%;
    animation-delay: 10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 15s;
}

.shape-5 {
    width: 140px;
    height: 140px;
    top: 10%;
    right: 30%;
    animation-delay: 8s;
}

@keyframes floatShapes {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.2;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    width: 90%;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.advanced-search-form {
    position: relative;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-input-group:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.search-icon {
    padding: 0 20px;
    color: var(--text-color-muted);
    font-size: 1.1rem;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 20px 0;
    font-size: 1.1rem;
    color: var(--text-color);
    outline: none;
}

.search-input::placeholder {
    color: var(--text-color-muted);
    opacity: 0.8;
}

.search-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-alt) 100%);
    border: none;
    padding: 20px 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn:hover {
    background: linear-gradient(135deg, var(--accent-color-alt) 0%, var(--accent-color) 100%);
    transform: scale(1.05);
}

/* Advanced Tournament Grid Styles */
.tournaments-main-container {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 100vh;
}

.filter-section {
    padding: 4rem 0 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.filter-header {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.filter-subtitle {
    color: var(--text-color-muted);
    font-size: 1.1rem;
    margin: 0;
}

.game-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.filter-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-color-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.filter-pill::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.5s ease;
}

.filter-pill:hover::before {
    left: 100%;
}

.filter-pill:hover {
    color: var(--text-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.filter-pill.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-alt) 100%);
    color: white;
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.filter-pill i {
    font-size: 1rem;
}

.tournaments-grid-section {
    padding: 3rem 0;
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.tournament-card-advanced {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: var(--shadow-md);
}

.tournament-card-advanced:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.tournament-card-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tournament-banner-advanced {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.banner-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tournament-card-advanced:hover .banner-image {
    transform: scale(1.1);
}

.tournament-status-advanced {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.status-badge-advanced {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge-advanced.upcoming {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
    border-color: rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.tournament-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.tournament-content-advanced {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tournament-header {
    margin-bottom: 1rem;
}

.tournament-title-advanced {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.tournament-title-advanced a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tournament-title-advanced a:hover {
    color: var(--accent-color);
}

.tournament-game-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 500;
}

.tournament-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.75rem;
}

.detail-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.detail-content {
    flex: 1;
}

.detail-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-color-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.detail-value {
    display: block;
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

.tournament-organizer-advanced {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    padding: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.organizer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-color);
}

.organizer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.organizer-details {
    flex: 1;
}

.organizer-label-advanced {
    display: block;
    font-size: 0.75rem;
    color: var(--text-color-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.organizer-name-advanced {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 600;
}

.tournament-actions {
    margin-top: auto;
}

.btn-tournament-view {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-alt) 100%);
    border: none;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-tournament-view::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-tournament-view:hover::before {
    left: 100%;
}

.btn-tournament-view:hover {
    background: linear-gradient(135deg, var(--accent-color-alt) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.no-tournaments-found {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.no-tournaments-content {
    text-align: center;
    max-width: 400px;
}

.no-tournaments-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.no-tournaments-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.no-tournaments-subtitle {
    color: var(--text-color-muted);
    margin-bottom: 2rem;
}

.btn-refresh-filters {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-refresh-filters:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.pagination-section {
    padding: 2rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    color: white !important
}
.table-participants {
  --bs-table-bg: transparent;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
}

/* ========================================
   ULTRA-MODERN TOURNAMENT LIST STYLING
   ======================================== */

.tournaments-ultra-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.tournaments-ultra-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(140, 94, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 71, 87, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Tournament Stats Header */
.tournament-stats-header {
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    background: linear-gradient(135deg, rgba(140, 94, 255, 0.03) 0%, rgba(255, 71, 87, 0.03) 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.tournament-stats-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(140, 94, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 71, 87, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.875rem 0.75rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(140, 94, 255, 0.15);
    border-color: rgba(140, 94, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 0.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-alt) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    box-shadow: 0 3px 12px rgba(140, 94, 255, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: 8px;
}

.stat-item:hover .stat-icon {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 4px 15px rgba(140, 94, 255, 0.3);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(140, 94, 255, 0.2);
    line-height: 1;
    margin-bottom: 0.125rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Ultra Tournament Grid */
.tournaments-ultra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.tournament-card-ultra {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.tournament-card-ultra:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
}

.tournament-card-ultra-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Tournament Header Ultra */
.tournament-header-ultra {
    position: relative;
}

.tournament-banner-ultra {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.banner-link-ultra {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-overlay-ultra {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.banner-image-ultra {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tournament-card-ultra:hover .banner-image-ultra {
    transform: scale(1.1);
}

.tournament-status-ultra {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
}

.status-badge-ultra {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: var(--text-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.status-badge-ultra.upcoming {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
    border-color: rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.status-badge-ultra.live {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.2), rgba(255, 87, 34, 0.1));
    border-color: rgba(255, 87, 34, 0.3);
    color: #ff5722;
    animation: pulse 2s infinite;
}

.status-badge-ultra.completed {
    background: linear-gradient(135deg, rgba(158, 158, 158, 0.2), rgba(158, 158, 158, 0.1));
    border-color: rgba(158, 158, 158, 0.3);
    color: #9e9e9e;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.tournament-gradient-overlay-ultra {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.tournament-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.tournament-card-ultra:hover .tournament-hover-overlay {
    opacity: 1;
}

.hover-content {
    color: white;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.hover-content i {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Tournament Quick Info */
.tournament-quick-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    z-index: 3;
}

.prize-pool, .participants-count {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 0.7rem;
    font-weight: 600;
}

.prize-pool i, .participants-count i {
    color: var(--accent-color);
}

.prize-amount, .participants-number {
    font-weight: 700;
    color: var(--accent-color);
}

/* Tournament Content Ultra */
.tournament-content-ultra {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tournament-title-section {
    margin-bottom: 1rem;
}

.tournament-title-ultra {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.tournament-title-ultra a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tournament-title-ultra a:hover {
    color: var(--accent-color);
}

.tournament-game-badge-ultra {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 500;
}

.game-icon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    object-fit: cover;
}

/* Tournament Details Ultra */
.tournament-details-ultra {
    margin-bottom: 1rem;
}

.detail-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.detail-item-ultra {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
}

.detail-icon-ultra {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    color: var(--accent-color);
    font-size: 0.7rem;
}

.detail-content-ultra {
    flex: 1;
}

.detail-label-ultra {
    display: block;
    font-size: 0.65rem;
    color: var(--text-color-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1px;
}

.detail-value-ultra {
    display: block;
    font-size: 0.8rem;
    color: var(--text-color);
    font-weight: 600;
}

/* Tournament Organizer Ultra */
.tournament-organizer-ultra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
}

.organizer-info-ultra {
    display: flex;
    align-items: center;
    gap: 8px;
}

.organizer-avatar-ultra {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-color);
}

.organizer-avatar-ultra img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.organizer-details-ultra {
    flex: 1;
}

.organizer-label-ultra {
    display: block;
    font-size: 0.65rem;
    color: var(--text-color-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1px;
}

.organizer-name-ultra {
    display: block;
    font-size: 0.8rem;
    color: var(--text-color);
    font-weight: 600;
}

.tournament-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-stars {
    display: flex;
    gap: 1px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 0.7rem;
}

.rating-text {
    font-size: 0.7rem;
    color: var(--text-color-muted);
    font-weight: 600;
}

/* Tournament Actions Ultra */
.tournament-actions-ultra {
    margin-top: auto;
    display: flex;
    gap: 0.75rem;
}

.btn-tournament-primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-alt) 100%);
    border: none;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-tournament-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-tournament-primary:hover::before {
    left: 100%;
}

.btn-tournament-primary:hover {
    background: linear-gradient(135deg, var(--accent-color-alt) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
    text-decoration: none;
}

.btn-tournament-secondary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-tournament-secondary:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* No Tournaments Ultra */
.no-tournaments-ultra {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.no-tournaments-content-ultra {
    text-align: center;
    max-width: 500px;
}

.no-tournaments-icon-ultra {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.no-tournaments-title-ultra {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.no-tournaments-subtitle-ultra {
    color: var(--text-color-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.no-tournaments-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-refresh-filters-ultra, .btn-create-tournament-ultra {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-refresh-filters-ultra:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    text-decoration: none;
}

.btn-create-tournament-ultra {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-alt) 100%);
    color: white;
    border-color: var(--accent-color);
}

.btn-create-tournament-ultra:hover {
    background: linear-gradient(135deg, var(--accent-color-alt) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

/* Responsive Design for Ultra Tournament List */
@media (max-width: 1200px) {
    .tournaments-ultra-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tournaments-ultra-section {
        padding: 1.5rem 0;
    }
    
    .tournament-stats-header {
        margin-bottom: 1.25rem;
        padding: 0.75rem 0;
        border-radius: 14px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .stat-item {
        padding: 0.75rem 0.5rem;
        border-radius: 10px;
    }
    
    .stat-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        margin-bottom: 0.375rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.25px;
    }
}

@media (max-width: 480px) {
    .tournament-stats-header {
        margin-bottom: 1rem;
        padding: 0.5rem 0;
        border-radius: 12px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.375rem;
        padding: 0 0.25rem;
    }
    
    .stat-item {
        padding: 0.625rem 0.375rem;
        border-radius: 8px;
    }
    
    .stat-icon {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
        letter-spacing: 0.125px;
    }
    
    .tournaments-ultra-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0 10px;
    }
    
    .tournament-card-ultra {
        border-radius: 16px;
    }
    
    .tournament-banner-ultra {
        height: 140px;
    }
    
    .tournament-content-ultra {
        padding: 0.75rem;
    }
    
    .tournament-title-ultra {
        font-size: 1.1rem;
    }
    
    .detail-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tournament-actions-ultra {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .no-tournaments-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-refresh-filters-ultra, .btn-create-tournament-ultra {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .tournament-banner-ultra {
        height: 120px;
    }
    
    .tournament-content-ultra {
        padding: 0.5rem;
    }
    
    .tournament-title-ultra {
        font-size: 1rem;
    }
    
    .btn-tournament-primary, .btn-tournament-secondary {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* ========================================
   GENERIC HERO STYLING SYSTEM
   ======================================== */

/* Base Hero Section */
.hero-section {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #1a1a2e 100%);
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Animated Background Elements */
.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-color-alt));
    opacity: 0.1;
    animation: heroFloatShapes 20s infinite linear;
}

.hero-shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.hero-shape:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 80%;
    animation-delay: 10s;
}

.hero-shape:nth-child(4) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 15s;
}

.hero-shape:nth-child(5) {
    width: 140px;
    height: 140px;
    top: 10%;
    right: 30%;
    animation-delay: 8s;
}

@keyframes heroFloatShapes {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.2;
    }
}

/* Hero Overlay */
.hero-overlay-generic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

/* Generic Hero Content */
.hero-content-generic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    width: 90%;
    padding: 0 20px;
}

.hero-title-generic {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-alt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-generic {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
    color: var(--text-color-muted);
}

.hero-description-generic {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Search Container */
.hero-search-container {
    max-width: 600px;
    margin: 0 auto;
}

.hero-search-form {
    position: relative;
}

.hero-search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-search-input-group:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.hero-search-icon {
    padding: 0 20px;
    color: var(--text-color-muted);
    font-size: 1.1rem;
}

.hero-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 20px 0;
    font-size: 1.1rem;
    color: var(--text-color);
    outline: none;
}

.hero-search-input::placeholder {
    color: var(--text-color-muted);
    opacity: 0.8;
}

.hero-search-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-alt) 100%);
    border: none;
    padding: 20px 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-search-btn:hover {
    background: linear-gradient(135deg, var(--accent-color-alt) 0%, var(--accent-color) 100%);
    transform: scale(1.05);
}

/* Hero Action Buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-alt) 100%);
    border: none;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-color-alt) 0%, var(--accent-color) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
    text-decoration: none;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-secondary:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

/* Page-Specific Hero Variations */
.hero-teams-section {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #1a1a2e 100%);
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-games-section {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #1a1a2e 100%);
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-news-section {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #1a1a2e 100%);
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-leaderboard-section {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #1a1a2e 100%);
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-contact-section {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #1a1a2e 100%);
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Responsive Design for Generic Hero */
@media (max-width: 768px) {
    .hero-section,
    .hero-teams-section,
    .hero-games-section,
    .hero-news-section,
    .hero-leaderboard-section,
    .hero-contact-section {
        min-height: 60vh;
    }
    
    .hero-title-generic {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-generic {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description-generic {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-search-input-group {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .hero-search-input {
        padding: 15px 20px;
        text-align: center;
    }
    
    .hero-search-btn {
        padding: 15px 20px;
        border-radius: 0 0 20px 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title-generic {
        font-size: 2rem;
    }
    
    .hero-subtitle-generic {
        font-size: 1rem;
    }
    
    .hero-description-generic {
        font-size: 0.9rem;
    }
}

.tournament-detail-banner {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.tournament-detail-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tournament-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.tournament-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.meta-item i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.tournament-description h5, .tournament-rules h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
}

.organizer-logo-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.organizer-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.organizer-name {
    font-weight: 600;
    margin-top: 5px;
}

.registration-info {
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: rgba(255, 255, 255, 0.7);
}

.social-share-buttons {
    display: flex;
    justify-content: space-between;
}

.social-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s;
}

.social-share-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.social-share-btn.facebook:hover {
    background-color: #3b5998;
    box-shadow: 0 5px 15px rgba(59, 89, 152, 0.4);
}

.social-share-btn.twitter:hover {
    background-color: #1da1f2;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

.social-share-btn.discord:hover {
    background-color: #7289da;
    box-shadow: 0 5px 15px rgba(114, 137, 218, 0.4);
}

.social-share-btn.whatsapp:hover {
    background-color: #25d366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Teams Page Styles */
.hero-teams-section {
    position: relative;
    height: 350px;
    background-image: url('/assets/images/games-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    margin-bottom: 30px;
}

.hero-teams-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero-teams-section .hero-content {
    position:absolute;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.team-profile-card {
    background-color: rgba(26, 26, 46, 0.6);
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.team-profile-banner {
    height: 150px;
    overflow: hidden;
}

.team-profile-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-profile-avatar {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid var(--primary);
    background-color: #121212;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.team-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-profile-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-profile-game .game-badge {
    background-color: rgba(140, 94, 255, 0.2);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.team-profile-stats {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    margin: 15px 0;
}

.stats-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stats-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.team-social-card, .team-detail-card {
    background-color: rgba(26, 26, 46, 0.6);
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.social-link.discord:hover {
    background-color: #7289da;
}

.social-link.twitter:hover {
    background-color: #1da1f2;
}

.social-link.twitch:hover {
    background-color: #9146ff;
}

.team-members-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.team-member-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    position: relative;
}

.team-member-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.member-avatar {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.captain-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.captain-badge i {
    font-size: 10px;
    color: #fff;
}

.member-info {
    flex: 1;
}

.member-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.member-role {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.member-since {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.team-tournaments {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tournament-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.tournament-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.tournament-logo {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
}

.tournament-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tournament-info {
    flex: 1;
}

.tournament-name {
    font-weight: 600;
    font-size: 1rem;
}

.tournament-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.tournament-result .badge {
    padding: 5px 10px;
    font-weight: 500;
}

/* Responsive Design for Tournaments */
@media (max-width: 1200px) {
    .tournaments-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-tournaments-section {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .search-input-group {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .search-input {
        padding: 15px 20px;
        text-align: center;
    }
    
    .search-btn {
        padding: 15px 20px;
        border-radius: 0 0 20px 20px;
    }
    
    .filter-section {
        padding: 2rem 0 1rem;
    }
    
    .filter-title {
        font-size: 1.5rem;
    }
    
    .game-filter-pills {
        gap: 0.5rem;
    }
    
    .filter-pill {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .tournaments-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 15px;
    }
    
    .tournament-card-advanced {
        border-radius: 15px;
    }
    
    .tournament-banner-advanced {
        height: 180px;
    }
    
    .tournament-content-advanced {
        padding: 1rem;
    }
    
    .tournament-title-advanced {
        font-size: 1.1rem;
    }
    
    .detail-item {
        margin-bottom: 0.5rem;
    }
    
    .detail-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .organizer-avatar {
        width: 35px;
        height: 35px;
    }
    
    .pagination-section {
        padding: 1rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .filter-pill {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .tournament-banner-advanced {
        height: 160px;
    }
    
    .tournament-content-advanced {
        padding: 0.75rem;
    }
    
    .tournament-title-advanced {
        font-size: 1rem;
    }
    
    .btn-tournament-view {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}
    
    .team-member-item {
        flex-direction: column;
        text-align: center;
    }
    
    .member-avatar {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .game-filter-buttons {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .game-filter-buttons .btn {
        flex-shrink: 0;
    }
    
    .meta-item {
        font-size: 0.85rem;
    }
}

/* News/Blog Styles */
.hero-news-section {
    position: relative;
    height: 350px;
    background-image: url('/assets/images/games-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    margin-bottom: 30px;
}

.hero-news-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero-news-section .hero-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.news-section {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 100%);
    position: relative;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/news-pattern.png');
    background-size: cover;
    opacity: 0.05;
    pointer-events: none;
}

.news-card {
    background-color: rgba(26, 26, 46, 0.6);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    border: 1px solid var(--border);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.news-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.news-image-container {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news-card-large .news-image-container {
    height: 280px;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-image {
    transform: scale(1.1);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 20, 0.2), rgba(10, 10, 20, 0.8));
    z-index: 1;
}

.news-content {
    padding: 20px;
    position: relative;
}

.news-card-large .news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(10, 10, 20, 0.9), rgba(10, 10, 20, 0));
    z-index: 2;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.news-date i, .news-category i {
    color: var(--primary);
    margin-right: 5px;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-card-large .news-title {
    font-size: 1.5rem;
}

.news-title a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.news-title a:hover {
    color: var(--primary);
}

.news-excerpt {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-detail-container {
    background-color: rgba(26, 26, 46, 0.6);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.blog-detail-banner {
    height: 400px;
    position: relative;
}

.blog-detail-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(26, 26, 46, 1), transparent);
}

.blog-detail-content {
    padding: 30px;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.blog-meta-item i {
    color: var(--primary);
    margin-right: 7px;
}

.blog-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content h2, .blog-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #fff;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.blog-tags {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(140, 94, 255, 0.15);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.blog-tag:hover {
    background-color: rgba(140, 94, 255, 0.3);
    color: #fff;
    text-decoration: none;
}

.blog-author {
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-bio {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.related-posts-section {
    margin-top: 50px;
}

.related-posts-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.related-posts-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
}

/* Contact Page Styles */
.hero-contact-section {
    position: relative;
    height: 350px;
    background-image: url('/assets/images/games-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    margin-bottom: 30px;
}

.hero-contact-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero-contact-section .hero-content {
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.contact-section {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 100%);
    position: relative;
    padding: 50px 0;
}

.contact-card {
    background-color: rgba(26, 26, 46, 0.6);
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(140, 94, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
    font-size: 20px;
}

.contact-text {
    flex: 1;
}

.contact-text h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.3s;
}

.contact-social a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.contact-form .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(140, 94, 255, 0.25);
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* About Page Styles */
.hero-about-section {
    position: relative;
    height: 350px;
    background-image: url('/assets/images/games-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    margin-bottom: 30px;
}

.hero-about-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero-about-section .hero-content {
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.about-section {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 100%);
    position: relative;
    padding: 50px 0;
}

.about-card {
    display: flex;
    align-items: center;
    background-color: rgba(26, 26, 46, 0.6);
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.about-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image>img{
    width: 300px;
}

.breadcrumb-item+.breadcrumb-item::before{
    color: white;
}

.about-content {
    padding: 30px;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.team-member-card {
    background-color: rgba(26, 26, 46, 0.6);
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    height: 100%;
}

.team-member-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.team-member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 20px auto;
    border: 3px solid var(--primary);
}

.team-member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info {
    padding: 0 20px 20px;
}

.team-member-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-member-position {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-member-bio {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.team-member-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.3s;
}

.team-member-social a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

/* Additional Media Queries for New Sections */
@media (max-width: 768px) {
    .hero-news-section, .hero-contact-section, .hero-about-section {
        height: 280px;
    }
    
    .news-card-large .news-image-container {
        height: 220px;
    }
    
    .news-card-large .news-content {
        position: relative;
        background: none;
    }
    
    .blog-detail-banner {
        height: 250px;
    }
    
    .blog-title {
        font-size: 1.8rem;
    }
    
    .blog-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin: 0 auto 15px;
    }
    
    .contact-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 0 15px;
    }
}

@media (max-width: 576px) {
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .blog-detail-content {
        padding: 20px 15px;
    }
}

/* Newsletter & Social Section */
.newsletter-social-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #121212 100%);
}

.section-bg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(140, 94, 255, 0.1);
    filter: blur(50px);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    background: rgba(255, 255, 255, 0.05);
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(140, 94, 255, 0.05);
}

.newsletter-card, .social-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.newsletter-card::before, .social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.newsletter-card:hover::before, .social-card:hover::before {
    transform: translateX(100%);
}

.newsletter-card:hover, .social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(140, 94, 255, 0.3);
}

.newsletter-icon, .social-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, #7a4dff 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: white;
    box-shadow: 0 10px 20px rgba(140, 94, 255, 0.3);
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.newsletter-card:hover .newsletter-icon, .social-card:hover .social-icon {
    transform: rotate(0deg) scale(1.1);
}

.newsletter-title, .social-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fff, #8c5eff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.newsletter-subtitle, .social-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 25px;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 16px;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(140, 94, 255, 0.2);
}

.newsletter-submit {
    position: absolute;
    right: 5px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #7a4dff 100%);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(140, 94, 255, 0.3);
}

.newsletter-submit:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(140, 94, 255, 0.4);
}

.newsletter-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.benefit-item i {
    color: var(--primary);
}

.social-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.social-icon-item {
    text-decoration: none;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
}

.social-icon-item:hover {
    transform: translateY(-5px);
}

.social-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon-item:hover .social-icon-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, #7a4dff 100%);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(140, 94, 255, 0.3);
}

.social-platform-name {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    font-weight: 500;
}

@media (max-width: 768px) {
    .newsletter-card, .social-card {
        padding: 30px;
    }

    .newsletter-title, .social-title {
        font-size: 28px;
    }

    .social-icons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   MODERN GAMING SOCIAL SECTION
   ======================================== */

.social-card-modern {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(20, 20, 40, 0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(140, 94, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.social-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(140, 94, 255, 0.2);
    border-color: rgba(140, 94, 255, 0.4);
}

/* Animated Background Effects */
.social-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.social-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 94, 255, 0.1) 0%, transparent 70%);
    animation: floatCircles 6s ease-in-out infinite;
}

.circle-1 {
    width: 150px;
    height: 150px;
    top: -30px;
    right: -30px;
    animation-delay: 0s;
}

.circle-2 {
    width: 100px;
    height: 100px;
    bottom: -20px;
    left: -20px;
    background: radial-gradient(circle, rgba(255, 71, 87, 0.1) 0%, transparent 70%);
    animation-delay: 2s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation-delay: 4s;
}

@keyframes floatCircles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

/* Header Section */
.social-header-modern {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.social-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-alt) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(140, 94, 255, 0.3);
}

.icon-glow-effect {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-alt) 100%);
    border-radius: 19px;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s ease;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.social-card-modern:hover .social-icon-modern {
    transform: scale(1.05) rotate(5deg);
}

.social-card-modern:hover .icon-glow-effect {
    opacity: 0.8;
}

.social-text-modern {
    flex: 1;
}

.social-title-modern {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.title-gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.social-subtitle-modern {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-subtitle-modern i {
    color: var(--accent-color);
    animation: rocketBounce 2s ease-in-out infinite;
}

@keyframes rocketBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

/* Social Links */
.social-links-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.social-link-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 0;
    flex-shrink: 0;
}

.social-link-bg-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--social-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.social-link-content-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.social-link-icon-modern {
    width: 35px;
    height: 35px;
    background: var(--social-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link-text-modern {
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link-glow-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--social-color);
    opacity: 0;
    border-radius: 12px;
    transition: opacity 0.3s ease;
    filter: blur(15px);
}

.social-link-modern:hover {
    transform: translateY(-3px);
    text-decoration: none;
    border-color: var(--social-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-link-modern:hover .social-link-bg-modern {
    opacity: 0.1;
}

.social-link-modern:hover .social-link-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-link-modern:hover .social-link-text-modern {
    color: white;
}

.social-link-modern:hover .social-link-glow-modern {
    opacity: 0.2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-card-modern {
        padding: 1.5rem;
    }
    
    .social-header-modern {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .social-icon-modern {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .social-title-modern {
        font-size: 1.5rem;
    }
    
    .social-subtitle-modern {
        font-size: 0.9rem;
    }
    
    .social-links-modern {
        gap: 0.75rem;
        justify-content: center;
    }
    
    .social-link-modern {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .social-link-icon-modern {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .social-card-modern {
        padding: 1.25rem;
    }
    
    .social-title-modern {
        font-size: 1.3rem;
    }
    
    .social-links-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link-modern {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* ========================================
   ADVANCED HERO BANNER SECTION
   ======================================== */

.hero-banner-section-advanced {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 20px;
    margin-left: calc(-50vw + 50%);
}

.hero-banner-slider-advanced {
    width: 100%;
    height: 100%;
}

.hero-banner-slider-advanced .swiper-wrapper {
    height: 100%;
}

.hero-banner-slider-advanced .swiper-slide {
    height: 100%;
}

.hero-banner-slide-advanced {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-bg-advanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-banner-img-advanced {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-width: 100%;
    min-height: 100%;
    transition: transform 0.8s ease;
}

.hero-banner-overlay-advanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(20, 20, 40, 0.8) 50%, 
        rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-banner-content-advanced {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-banner-title-advanced {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.5s both;
    line-height: 1.1;
}

.hero-banner-subtitle-advanced {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.7s both;
    max-width: 600px;
    line-height: 1.6;
}

.hero-banner-stats-advanced {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.9s both;
    flex-wrap: wrap;
}

.stat-item-advanced {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
}

.stat-item-advanced:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.stat-number-advanced {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(140, 94, 255, 0.3);
}

.stat-label-advanced {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-banner-buttons-advanced {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.btn-primary-advanced {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-alt) 100%);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(140, 94, 255, 0.3);
}

.btn-primary-advanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(140, 94, 255, 0.4);
    color: white;
    text-decoration: none;
}

.btn-outline-advanced {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline-advanced:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
}

/* Swiper Navigation */
.swiper-pagination-advanced {
    bottom: 30px !important;
}

.swiper-pagination-advanced .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.swiper-pagination-advanced .swiper-pagination-bullet-active {
    background: var(--accent-color);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(140, 94, 255, 0.5);
}

.swiper-button-next-advanced,
.swiper-button-prev-advanced {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    transition: all 0.3s ease;
}

.swiper-button-next-advanced:hover,
.swiper-button-prev-advanced:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.swiper-button-next-advanced:after,
.swiper-button-prev-advanced:after {
    font-size: 18px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-banner-section-advanced {
        height: calc(100vh - 80px);
        min-height: calc(100vh - 80px);
        margin-top: 80px;
    }
    
    .hero-banner-title-advanced {
        font-size: 2.5rem;
    }
    
    .hero-banner-subtitle-advanced {
        font-size: 1.1rem;
    }
    
    .hero-banner-stats-advanced {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-item-advanced {
        padding: 1rem 1.5rem;
    }
    
    .stat-number-advanced {
        font-size: 2rem;
    }
    
    .hero-banner-buttons-advanced {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-advanced,
    .btn-outline-advanced {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .swiper-button-next-advanced,
    .swiper-button-prev-advanced {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next-advanced:after,
    .swiper-button-prev-advanced:after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-banner-title-advanced {
        font-size: 2rem;
    }
    
    .hero-banner-stats-advanced {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item-advanced {
        padding: 0.75rem 1rem;
    }
    
    .stat-number-advanced {
        font-size: 1.8rem;
    }
}


/* ========================================
   COMMUNITY GAMING INSPIRED TOURNAMENTS SECTION
   ======================================== */

.tournaments-section-community {
    background: #0a0a0a;
    position: relative;
}

.section-header-community {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-title-community {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.tournaments-grid-community {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.tournament-card-community {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tournament-card-community:hover {
    transform: translateY(-5px);
    border-color: rgba(140, 94, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tournament-header-community {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.game-badge-community {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(140, 94, 255, 0.1);
    border: 1px solid rgba(140, 94, 255, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
}

.tournament-status-community {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-upcoming {
    background: #4ade80;
}

.status-live {
    background: #ef4444;
    animation: pulse 1s infinite;
}

.status-completed {
    background: #6b7280;
    animation: none;
}

.status-cancelled {
    background: #f59e0b;
    animation: none;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.tournament-content-community {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tournament-title-community {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.tournament-title-community a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tournament-title-community a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.tournament-details-community {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.detail-item i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.tournament-host-community {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.host-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.host-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.host-name {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
}

.tournament-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.tournament-time i {
    color: var(--accent-color);
}

.tournament-prize-community {
    text-align: center;
    background: rgba(140, 94, 255, 0.1);
    border: 1px solid rgba(140, 94, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
}

.prize-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.prize-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header-community {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .section-title-community {
        font-size: 2rem;
    }
    
    .tournaments-grid-community {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tournament-card-community {
        padding: 1.25rem;
    }
    
    .tournament-details-community {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .tournament-host-community {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* ========================================
   MODERN GAME CATEGORIES SECTION
   ======================================== */

.game-categories-ultra {
    padding: 4rem 0;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.game-categories-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(140, 94, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 71, 87, 0.1) 0%, transparent 50%);
    z-index: 0;
}

/* Games Grid */
.games-grid-ultra {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.game-card-ultra {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 180px;
}

.game-card-bg-ultra {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.game-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--game-color) 0%, transparent 70%);
    opacity: 0.1;
    animation: floatShapesUltra 8s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: -30px;
    right: -30px;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    bottom: -20px;
    left: -20px;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes floatShapesUltra {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.game-icon-ultra {
    width: 60px;
    height: 60px;
    background: var(--game-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.icon-pulse-ultra {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--game-color);
    border-radius: 17px;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.4s ease;
    animation: iconPulseUltra 2s ease-in-out infinite;
}

@keyframes iconPulseUltra {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.game-info-ultra {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.game-title-ultra {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.game-subtitle-ultra {
    font-size: 0.85rem;
    color: var(--text-color-muted);
    margin: 0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.game-arrow-ultra {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-color-muted);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(5px);
    z-index: 2;
}

.game-glow-ultra {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--game-color);
    opacity: 0;
    border-radius: 16px;
    transition: opacity 0.4s ease;
    filter: blur(25px);
    z-index: 1;
}

.game-card-ultra:hover {
    transform: translateY(-5px);
    text-decoration: none;
    border-color: var(--game-color);
    box-shadow: var(--shadow-lg);
}

.game-card-ultra:hover .game-icon-ultra {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.game-card-ultra:hover .icon-pulse-ultra {
    opacity: 0.8;
}

.game-card-ultra:hover .game-glow-ultra {
    opacity: 0.3;
}

.game-card-ultra:hover .game-title-ultra {
    color: var(--game-color);
}

.game-card-ultra:hover .game-subtitle-ultra {
    color: var(--text-color);
}

.game-card-ultra:hover .game-arrow-ultra {
    opacity: 1;
    transform: translateX(0);
    background: var(--game-color);
    color: white;
}

/* View All Button */
.btn-view-all-ultra {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-alt) 100%);
    border: none;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
}

.btn-text-ultra {
    position: relative;
    z-index: 2;
}

.btn-icon-ultra {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-glow-ultra {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-alt) 100%);
    opacity: 0;
    border-radius: 50px;
    transition: opacity 0.3s ease;
    filter: blur(15px);
}

.btn-view-all-ultra:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-view-all-ultra:hover .btn-icon-ultra {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(3px);
}

.btn-view-all-ultra:hover .btn-glow-ultra {
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-categories-ultra {
        padding: 3rem 0;
    }
    
    .games-grid-ultra {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .game-card-ultra {
        padding: 1.25rem;
        min-height: 160px;
    }
    
    .game-icon-ultra {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .game-title-ultra {
        font-size: 1.1rem;
    }
    
    .game-subtitle-ultra {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .games-grid-ultra {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .game-card-ultra {
        padding: 1rem;
        min-height: 140px;
    }
    
    .game-icon-ultra {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .btn-view-all-ultra {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}


.swiper-slide {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.swiper-slide-active {
    visibility: visible;
    opacity: 1;
    z-index: 1;
}

/* Follow section styles */
.social-icon-large {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin: 0 10px;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-icon-large:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.follow-section {
    position: relative;
}

.follow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.follow-section .container {
    position: relative;
    z-index: 1;
}

/* Newsletter & Social Section Styles */
.newsletter-social-section {
    position: relative;
    overflow: hidden;
}

.section-bg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(140, 94, 255, 0.1);
    filter: blur(50px);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    background: rgba(255, 255, 255, 0.05);
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(140, 94, 255, 0.05);
}

.newsletter-card, .social-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.newsletter-card::before, .social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.newsletter-card:hover::before, .social-card:hover::before {
    transform: translateX(100%);
}

.newsletter-card:hover, .social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(140, 94, 255, 0.3);
}

.newsletter-icon, .social-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #7a4dff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: white;
    box-shadow: 0 10px 20px rgba(140, 94, 255, 0.3);
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.newsletter-card:hover .newsletter-icon, .social-card:hover .social-icon {
    transform: rotate(0deg) scale(1.1);
}

.newsletter-title, .social-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fff, #8c5eff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.newsletter-subtitle, .social-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 25px;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 16px;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(140, 94, 255, 0.2);
}

.newsletter-submit {
    position: absolute;
    right: 5px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #7a4dff);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(140, 94, 255, 0.3);
}

.newsletter-submit:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(140, 94, 255, 0.4);
}

.newsletter-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.benefit-item i {
    color: var(--primary-color);
}

.social-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.social-icon-item {
    text-decoration: none;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
}

.social-icon-item:hover {
    transform: translateY(-5px);
}

.social-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon-item:hover .social-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), #7a4dff);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(140, 94, 255, 0.3);
}

.social-platform-name {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    font-weight: 500;
}


@media (max-width: 768px) {
    .newsletter-card, .social-card {
        padding: 30px;
    }

    .newsletter-title, .social-title {
        font-size: 28px;
    }

    .social-icons-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .social-stats {
        flex-direction: column;
        gap: 15px;
    }
}

.hero-leaderboard-section {
    background: url("{{ asset('assets_front/images/leaderboard-bg.jpg') }}") no-repeat center center/cover;
    height: 250px;
    position: relative;
}
.hero-leaderboard-section .overlay {
    background: rgba(0, 0, 0, 0.7);
}
.hero-leaderboard-section .hero-content h1 {
    font-size: 3rem;
    color: #fff;
}
.hero-leaderboard-section .hero-content p {
    color: #ccc;
    font-size: 1.2rem;
}

/* Leaderboard Container */
.leaderboard-card {
    background: #1e1e2f;
}

/* Header + Row Grid */
.leaderboard-header,
.leaderboard-row {
    display: grid;
    grid-template-columns: 80px 1fr 120px; /* Rank | Player | Points */
    align-items: center;
}

/* Header Row */
.leaderboard-header {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    color: #fff;
    border-bottom: 2px solid rgba(255,255,255,0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px;
}

/* Data Rows */
.leaderboard-row {
    background: rgba(255,255,255,0.05);
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 6px;
    transition: transform 0.2s ease, background 0.2s ease;
}
.leaderboard-row:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

/* Rank Column */
.rank-badge {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

/* Player / Team Info */
.player-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.player-info img {
    border-radius: 50%;
    border: 2px solid #444;
    width: 45px;
    height: 45px;
}
.player-info span {
    font-weight: 600;
    font-size: 1rem;
}

/* Points Badge */
.points-badge {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
    text-align: right;
    display: inline-block;
    min-width: 70px;
}
/* Hide Rank column on mobile */
/* Hide Rank column + heading on mobile */
/* Mobile adjustments */
@media (max-width: 768px) {
    /* Change grid: remove Rank column */
    .leaderboard-header,
    .leaderboard-row {
        grid-template-columns: 1fr 120px; /* Player | Points */
    }

    /* Hide rank badge */
    .rank-badge {
        display: none !important;
    }

    /* Hide the "Rank" header */
    .leaderboard-header span:first-child {
        display: none !important;
    }

    /* Adjust margins: ms-5 → ms-3 */
    .leaderboard-header .ms-5,
    .leaderboard-row .ms-5 {
        margin-left: 1rem !important; /* Bootstrap ms-3 = 1rem */
    }
}

/* ========================================
   INDEX.BLADE.PHP STYLES - MOVED FROM INLINE
   ======================================== */

/* Custom Animation Styles */
:root {
    --animation-duration: 0.6s;
    --animation-delay: 0.1s;
    --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Hero Banner Section with Slider */
.hero-banner-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 20px; /* Push section below fixed navbar */
    margin-left: calc(-50vw + 50%);
}

.hero-banner-slider {
    width: 100%;
    height: 100%;
}

.hero-banner-slider .swiper-wrapper {
    height: 100%;
}

.hero-banner-slider .swiper-slide {
    height: 100%;
}

.hero-banner-slide {
    position: relative;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    min-width: 100%;
    min-height: 100%;
}

.hero-banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-banner-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-banner-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    width: 100%;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.hero-banner-buttons .btn {
    min-width: 200px;
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    transition: all 0.4s ease;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-banner-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-banner-buttons .btn-primary {
    background: linear-gradient(135deg, #8c5eff 0%, #ff6b6b 100%);
    border: none;
}

.hero-banner-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-banner-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

/* Slider Navigation Styles */
.hero-banner-slider .swiper-pagination {
    bottom: 30px;
    z-index: 20;
}

.hero-banner-slider .swiper-pagination-bullet {
    display: none;
}

.hero-banner-slider .swiper-pagination-bullet-active {
    background: #8c5eff;
    transform: scale(1.2);
}

.hero-banner-slider .swiper-button-next,
.hero-banner-slider .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-banner-slider .swiper-button-next:hover,
.hero-banner-slider .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.hero-banner-slider .swiper-button-next:after,
.hero-banner-slider .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* Game Categories Section - Exact Image Design */
.game-categories-section {
    background: #0a0a0a;
    padding: 60px 0;
    position: relative;
}

.games-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    padding: 0;
}

.game-item:hover {
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

.game-icon-purple {
    width: 40px;
    height: 40px;
    background: #8c5eff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.game-item:hover .game-icon-purple {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(140, 94, 255, 0.3);
}

.game-text {
    font-size: 1rem;
    font-weight: 400;
    color: white;
    text-align: center;
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Game Categories Animations */
.game-categories {
    animation: gameCategoriesSlide 1s ease-out 1.5s both;
}

.game-category {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.game-category:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(140, 94, 255, 0.3);
}

/* Tournament Cards Animations - Slide from bottom with bounce */
.tournament-card {
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateY(0) scale(1);
    opacity: 1;
}

.tournament-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(140, 94, 255, 0.3);
}

.tournament-card[data-aos] {
    opacity: 0;
    transform: translateY(80px) scale(0.8);
}

.tournament-card[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Team Cards Animations - Slide from left with rotation */
.team-card {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1) rotate(0deg);
}

.team-card:hover {
    transform: translateY(-12px) scale(1.05) rotate(2deg);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.25);
}

.team-card[data-aos] {
    opacity: 0;
    transform: translateX(-60px) rotate(-5deg);
}

.team-card[data-aos].aos-animate {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

/* Feature Cards Animations - Flip and scale effect */
.feature-card {
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0) perspective(1000px) rotateX(0deg);
    transform-style: preserve-3d;
}

.feature-card:hover {
    transform: translateY(-15px) perspective(1000px) rotateX(5deg) scale(1.02);
    box-shadow: 0 25px 50px rgba(140, 94, 255, 0.2);
}

.feature-card[data-aos] {
    opacity: 0;
    transform: translateY(50px) perspective(1000px) rotateX(90deg) scale(0.8);
}

.feature-card[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) perspective(1000px) rotateX(0deg) scale(1);
}

.feature-icon {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-card:hover .feature-icon {
    transform: scale(1.3) rotate(360deg);
    color: #8c5eff;
    text-shadow: 0 0 20px rgba(140, 94, 255, 0.5);
}

/* News Cards Animations - Slide from right with skew */
.news-card {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateY(0) skew(0deg);
}

.news-card:hover {
    transform: translateY(-10px) skew(-2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.news-card[data-aos] {
    opacity: 0;
    transform: translateX(60px) skew(10deg);
}

.news-card[data-aos].aos-animate {
    opacity: 1;
    transform: translateX(0) skew(0deg);
}

/* App Download Section Animations - Wave and float effect */
.app-download-section {
    position: relative;
    overflow: hidden;
}

.app-content {
    animation: waveInLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.app-mockup-container {
    animation: floatInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s both;
}

.app-feature {
    animation: bounceInUp 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

.app-badge {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: scale(1) rotate(0deg);
}

.app-badge:hover {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(140, 94, 255, 0.5));
}

/* Partners Section Animations - Zoom and rotate effect */
.partner-logo {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(100%) opacity(0.7);
    transform: scale(1) rotate(0deg);
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 10px 25px rgba(140, 94, 255, 0.3);
}

/* CTA Section Animations */
.cta-section {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.pulse-button {
    animation: pulse 2s infinite;
}

/* Social Icons Animations */
.social-icon-item {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.social-icon-item:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-icon-wrapper {
    transition: all 0.3s ease;
}

.social-icon-item:hover .social-icon-wrapper {
    background: linear-gradient(135deg, #8c5eff, #ff6b6b);
    box-shadow: 0 5px 15px rgba(140, 94, 255, 0.4);
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(140, 94, 255, 0.3);
    border-top: 3px solid #8c5eff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Section fade-in effect - Make sections visible by default */
section {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
    position: relative;
    z-index: 1;
}

section.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Fix tournament section visibility */
.tournaments-section {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    margin-top: 0;
    padding-top: 60px;
}

/* Fix hero section z-index */
.hero-slider {
    position: relative;
    z-index: 1;
}

/* Staggered Animation Delays */
.tournament-card:nth-child(1) { animation-delay: 0.1s; }
.tournament-card:nth-child(2) { animation-delay: 0.2s; }
.tournament-card:nth-child(3) { animation-delay: 0.3s; }
.tournament-card:nth-child(4) { animation-delay: 0.4s; }

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
.team-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Keyframe Animations */
@keyframes heroContentSlide {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTitleSlide {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroSubtitleSlide {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroButtonsSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gameCategoriesSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes waveInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px) rotate(-10deg);
    }
    50% {
        transform: translateX(20px) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes floatInRight {
    0% {
        opacity: 0;
        transform: translateX(100px) translateY(50px) rotate(10deg);
    }
    50% {
        transform: translateX(-10px) translateY(-10px) rotate(-2deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) rotate(0deg);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100px) rotateX(-90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(100px) rotateX(90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes zoomInRotate {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Responsive design for tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-banner-section {
        width: 100vw;
        height: calc(100vh - 80px);
        min-height: calc(100vh - 80px);
        margin-top: 80px;
        margin-left: calc(-50vw + 50%);
    }
    
    .hero-banner-img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

/* ========================================
   RIPPLE EFFECT AND LOADING STYLES
   ======================================== */

/* Ripple effect styles */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
    visibility: visible;
}

.loading-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(140, 94, 255, 0.2);
    border-top: 4px solid #8c5eff;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    box-shadow: 0 0 20px rgba(140, 94, 255, 0.3);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   ULTRA-ADVANCED GAMING SIDEBAR STYLES
   ======================================== */

/* Ultra-Advanced Gaming Sidebar */
.admin-sidebar {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 10, 30, 0.95) 50%, rgba(0, 0, 0, 0.98) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-right: 2px solid transparent;
    background-clip: padding-box;
    border-image: linear-gradient(180deg, rgba(0, 212, 255, 0.3) 0%, rgba(140, 94, 255, 0.2) 50%, rgba(255, 107, 107, 0.3) 100%) 1;
    width: 320px;
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 0 50px rgba(0, 212, 255, 0.1),
        inset 0 0 50px rgba(140, 94, 255, 0.05),
        0 0 100px rgba(0, 0, 0, 0.8);
    position: relative;
}

.admin-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(140, 94, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.admin-sidebar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

.admin-sidebar.collapsed {
    width: 80px;
}

.admin-sidebar.collapsed .sidebar-brand-text,
.admin-sidebar.collapsed .sidebar-user-info,
.admin-sidebar.collapsed .nav-link span,
.admin-sidebar.collapsed .nav-section {
    opacity: 0;
    visibility: hidden;
}

.admin-sidebar.collapsed .sidebar-brand-icon,
.admin-sidebar.collapsed .nav-link i {
    margin-right: 0;
}

.sidebar-brand {
    padding: 2.5rem 2rem;
    border-bottom: 2px solid transparent;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1) 0%, rgba(140, 94, 255, 0.05) 50%, rgba(255, 107, 107, 0.1) 100%);
    background-clip: padding-box;
    border-image: linear-gradient(90deg, rgba(0, 212, 255, 0.3) 0%, rgba(140, 94, 255, 0.2) 50%, rgba(255, 107, 107, 0.3) 100%) 1;
    position: relative;
    overflow: hidden;
}

.sidebar-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.sidebar-brand a {
    text-decoration: none;
    color: white;
    font-weight: 800;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
}

.sidebar-brand a:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.sidebar-brand-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #00d4ff 0%, #8c5eff 50%, #ff6b6b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.sidebar-brand-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.sidebar-brand-icon:hover::before {
    transform: translateX(100%);
}

.sidebar-brand-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 35px rgba(0, 212, 255, 0.6),
        0 0 0 3px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.sidebar-brand-icon i {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sidebar-brand-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.sidebar-brand-text {
    font-weight: 800;
    font-size: 1.3rem;
    color: white;
    transition: all 0.4s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #00d4ff 0%, #8c5eff 50%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-user {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(140, 94, 255, 0.05) 50%, rgba(255, 107, 107, 0.1) 100%);
    margin: 2rem 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sidebar-user::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-user:hover::before {
    opacity: 1;
}

.sidebar-user:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(140, 94, 255, 0.1) 50%, rgba(255, 107, 107, 0.15) 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sidebar-user-img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #00d4ff, #8c5eff, #ff6b6b) border-box;
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sidebar-user-img img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 35px rgba(0, 212, 255, 0.5),
        0 0 0 3px rgba(255, 255, 255, 0.2);
}

.sidebar-user-name {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sidebar-user-role {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Section Headers */
.nav-section {
    padding: 2rem 2rem 1rem 2rem;
    margin-top: 1rem;
    position: relative;
}

.nav-section:first-child {
    margin-top: 0;
}

.nav-section::before {
    content: '';
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.3) 50%, transparent 100%);
}

.nav-section-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #00d4ff 0%, #8c5eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Menu Items */
.sidebar-menu {
    padding: 1rem 1.5rem 2rem 1.5rem;
}

.nav-item {
    margin-bottom: 0.75rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    font-weight: 600;
    font-size: 1rem;
    overflow: hidden;
    flex-direction: row;
    justify-content: flex-start;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(140, 94, 255, 0.05) 50%, rgba(255, 107, 107, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: white;
    transform: translateX(12px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(140, 94, 255, 0.15) 50%, rgba(255, 107, 107, 0.2) 100%);
    color: #00d4ff;
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateX(12px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-link i {
    width: 24px;
    margin-right: 1.25rem;
    text-align: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.nav-link:hover i {
    color: #00d4ff;
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.nav-link.active i {
    color: #00d4ff;
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.nav-link span {
    display: inline-block;
    line-height: 1.3;
    vertical-align: middle;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

/* Dropdown Styles */
.has-dropdown .nav-link {
    position: relative;
}

.has-dropdown .nav-link::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 1.5rem;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    color: rgba(255, 255, 255, 0.6);
    z-index: 2;
}

.has-dropdown .nav-link[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-link.dropdown-toggle {
    background-image: none !important;
    border: 1px solid transparent !important;
}

.nav-link.dropdown-toggle:hover {
    background-image: none !important;
}

.nav-link.dropdown-toggle:focus {
    box-shadow: none !important;
}

.collapse {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.subnav {
    margin: 1rem 0 0 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(10, 10, 30, 0.3) 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.subnav .nav-link {
    padding: 1rem 1.25rem 1rem 3rem;
    font-size: 0.95rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.subnav .nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(8px) scale(1.01);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.subnav .nav-link.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(140, 94, 255, 0.1) 100%);
    border-left: 4px solid #00d4ff;
    color: #00d4ff;
    transform: translateX(8px) scale(1.01);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.2);
}

.subnav .nav-link i {
    font-size: 1rem;
    width: 20px;
    margin-right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.subnav .nav-link span {
    display: inline-block;
    line-height: 1.3;
    vertical-align: middle;
}

/* Footer */
.sidebar-footer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    border-top: 2px solid transparent;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1) 0%, rgba(140, 94, 255, 0.05) 50%, rgba(255, 107, 107, 0.1) 100%);
    background-clip: padding-box;
    border-image: linear-gradient(90deg, rgba(0, 212, 255, 0.3) 0%, rgba(140, 94, 255, 0.2) 50%, rgba(255, 107, 107, 0.3) 100%) 1;
    margin-top: auto;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.sidebar-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    animation: shimmer 4s infinite;
}

.sidebar-footer-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(140, 94, 255, 0.05) 50%, rgba(255, 107, 107, 0.1) 100%);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sidebar-footer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.sidebar-footer-item:hover::before {
    transform: translateX(100%);
}

.sidebar-footer-item:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #8c5eff 50%, #ff6b6b 100%);
    color: white;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 
        0 12px 35px rgba(0, 212, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Scrollbar */
.admin-sidebar::-webkit-scrollbar {
    width: 8px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00d4ff 0%, #8c5eff 50%, #ff6b6b 100%);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #8c5eff 50%, #00d4ff 100%);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .admin-sidebar {
        width: 320px;
    }
    
    .sidebar-user-info {
        display: block;
    }
    
    .nav-link span {
        display: inline;
    }
}

@media (max-width: 576px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .admin-sidebar.show {
        transform: translateX(0);
    }
}

.admin-sidebar.collapsed {
    width: 70px;
}

.admin-sidebar.collapsed .sidebar-brand-text,
.admin-sidebar.collapsed .sidebar-user-info,
.admin-sidebar.collapsed .nav-link span,
.admin-sidebar.collapsed .nav-section {
    opacity: 0;
    visibility: hidden;
}

.admin-sidebar.collapsed .sidebar-brand-icon,
.admin-sidebar.collapsed .nav-link i {
    margin-right: 0;
}

.sidebar-brand {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.sidebar-brand a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.sidebar-brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.sidebar-brand-icon i {
    font-size: 1.3rem;
    color: white;
}

.sidebar-brand-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.sidebar-brand-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.sidebar-user {
    background: rgba(255, 255, 255, 0.05);
    margin: 1.5rem 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.sidebar-user:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.sidebar-user-img img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #00d4ff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.sidebar-user-img img:hover {
    border-color: #0099cc;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.sidebar-user-name {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.sidebar-user-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Section Headers */
.nav-section {
    padding: 1.5rem 1.5rem 0.75rem 1.5rem;
    margin-top: 0.5rem;
}

.nav-section:first-child {
    margin-top: 0;
}

.nav-section-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
}

/* Menu Items */
.sidebar-menu {
    padding: 0.5rem 1rem 1rem 1rem;
}

.nav-item {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
    overflow: hidden;
    flex-direction: row;
    justify-content: flex-start;
    border: 1px solid transparent;
}

.nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: white;
    transform: translateX(8px);
    border-color: rgba(0, 212, 255, 0.3);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 153, 204, 0.2) 100%);
    color: #00d4ff;
    border-color: #00d4ff;
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.nav-link i {
    width: 20px;
    margin-right: 1rem;
    text-align: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.nav-link:hover i {
    color: #00d4ff;
}

.nav-link.active i {
    color: #00d4ff;
}

.nav-link span {
    display: inline-block;
    line-height: 1.2;
    vertical-align: middle;
}

/* Dropdown Styles */
.has-dropdown .nav-link {
    position: relative;
}

.has-dropdown .nav-link::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 1.25rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    color: rgba(255, 255, 255, 0.6);
}

.has-dropdown .nav-link[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
    color: #00d4ff;
}

.nav-link.dropdown-toggle {
    background-image: none !important;
    border: 1px solid transparent !important;
}

.nav-link.dropdown-toggle:hover {
    background-image: none !important;
}

.nav-link.dropdown-toggle:focus {
    box-shadow: none !important;
}

.collapse {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.subnav {
    margin: 0.75rem 0 0 0;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.subnav .nav-link {
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    font-size: 0.9rem;
    border-radius: 6px;
    margin-bottom: 0.25rem;
    background: transparent;
    border: 1px solid transparent;
}

.subnav .nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(4px);
    border-color: rgba(0, 212, 255, 0.2);
}

.subnav .nav-link.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 153, 204, 0.15) 100%);
    border-left: 3px solid #00d4ff;
    color: #00d4ff;
    transform: translateX(4px);
}

.subnav .nav-link i {
    font-size: 0.9rem;
    width: 16px;
    margin-right: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.subnav .nav-link span {
    display: inline-block;
    line-height: 1.2;
    vertical-align: middle;
}

/* Footer */
.sidebar-footer {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sidebar-footer-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.sidebar-footer-item:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
}

/* Scrollbar */
.admin-sidebar::-webkit-scrollbar {
    width: 6px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0099cc 0%, #00d4ff 100%);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .admin-sidebar {
        width: 280px;
    }
    
    .sidebar-user-info {
        display: block;
    }
    
    .nav-link span {
        display: inline;
    }
}

@media (max-width: 576px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .admin-sidebar.show {
        transform: translateX(0);
    }
}

/* Responsive design for large tablets */
@media (max-width: 1200px) and (min-width: 1025px) {
    .hero-banner-section {
        width: 100vw;
        height: calc(100vh - 80px);
        min-height: calc(100vh - 80px);
        margin-top: 80px;
        margin-left: calc(-50vw + 50%);
    }
    
    .hero-banner-img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

/* ========================================
   RIPPLE EFFECT AND LOADING STYLES
   ======================================== */

/* Ripple effect styles */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
    visibility: visible;
}

.loading-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(140, 94, 255, 0.2);
    border-top: 4px solid #8c5eff;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    box-shadow: 0 0 20px rgba(140, 94, 255, 0.3);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   ULTRA-ADVANCED GAMING SIDEBAR STYLES
   ======================================== */

/* Ultra-Advanced Gaming Sidebar */
.admin-sidebar {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 10, 30, 0.95) 50%, rgba(0, 0, 0, 0.98) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-right: 2px solid transparent;
    background-clip: padding-box;
    border-image: linear-gradient(180deg, rgba(0, 212, 255, 0.3) 0%, rgba(140, 94, 255, 0.2) 50%, rgba(255, 107, 107, 0.3) 100%) 1;
    width: 320px;
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 0 50px rgba(0, 212, 255, 0.1),
        inset 0 0 50px rgba(140, 94, 255, 0.05),
        0 0 100px rgba(0, 0, 0, 0.8);
    position: relative;
}

.admin-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(140, 94, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.admin-sidebar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

.admin-sidebar.collapsed {
    width: 80px;
}

.admin-sidebar.collapsed .sidebar-brand-text,
.admin-sidebar.collapsed .sidebar-user-info,
.admin-sidebar.collapsed .nav-link span,
.admin-sidebar.collapsed .nav-section {
    opacity: 0;
    visibility: hidden;
}

.admin-sidebar.collapsed .sidebar-brand-icon,
.admin-sidebar.collapsed .nav-link i {
    margin-right: 0;
}

.sidebar-brand {
    padding: 2.5rem 2rem;
    border-bottom: 2px solid transparent;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1) 0%, rgba(140, 94, 255, 0.05) 50%, rgba(255, 107, 107, 0.1) 100%);
    background-clip: padding-box;
    border-image: linear-gradient(90deg, rgba(0, 212, 255, 0.3) 0%, rgba(140, 94, 255, 0.2) 50%, rgba(255, 107, 107, 0.3) 100%) 1;
    position: relative;
    overflow: hidden;
}

.sidebar-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.sidebar-brand a {
    text-decoration: none;
    color: white;
    font-weight: 800;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
}

.sidebar-brand a:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.sidebar-brand-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #00d4ff 0%, #8c5eff 50%, #ff6b6b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.sidebar-brand-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.sidebar-brand-icon:hover::before {
    transform: translateX(100%);
}

.sidebar-brand-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 35px rgba(0, 212, 255, 0.6),
        0 0 0 3px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.sidebar-brand-icon i {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sidebar-brand-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.sidebar-brand-text {
    font-weight: 800;
    font-size: 1.3rem;
    color: white;
    transition: all 0.4s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #00d4ff 0%, #8c5eff 50%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-user {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(140, 94, 255, 0.05) 50%, rgba(255, 107, 107, 0.1) 100%);
    margin: 2rem 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sidebar-user::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-user:hover::before {
    opacity: 1;
}

.sidebar-user:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(140, 94, 255, 0.1) 50%, rgba(255, 107, 107, 0.15) 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sidebar-user-img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #00d4ff, #8c5eff, #ff6b6b) border-box;
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sidebar-user-img img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 35px rgba(0, 212, 255, 0.5),
        0 0 0 3px rgba(255, 255, 255, 0.2);
}

.sidebar-user-name {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sidebar-user-role {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Section Headers */
.nav-section {
    padding: 2rem 2rem 1rem 2rem;
    margin-top: 1rem;
    position: relative;
}

.nav-section:first-child {
    margin-top: 0;
}

.nav-section::before {
    content: '';
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.3) 50%, transparent 100%);
}

.nav-section-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #00d4ff 0%, #8c5eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Menu Items */
.sidebar-menu {
    padding: 1rem 1.5rem 2rem 1.5rem;
}

.nav-item {
    margin-bottom: 0.75rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    font-weight: 600;
    font-size: 1rem;
    overflow: hidden;
    flex-direction: row;
    justify-content: flex-start;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(140, 94, 255, 0.05) 50%, rgba(255, 107, 107, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: white;
    transform: translateX(12px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(140, 94, 255, 0.15) 50%, rgba(255, 107, 107, 0.2) 100%);
    color: #00d4ff;
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateX(12px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-link i {
    width: 24px;
    margin-right: 1.25rem;
    text-align: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.nav-link:hover i {
    color: #00d4ff;
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.nav-link.active i {
    color: #00d4ff;
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.nav-link span {
    display: inline-block;
    line-height: 1.3;
    vertical-align: middle;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

/* Dropdown Styles */
.has-dropdown .nav-link {
    position: relative;
}

.has-dropdown .nav-link::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 1.5rem;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    color: rgba(255, 255, 255, 0.6);
    z-index: 2;
}

.has-dropdown .nav-link[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-link.dropdown-toggle {
    background-image: none !important;
    border: 1px solid transparent !important;
}

.nav-link.dropdown-toggle:hover {
    background-image: none !important;
}

.nav-link.dropdown-toggle:focus {
    box-shadow: none !important;
}

.collapse {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.subnav {
    margin: 1rem 0 0 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(10, 10, 30, 0.3) 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.subnav .nav-link {
    padding: 1rem 1.25rem 1rem 3rem;
    font-size: 0.95rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.subnav .nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(8px) scale(1.01);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.subnav .nav-link.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(140, 94, 255, 0.1) 100%);
    border-left: 4px solid #00d4ff;
    color: #00d4ff;
    transform: translateX(8px) scale(1.01);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.2);
}

.subnav .nav-link i {
    font-size: 1rem;
    width: 20px;
    margin-right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.subnav .nav-link span {
    display: inline-block;
    line-height: 1.3;
    vertical-align: middle;
}

/* Footer */
.sidebar-footer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    border-top: 2px solid transparent;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1) 0%, rgba(140, 94, 255, 0.05) 50%, rgba(255, 107, 107, 0.1) 100%);
    background-clip: padding-box;
    border-image: linear-gradient(90deg, rgba(0, 212, 255, 0.3) 0%, rgba(140, 94, 255, 0.2) 50%, rgba(255, 107, 107, 0.3) 100%) 1;
    margin-top: auto;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.sidebar-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    animation: shimmer 4s infinite;
}

.sidebar-footer-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(140, 94, 255, 0.05) 50%, rgba(255, 107, 107, 0.1) 100%);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sidebar-footer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.sidebar-footer-item:hover::before {
    transform: translateX(100%);
}

.sidebar-footer-item:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #8c5eff 50%, #ff6b6b 100%);
    color: white;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 
        0 12px 35px rgba(0, 212, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Scrollbar */
.admin-sidebar::-webkit-scrollbar {
    width: 8px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00d4ff 0%, #8c5eff 50%, #ff6b6b 100%);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #8c5eff 50%, #00d4ff 100%);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .admin-sidebar {
        width: 320px;
    }
    
    .sidebar-user-info {
        display: block;
    }
    
    .nav-link span {
        display: inline;
    }
}

@media (max-width: 576px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .admin-sidebar.show {
        transform: translateX(0);
    }
}

.admin-sidebar.collapsed {
    width: 70px;
}

.admin-sidebar.collapsed .sidebar-brand-text,
.admin-sidebar.collapsed .sidebar-user-info,
.admin-sidebar.collapsed .nav-link span,
.admin-sidebar.collapsed .nav-section {
    opacity: 0;
    visibility: hidden;
}

.admin-sidebar.collapsed .sidebar-brand-icon,
.admin-sidebar.collapsed .nav-link i {
    margin-right: 0;
}

.sidebar-brand {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.sidebar-brand a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.sidebar-brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.sidebar-brand-icon i {
    font-size: 1.3rem;
    color: white;
}

.sidebar-brand-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.sidebar-brand-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.sidebar-user {
    background: rgba(255, 255, 255, 0.05);
    margin: 1.5rem 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.sidebar-user:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.sidebar-user-img img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #00d4ff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.sidebar-user-img img:hover {
    border-color: #0099cc;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.sidebar-user-name {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.sidebar-user-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Section Headers */
.nav-section {
    padding: 1.5rem 1.5rem 0.75rem 1.5rem;
    margin-top: 0.5rem;
}

.nav-section:first-child {
    margin-top: 0;
}

.nav-section-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
}

/* Menu Items */
.sidebar-menu {
    padding: 0.5rem 1rem 1rem 1rem;
}

.nav-item {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
    overflow: hidden;
    flex-direction: row;
    justify-content: flex-start;
    border: 1px solid transparent;
}

.nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: white;
    transform: translateX(8px);
    border-color: rgba(0, 212, 255, 0.3);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 153, 204, 0.2) 100%);
    color: #00d4ff;
    border-color: #00d4ff;
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.nav-link i {
    width: 20px;
    margin-right: 1rem;
    text-align: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.nav-link:hover i {
    color: #00d4ff;
}

.nav-link.active i {
    color: #00d4ff;
}

.nav-link span {
    display: inline-block;
    line-height: 1.2;
    vertical-align: middle;
}

/* Dropdown Styles */
.has-dropdown .nav-link {
    position: relative;
}

.has-dropdown .nav-link::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 1.25rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    color: rgba(255, 255, 255, 0.6);
}

.has-dropdown .nav-link[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
    color: #00d4ff;
}

.nav-link.dropdown-toggle {
    background-image: none !important;
    border: 1px solid transparent !important;
}

.nav-link.dropdown-toggle:hover {
    background-image: none !important;
}

.nav-link.dropdown-toggle:focus {
    box-shadow: none !important;
}

.collapse {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.subnav {
    margin: 0.75rem 0 0 0;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.subnav .nav-link {
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    font-size: 0.9rem;
    border-radius: 6px;
    margin-bottom: 0.25rem;
    background: transparent;
    border: 1px solid transparent;
}

.subnav .nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(4px);
    border-color: rgba(0, 212, 255, 0.2);
}

.subnav .nav-link.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 153, 204, 0.15) 100%);
    border-left: 3px solid #00d4ff;
    color: #00d4ff;
    transform: translateX(4px);
}

.subnav .nav-link i {
    font-size: 0.9rem;
    width: 16px;
    margin-right: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.subnav .nav-link span {
    display: inline-block;
    line-height: 1.2;
    vertical-align: middle;
}

/* Footer */
.sidebar-footer {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sidebar-footer-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.sidebar-footer-item:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
}

/* Scrollbar */
.admin-sidebar::-webkit-scrollbar {
    width: 6px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0099cc 0%, #00d4ff 100%);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .admin-sidebar {
        width: 280px;
    }
    
    .sidebar-user-info {
        display: block;
    }
    
    .nav-link span {
        display: inline;
    }
}

@media (max-width: 576px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .admin-sidebar.show {
        transform: translateX(0);
    }
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .hero-banner-title {
        font-size: 2.5rem;
    }
    
    .hero-banner-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-banner-buttons .btn {
        min-width: 150px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hero-banner-section {
        width: 100vw;
        height: calc(100vh - 80px);
        min-height: calc(100vh - 80px);
        margin-top: 80px;
        margin-left: calc(-50vw + 50%);
    }
    
    .hero-banner-img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .games-row {
        gap: 40px;
    }
    
    .game-item {
        padding: 0;
    }
    
    .game-icon-purple {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .game-text {
        font-size: 0.9rem;
    }
    
    .hero-banner-slider .swiper-button-next,
    .hero-banner-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .hero-banner-slider .swiper-button-next:after,
    .hero-banner-slider .swiper-button-prev:after {
        font-size: 16px;
    }
    
    .hero-content {
        animation-duration: 0.8s;
    }
    
    .app-content,
    .app-mockup-container {
        animation-duration: 0.8s;
    }
    
    .tournament-card,
    .team-card,
    .feature-card {
        animation-duration: 0.6s;
    }
}

/* Additional responsive adjustments for very small screens */
@media (max-width: 480px) {
    .hero-banner-section {
        width: 100vw;
        height: calc(100vh - 80px);
        min-height: calc(100vh - 80px);
        margin-top: 80px;
        margin-left: calc(-50vw + 50%);
    }
    
    .hero-banner-title {
        font-size: 2rem;
    }
    
    .hero-banner-subtitle {
        font-size: 1rem;
    }
    
    .hero-banner-img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

/* ========================================
   RIPPLE EFFECT AND LOADING STYLES
   ======================================== */

/* Ripple effect styles */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
    visibility: visible;
}

.loading-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(140, 94, 255, 0.2);
    border-top: 4px solid #8c5eff;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    box-shadow: 0 0 20px rgba(140, 94, 255, 0.3);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   ULTRA-ADVANCED GAMING SIDEBAR STYLES
   ======================================== */

/* Ultra-Advanced Gaming Sidebar */
.admin-sidebar {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 10, 30, 0.95) 50%, rgba(0, 0, 0, 0.98) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-right: 2px solid transparent;
    background-clip: padding-box;
    border-image: linear-gradient(180deg, rgba(0, 212, 255, 0.3) 0%, rgba(140, 94, 255, 0.2) 50%, rgba(255, 107, 107, 0.3) 100%) 1;
    width: 320px;
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 0 50px rgba(0, 212, 255, 0.1),
        inset 0 0 50px rgba(140, 94, 255, 0.05),
        0 0 100px rgba(0, 0, 0, 0.8);
    position: relative;
}

.admin-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(140, 94, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.admin-sidebar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

.admin-sidebar.collapsed {
    width: 80px;
}

.admin-sidebar.collapsed .sidebar-brand-text,
.admin-sidebar.collapsed .sidebar-user-info,
.admin-sidebar.collapsed .nav-link span,
.admin-sidebar.collapsed .nav-section {
    opacity: 0;
    visibility: hidden;
}

.admin-sidebar.collapsed .sidebar-brand-icon,
.admin-sidebar.collapsed .nav-link i {
    margin-right: 0;
}

.sidebar-brand {
    padding: 2.5rem 2rem;
    border-bottom: 2px solid transparent;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1) 0%, rgba(140, 94, 255, 0.05) 50%, rgba(255, 107, 107, 0.1) 100%);
    background-clip: padding-box;
    border-image: linear-gradient(90deg, rgba(0, 212, 255, 0.3) 0%, rgba(140, 94, 255, 0.2) 50%, rgba(255, 107, 107, 0.3) 100%) 1;
    position: relative;
    overflow: hidden;
}

.sidebar-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.sidebar-brand a {
    text-decoration: none;
    color: white;
    font-weight: 800;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
}

.sidebar-brand a:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.sidebar-brand-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #00d4ff 0%, #8c5eff 50%, #ff6b6b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.sidebar-brand-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.sidebar-brand-icon:hover::before {
    transform: translateX(100%);
}

.sidebar-brand-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 35px rgba(0, 212, 255, 0.6),
        0 0 0 3px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.sidebar-brand-icon i {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sidebar-brand-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.sidebar-brand-text {
    font-weight: 800;
    font-size: 1.3rem;
    color: white;
    transition: all 0.4s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #00d4ff 0%, #8c5eff 50%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-user {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(140, 94, 255, 0.05) 50%, rgba(255, 107, 107, 0.1) 100%);
    margin: 2rem 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sidebar-user::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-user:hover::before {
    opacity: 1;
}

.sidebar-user:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(140, 94, 255, 0.1) 50%, rgba(255, 107, 107, 0.15) 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sidebar-user-img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #00d4ff, #8c5eff, #ff6b6b) border-box;
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sidebar-user-img img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 35px rgba(0, 212, 255, 0.5),
        0 0 0 3px rgba(255, 255, 255, 0.2);
}

.sidebar-user-name {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sidebar-user-role {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Section Headers */
.nav-section {
    padding: 2rem 2rem 1rem 2rem;
    margin-top: 1rem;
    position: relative;
}

.nav-section:first-child {
    margin-top: 0;
}

.nav-section::before {
    content: '';
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.3) 50%, transparent 100%);
}

.nav-section-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #00d4ff 0%, #8c5eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Menu Items */
.sidebar-menu {
    padding: 1rem 1.5rem 2rem 1.5rem;
}

.nav-item {
    margin-bottom: 0.75rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    font-weight: 600;
    font-size: 1rem;
    overflow: hidden;
    flex-direction: row;
    justify-content: flex-start;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(140, 94, 255, 0.05) 50%, rgba(255, 107, 107, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: white;
    transform: translateX(12px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(140, 94, 255, 0.15) 50%, rgba(255, 107, 107, 0.2) 100%);
    color: #00d4ff;
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateX(12px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-link i {
    width: 24px;
    margin-right: 1.25rem;
    text-align: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.nav-link:hover i {
    color: #00d4ff;
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.nav-link.active i {
    color: #00d4ff;
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.nav-link span {
    display: inline-block;
    line-height: 1.3;
    vertical-align: middle;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

/* Dropdown Styles */
.has-dropdown .nav-link {
    position: relative;
}

.has-dropdown .nav-link::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 1.5rem;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    color: rgba(255, 255, 255, 0.6);
    z-index: 2;
}

.has-dropdown .nav-link[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-link.dropdown-toggle {
    background-image: none !important;
    border: 1px solid transparent !important;
}

.nav-link.dropdown-toggle:hover {
    background-image: none !important;
}

.nav-link.dropdown-toggle:focus {
    box-shadow: none !important;
}

.collapse {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.subnav {
    margin: 1rem 0 0 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(10, 10, 30, 0.3) 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.subnav .nav-link {
    padding: 1rem 1.25rem 1rem 3rem;
    font-size: 0.95rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.subnav .nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(8px) scale(1.01);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.subnav .nav-link.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(140, 94, 255, 0.1) 100%);
    border-left: 4px solid #00d4ff;
    color: #00d4ff;
    transform: translateX(8px) scale(1.01);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.2);
}

.subnav .nav-link i {
    font-size: 1rem;
    width: 20px;
    margin-right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.subnav .nav-link span {
    display: inline-block;
    line-height: 1.3;
    vertical-align: middle;
}

/* Footer */
.sidebar-footer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    border-top: 2px solid transparent;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1) 0%, rgba(140, 94, 255, 0.05) 50%, rgba(255, 107, 107, 0.1) 100%);
    background-clip: padding-box;
    border-image: linear-gradient(90deg, rgba(0, 212, 255, 0.3) 0%, rgba(140, 94, 255, 0.2) 50%, rgba(255, 107, 107, 0.3) 100%) 1;
    margin-top: auto;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.sidebar-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    animation: shimmer 4s infinite;
}

.sidebar-footer-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(140, 94, 255, 0.05) 50%, rgba(255, 107, 107, 0.1) 100%);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sidebar-footer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.sidebar-footer-item:hover::before {
    transform: translateX(100%);
}

.sidebar-footer-item:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #8c5eff 50%, #ff6b6b 100%);
    color: white;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 
        0 12px 35px rgba(0, 212, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Scrollbar */
.admin-sidebar::-webkit-scrollbar {
    width: 8px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00d4ff 0%, #8c5eff 50%, #ff6b6b 100%);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #8c5eff 50%, #00d4ff 100%);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .admin-sidebar {
        width: 320px;
    }
    
    .sidebar-user-info {
        display: block;
    }
    
    .nav-link span {
        display: inline;
    }
}

@media (max-width: 576px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .admin-sidebar.show {
        transform: translateX(0);
    }
}

.admin-sidebar.collapsed {
    width: 70px;
}

.admin-sidebar.collapsed .sidebar-brand-text,
.admin-sidebar.collapsed .sidebar-user-info,
.admin-sidebar.collapsed .nav-link span,
.admin-sidebar.collapsed .nav-section {
    opacity: 0;
    visibility: hidden;
}

.admin-sidebar.collapsed .sidebar-brand-icon,
.admin-sidebar.collapsed .nav-link i {
    margin-right: 0;
}

.sidebar-brand {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.sidebar-brand a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.sidebar-brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.sidebar-brand-icon i {
    font-size: 1.3rem;
    color: white;
}

.sidebar-brand-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.sidebar-brand-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.sidebar-user {
    background: rgba(255, 255, 255, 0.05);
    margin: 1.5rem 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.sidebar-user:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.sidebar-user-img img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #00d4ff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.sidebar-user-img img:hover {
    border-color: #0099cc;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.sidebar-user-name {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.sidebar-user-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Section Headers */
.nav-section {
    padding: 1.5rem 1.5rem 0.75rem 1.5rem;
    margin-top: 0.5rem;
}

.nav-section:first-child {
    margin-top: 0;
}

.nav-section-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
}

/* Menu Items */
.sidebar-menu {
    padding: 0.5rem 1rem 1rem 1rem;
}

.nav-item {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
    overflow: hidden;
    flex-direction: row;
    justify-content: flex-start;
    border: 1px solid transparent;
}

.nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: white;
    transform: translateX(8px);
    border-color: rgba(0, 212, 255, 0.3);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 153, 204, 0.2) 100%);
    color: #00d4ff;
    border-color: #00d4ff;
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.nav-link i {
    width: 20px;
    margin-right: 1rem;
    text-align: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.nav-link:hover i {
    color: #00d4ff;
}

.nav-link.active i {
    color: #00d4ff;
}

.nav-link span {
    display: inline-block;
    line-height: 1.2;
    vertical-align: middle;
}

/* Dropdown Styles */
.has-dropdown .nav-link {
    position: relative;
}

.has-dropdown .nav-link::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 1.25rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    color: rgba(255, 255, 255, 0.6);
}

.has-dropdown .nav-link[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
    color: #00d4ff;
}

.nav-link.dropdown-toggle {
    background-image: none !important;
    border: 1px solid transparent !important;
}

.nav-link.dropdown-toggle:hover {
    background-image: none !important;
}

.nav-link.dropdown-toggle:focus {
    box-shadow: none !important;
}

.collapse {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.subnav {
    margin: 0.75rem 0 0 0;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.subnav .nav-link {
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    font-size: 0.9rem;
    border-radius: 6px;
    margin-bottom: 0.25rem;
    background: transparent;
    border: 1px solid transparent;
}

.subnav .nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(4px);
    border-color: rgba(0, 212, 255, 0.2);
}

.subnav .nav-link.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 153, 204, 0.15) 100%);
    border-left: 3px solid #00d4ff;
    color: #00d4ff;
    transform: translateX(4px);
}

.subnav .nav-link i {
    font-size: 0.9rem;
    width: 16px;
    margin-right: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.subnav .nav-link span {
    display: inline-block;
    line-height: 1.2;
    vertical-align: middle;
}

/* Footer */
.sidebar-footer {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sidebar-footer-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.sidebar-footer-item:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
}

/* Scrollbar */
.admin-sidebar::-webkit-scrollbar {
    width: 6px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0099cc 0%, #00d4ff 100%);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .admin-sidebar {
        width: 280px;
    }
    
    .sidebar-user-info {
        display: block;
    }
    
    .nav-link span {
        display: inline;
    }
}

@media (max-width: 576px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .admin-sidebar.show {
        transform: translateX(0);
    }
}



/* ========================================
   ENHANCED BANNER STYLES & SWIPER NAVIGATION
   ======================================== */

/* Enhanced Hero Banner Section */
.hero-banner-section-advanced {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
    margin-left: calc(-50vw + 50%);
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #2d1b69 100%);
}

.hero-banner-slider-advanced {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-banner-slider-advanced .swiper-wrapper {
    height: 100%;
}

.hero-banner-slider-advanced .swiper-slide {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-banner-slide-advanced {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #2d1b69 100%);
}

.hero-banner-bg-advanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-banner-img-advanced {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-width: 100%;
    min-height: 100%;
    transition: transform 0.8s ease;
    filter: brightness(0.8) contrast(1.1);
}

.hero-banner-slide-advanced:hover .hero-banner-img-advanced {
    transform: scale(1.05);
}

.hero-banner-overlay-advanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 15, 35, 0.8) 0%, 
        rgba(26, 26, 46, 0.6) 50%,
        rgba(45, 27, 105, 0.7) 100%);
    z-index: 2;
}

.hero-banner-content-advanced {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.hero-banner-title-advanced {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: none;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    position: relative;
}


/* Additional Typography Enhancements */
.hero-banner-content-advanced {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-banner-title-advanced {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

.hero-banner-subtitle-advanced {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-banner-subtitle-advanced {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 3rem;
    text-shadow: none;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    max-width: 500px;
    line-height: 1.5;
    color: #a8a8b3;
    letter-spacing: 0.01em;
    position: relative;
}


.hero-banner-stats-advanced {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3.5rem;
    animation: fadeInUp 1s ease-out 0.9s both;
    flex-wrap: wrap;
}

.stat-item-advanced {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item-advanced::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.5s ease;
}

.stat-item-advanced:hover::before {
    left: 100%;
}

.stat-item-advanced:hover {
    transform: translateY(-3px);
    background: rgba(140, 94, 255, 0.1);
    border-color: rgba(140, 94, 255, 0.3);
    box-shadow: 0 8px 25px rgba(140, 94, 255, 0.2);
}

.stat-number-advanced {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: none;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
    letter-spacing: -0.01em;
    position: relative;
}


.stat-label-advanced {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #a8a8b3;
    text-shadow: none;
}

.hero-banner-buttons-advanced {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.btn-primary-advanced {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #8c5eff;
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(140, 94, 255, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary-advanced:hover {
    background: #7c4dff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(140, 94, 255, 0.4);
    color: white;
    text-decoration: none;
}

.btn-outline-advanced {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.btn-outline-advanced:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* Swiper Navigation Styles */
.swiper-button-next-advanced,
.swiper-button-prev-advanced {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
    z-index: 20;
}

.swiper-button-next-advanced:hover,
.swiper-button-prev-advanced:hover {
    background: rgba(140, 94, 255, 0.3);
    border-color: rgba(140, 94, 255, 0.5);
    transform: scale(1.1);
}

.swiper-button-next-advanced::after,
.swiper-button-prev-advanced::after {
    font-size: 20px;
    font-weight: 900;
}

.swiper-pagination-advanced {
    bottom: 30px;
    z-index: 20;
}

.swiper-pagination-advanced .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 8px;
}

.swiper-pagination-advanced .swiper-pagination-bullet-active {
    background: #8c5eff;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(140, 94, 255, 0.6);
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-banner-title-advanced {
        font-size: 3.5rem;
    }
    
    .hero-banner-subtitle-advanced {
        font-size: 1.125rem;
    }
    
    .hero-banner-stats-advanced {
        gap: 2.5rem;
    }
    
    .stat-item-advanced {
        padding: 1.5rem 2rem;
    }
    
    .stat-number-advanced {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .hero-banner-section-advanced {
        height: calc(100vh - 80px);
        min-height: calc(100vh - 80px);
        margin-top: 80px;
    }
    
    .hero-banner-title-advanced {
        font-size: 2.75rem;
        line-height: 1.2;
    }
    
    .hero-banner-subtitle-advanced {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .hero-banner-stats-advanced {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-item-advanced {
        padding: 1rem 1.5rem;
    }
    
    .stat-number-advanced {
        font-size: 2rem;
    }
    
    .stat-label-advanced {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    .hero-banner-buttons-advanced {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary-advanced,
    .btn-outline-advanced {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .swiper-button-next-advanced,
    .swiper-button-prev-advanced {
        width: 50px;
        height: 50px;
    }
    
    .swiper-button-next-advanced::after,
    .swiper-button-prev-advanced::after {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-banner-title-advanced {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-banner-subtitle-advanced {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-banner-stats-advanced {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item-advanced {
        padding: 0.875rem 1.25rem;
    }
    
    .stat-number-advanced {
        font-size: 1.75rem;
    }
    
    .stat-label-advanced {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .hero-banner-content-advanced {
        padding: 0 20px;
    }
    
    .btn-primary-advanced,
    .btn-outline-advanced {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* ===========================================
   BRACKTIX HERO BANNER STYLES - MOVED FROM INDEX.BLADE.PHP
   =========================================== */

/* Image Banner Styles */
.hero-banner-section-advanced {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-banner-slider-advanced {
    height: 100%;
}

.hero-banner-slide-advanced {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-bg-advanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-banner-img-advanced {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner-overlay-advanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(26, 26, 46, 0.6) 50%, rgba(45, 27, 105, 0.7) 100%);
    z-index: 2;
}

.hero-banner-content-advanced {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-banner-title-advanced {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-banner-subtitle-advanced {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-banner-buttons-advanced {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-advanced {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #8c5eff 0%, #6b46c1 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(140, 94, 255, 0.3);
}

.btn-primary-advanced:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(140, 94, 255, 0.4);
    color: white;
    text-decoration: none;
}

/* Swiper Navigation */
.swiper-button-next-advanced,
.swiper-button-prev-advanced {
    color: #8c5eff !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    margin-top: -25px !important;
}

.swiper-button-next-advanced:after,
.swiper-button-prev-advanced:after {
    font-size: 20px !important;
}

.swiper-pagination-advanced {
    bottom: 30px !important;
}

.swiper-pagination-advanced .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
}

.swiper-pagination-advanced .swiper-pagination-bullet-active {
    background: #8c5eff !important;
}

/* Main Hero Section - Enhanced Colors */
.hero {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #2d1b69 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

.guest-call-to-action {
    text-align: center;
    margin-bottom: 4rem;
    z-index: 2;
    position: relative;
}

.header1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #8c5eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.header2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.btn-guest-homepage {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #8c5eff 0%, #6b46c1 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(140, 94, 255, 0.3);
}

.btn-guest-homepage:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(140, 94, 255, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.info-card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: linear-gradient(135deg, rgba(140, 94, 255, 0.1) 0%, rgba(107, 70, 193, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(140, 94, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(140, 94, 255, 0.15) 0%, rgba(107, 70, 193, 0.1) 100%);
    border-color: rgba(140, 94, 255, 0.4);
    box-shadow: 0 20px 40px rgba(140, 94, 255, 0.2);
}

.icon-main {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.5rem;
}

.main .header {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.bottom-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.bottom-info .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #8c5eff;
}

.bottom-info p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #8c5eff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.avatar-image {
    border-radius: 4px;
}

/* Responsive Design for Hero Banner */
@media (max-width: 768px) {
    .header1 {
        font-size: 2.5rem;
    }
    
    .header2 {
        font-size: 1.25rem;
    }
    
    .text {
        font-size: 1rem;
    }
    
    .info-card-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .hero-banner-title-advanced {
        font-size: 3rem;
    }
    
    .hero-banner-subtitle-advanced {
        font-size: 1.25rem;
    }
}
