/* Main Variables */
:root {
    --primary: #8c5eff;
    --primary-dark: #6c3ce9;
    --primary-light: #a685ff;
    --secondary: #ff4757;
    --accent: #00d9ff;
    --dark: #121212;
    --darker: #0a0a0a;
    --light: #f8f9fa;
    --card-bg: rgba(30, 30, 50, 0.6);
    --border: rgba(255, 255, 255, 0.1);
    --glow-color: rgba(140, 94, 255, 0.6);
    --secondary-glow: rgba(255, 71, 87, 0.6);
}

/* Base Styles */
body {
    background-color: var(--dark);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* 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-color: rgba(10, 10, 20, 0.8) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.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: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    transition: all 0.2s ease;
    margin: 0 10px;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: white !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    border-bottom: 2px solid var(--primary);
}

.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, #121212 0%, #1a1a2e 100%);
}

.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);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(140, 94, 255, 0.2);
    border-color: var(--primary);
}

.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(45deg, var(--primary-dark), var(--primary));
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(140, 94, 255, 0.5);
}

.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: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* 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); }
}

/* Responsive Adjustments */
@media (max-width: s768px) {
    .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);
}

/* Tournament Page Styles */
.hero-tournaments-section {
    position: relative;
    height: 350px;
    background-image: url('/assets/images/tournaments-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    margin-bottom: 30px;
}

.hero-tournaments-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-tournaments-section .hero-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.game-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.game-filter-buttons .btn {
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.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;
}

@media (max-width: 768px) {
    .hero-tournaments-section, .hero-teams-section {
        height: 280px;
    }
    
    .hero-tournaments-section .hero-content h1, 
    .hero-teams-section .hero-content h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .tournament-meta {
        grid-template-columns: 1fr;
    }
    
    .tournament-detail-banner {
        height: 200px;
    }
    
    .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;
}

.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);
    }
}

    /* Fix for banner overlap */
    .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;
        -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;
        }
    }