﻿/*
Theme Name: Maroc Telecom FC
Theme URI: https://teammtc.es
Author: MTC Dev Team
Author URI: https://teammtc.es
Description: Tema personalizado para el equipo de esports Maroc Telecom FC. Soporta 4 juegos: Fútbol 7, FC26, League of Legends y Brawl Stars.
Version: 3.2.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: maroc-telecom-fc
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, woocommerce
*/

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --magenta: #FF379A;
    --magenta-light: #FF6BB5;
    --magenta-dark: #D12E80;
    --magenta-glow: rgba(255, 55, 154, 0.3);
    --white: #FFFFFF;
    --black: #0D0D0D;
    --dark-bg: #0A0A12;
    --dark-card: #12121E;
    --gray-dark: #1A1A2E;
    --gray-medium: #2D2D44;
    --gray-light: #F5F5F5;
    --gradient-primary: linear-gradient(135deg, #FF379A 0%, #FF6BB5 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A12 0%, #12121E 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(255, 55, 154, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50%;
    --transition: all 0.3s ease;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Poppins', var(--font-primary);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--magenta);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--magenta-light);
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--magenta);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--magenta);
    border-color: var(--magenta);
}

.btn-outline:hover {
    background: var(--magenta);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-top {
    background: var(--black);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 55, 154, 0.2);
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-social {
    display: flex;
    gap: 12px;
}

.header-social .social-link {
    color: var(--white);
    opacity: 0.7;
    transition: var(--transition);
    display: flex;
}

.header-social .social-link:hover {
    color: var(--magenta);
    opacity: 1;
}

.header-contact a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 0.85rem;
    opacity: 0.8;
}

.header-contact a:hover {
    color: var(--magenta);
    opacity: 1;
}

.header-main {
    padding: 15px 0;
}

.header-main-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo-img {
    height: 50px;
    width: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 5px;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: block;
    padding: 10px 18px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: var(--magenta);
    background: rgba(255, 55, 154, 0.1);
}

.nav-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--dark-card);
    border-radius: var(--radius-md);
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 55, 154, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu li ul li a {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 0;
}

.nav-menu li ul li a:hover {
    background: rgba(255, 55, 154, 0.15);
}

.nav-menu > li > a {
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--magenta);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu > li:hover > a::after,
.nav-menu > li.current-menu-item > a::after {
    width: 30px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-toggle,
.header-cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    color: var(--white);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
}

.search-toggle:hover,
.header-cart-link:hover {
    background: var(--magenta);
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--magenta);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--white);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 18, 0.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.search-overlay-inner {
    width: 100%;
    max-width: 700px;
    padding: 40px;
    text-align: center;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
}

.search-close:hover {
    color: var(--magenta);
    transform: rotate(90deg);
}

.search-overlay .search-form {
    width: 100%;
}

.search-overlay .search-field {
    width: 100%;
    padding: 20px 30px;
    font-size: 1.5rem;
    background: var(--dark-card);
    border: 2px solid var(--gray-medium);
    border-radius: var(--radius-md);
    color: var(--white);
    outline: none;
    transition: var(--transition);
}

.search-overlay .search-field:focus {
    border-color: var(--magenta);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-default {
    background: var(--gradient-dark);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 18, 0.9) 0%, rgba(10, 10, 18, 0.7) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
}

.hero-content-inner {
    max-width: 800px;
    margin: 0 auto;
}

.hero-lion {
    width: 150px;
    height: auto;
    margin: 0 auto 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-btn {
    font-size: 1rem;
    padding: 16px 40px;
}

.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.hero-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.hero-arrow:hover {
    background: var(--magenta);
    border-color: var(--magenta);
    transform: scale(1.1);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--magenta);
    width: 30px;
    border-radius: 6px;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   TEAMS SECTION
   ======================================== */
.teams-section {
    background: var(--dark-bg);
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark-card);
    border: 1px solid rgba(255, 55, 154, 0.1);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--magenta);
    box-shadow: var(--shadow-glow);
}

.team-card-bg {
    height: 250px;
    overflow: hidden;
}

.team-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-img {
    transform: scale(1.1);
}

.team-card-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-icon {
    font-size: 4rem;
}

.team-card-content {
    padding: 30px;
}

.team-sport {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--magenta);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.team-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* ========================================
   MATCHES SECTION
   ======================================== */
.matches-section {
    background: var(--gray-dark);
}

.matches-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.match-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px 30px;
    background: var(--dark-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 55, 154, 0.1);
    transition: var(--transition);
}

.match-card:hover {
    border-color: var(--magenta);
    transform: translateX(5px);
}

.match-date {
    text-align: center;
    min-width: 60px;
}

.match-day {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--magenta);
    line-height: 1;
}

.match-month {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.match-teams {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.match-team {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
}

.match-vs {
    font-weight: 700;
    color: var(--magenta);
    font-size: 0.9rem;
}

.match-info {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.match-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.match-link {
    padding: 10px 20px;
    background: rgba(255, 55, 154, 0.1);
    border-radius: var(--radius-sm);
    color: var(--magenta);
    font-weight: 500;
    font-size: 0.9rem;
}

.match-link:hover {
    background: var(--magenta);
    color: var(--white);
}

.no-matches {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   NEWS SECTION
   ======================================== */
.news-section {
    background: var(--dark-bg);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 55, 154, 0.1);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: var(--magenta);
    box-shadow: var(--shadow-md);
}

.news-thumbnail {
    height: 200px;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-img {
    transform: scale(1.1);
}

.news-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-medium);
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.news-date {
    color: rgba(255, 255, 255, 0.5);
}

.news-category {
    color: var(--magenta);
    font-weight: 500;
}

.news-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.news-title a {
    color: var(--white);
}

.news-title a:hover {
    color: var(--magenta);
}

.news-excerpt {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-link {
    color: var(--magenta);
    font-weight: 500;
    font-size: 0.9rem;
}

.no-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   SPONSORS SECTION
   ======================================== */
.sponsors-section {
    background: var(--gray-dark);
    padding: 60px 0;
}

.sponsors-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.sponsor-item {
    opacity: 0.5;
    transition: var(--transition);
}

.sponsor-item:hover {
    opacity: 1;
}

.sponsor-placeholder {
    width: 150px;
    height: 80px;
    background: var(--dark-card);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    padding: 140px 0 60px;
    background: var(--gradient-dark);
    text-align: center;
    border-bottom: 1px solid rgba(255, 55, 154, 0.1);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
}

/* ========================================
   PAGE CONTENT
   ======================================== */
.page-content {
    padding: 60px 0;
}

.page-article,
.single-article {
    max-width: 900px;
    margin: 0 auto;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--white);
    margin: 30px 0 15px;
    font-family: var(--font-display);
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content a {
    color: var(--magenta);
    text-decoration: underline;
    text-decoration-color: rgba(255, 55, 154, 0.3);
}

.entry-content a:hover {
    text-decoration-color: var(--magenta);
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 10px;
    list-style: disc;
    color: rgba(255, 255, 255, 0.85);
}

.entry-content img {
    border-radius: var(--radius-md);
    margin: 30px 0;
}

.entry-content blockquote {
    border-left: 4px solid var(--magenta);
    padding: 20px 30px;
    margin: 30px 0;
    background: rgba(255, 55, 154, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
}

/* ========================================
   TEAM HEADER
   ======================================== */
.team-header {
    padding: 140px 0 60px;
    border-bottom: 1px solid rgba(255, 55, 154, 0.1);
}

.team-header-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.team-header-info {
    flex: 1;
}

.team-sport-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--magenta);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.team-excerpt {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
}

.team-header-image img {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 4px solid;
}

/* ========================================
   PLAYERS GRID
   ======================================== */
.team-roster {
    margin-top: 60px;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.player-card {
    position: relative;
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 55, 154, 0.1);
    transition: var(--transition);
}

.player-card:hover {
    transform: translateY(-8px);
    border-color: var(--team-color, var(--magenta));
    box-shadow: 0 0 30px rgba(255, 55, 154, 0.2);
}

.player-card-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.player-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-dorsal-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
}

.player-dorsal {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-card-info {
    padding: 15px 20px;
    text-align: center;
}

.player-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.player-position {
    font-size: 0.85rem;
    color: var(--magenta);
}

.player-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ========================================
   PLAYER HEADER
   ======================================== */
.player-header {
    padding: 140px 0 60px;
    border-bottom: 1px solid rgba(255, 55, 154, 0.1);
}

.player-header-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.player-photo {
    position: relative;
}

.player-photo img {
    width: 250px;
    height: 250px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 4px solid;
}

.player-photo-placeholder {
    width: 250px;
    height: 250px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid;
}

.dorsal-large {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
}

.player-dorsal-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
}

.player-info {
    flex: 1;
}

.player-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
}

.player-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.player-meta-item {
    padding: 15px 20px;
    background: var(--dark-card);
    border-radius: var(--radius-sm);
}

.meta-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.meta-value {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
}

.player-social {
    display: flex;
    gap: 12px;
}

.social-link-small {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background: var(--dark-card);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link-small:hover {
    background: var(--magenta);
    color: var(--white);
    transform: scale(1.1);
}

/* ========================================
   MATCH HEADER
   ======================================== */
.match-header {
    padding: 140px 0 60px;
    background: var(--gradient-dark);
    text-align: center;
    border-bottom: 1px solid rgba(255, 55, 154, 0.1);
}

.match-competition {
    display: inline-block;
    padding: 6px 16px;
    background: var(--magenta);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.match-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
}

/* ========================================
   MATCH DISPLAY
   ======================================== */
.match-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 50px 30px;
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.match-team {
    text-align: center;
    flex: 1;
}

.match-team-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 15px;
}

.match-team-logo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.match-team-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.match-team-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.match-score {
    text-align: center;
    min-width: 150px;
}

.score-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.score-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
}

.score-separator {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
}

.score-vs {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--magenta);
}

.match-status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-finalizado {
    background: rgba(100, 100, 100, 0.3);
    color: rgba(255, 255, 255, 0.7);
}

.status-en-vivo {
    background: rgba(255, 55, 154, 0.2);
    color: var(--magenta);
    animation: pulse 2s infinite;
}

.status-proximo {
    background: rgba(255, 55, 154, 0.1);
    color: var(--magenta);
}

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

.match-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.match-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--dark-card);
    border-radius: var(--radius-md);
}

.match-detail svg {
    color: var(--magenta);
    flex-shrink: 0;
}

.detail-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.detail-value {
    font-weight: 600;
    color: var(--white);
}

.match-content {
    padding: 30px;
    background: var(--dark-card);
    border-radius: var(--radius-md);
}

.match-content h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

/* ========================================
   POST NAVIGATION
   ======================================== */
.post-navigation {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 55, 154, 0.1);
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
}

.post-navigation .nav-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.post-navigation .nav-title {
    color: var(--magenta);
    font-weight: 500;
}

/* ========================================
   POST META
   ======================================== */
.post-meta {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--magenta);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* ========================================
   POST TAGS
   ======================================== */
.post-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 55, 154, 0.1);
}

.tags-label {
    font-weight: 600;
    color: var(--white);
    margin-right: 10px;
}

.post-tags a {
    display: inline-block;
    padding: 5px 12px;
    background: var(--dark-card);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 3px;
}

.post-tags a:hover {
    background: var(--magenta);
    color: var(--white);
}

/* ========================================
   404 PAGE
   ======================================== */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.error-content {
    max-width: 500px;
}

.error-lion {
    width: 120px;
    margin: 0 auto 30px;
    opacity: 0.8;
}

.error-code {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 800;
    color: var(--magenta);
    line-height: 1;
    margin-bottom: 10px;
}

.error-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.error-message {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

/* ========================================
   SEARCH RESULTS
   ======================================== */
.search-results {
    max-width: 800px;
    margin: 0 auto;
}

.search-result-item {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 55, 154, 0.1);
}

.result-thumbnail img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.result-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.result-title a {
    color: var(--white);
}

.result-title a:hover {
    color: var(--magenta);
}

.result-excerpt {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.result-type {
    font-size: 0.8rem;
    color: var(--magenta);
    text-transform: uppercase;
}

.no-results {
    text-align: center;
    padding: 80px 20px;
}

/* ========================================
   SOCIAL SECTION (Team page)
   ======================================== */
.team-social {
    margin-top: 60px;
    text-align: center;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--dark-card);
    border-radius: var(--radius-md);
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(255, 55, 154, 0.1);
}

.social-btn:hover {
    transform: translateY(-3px);
    color: var(--white);
}

.social-btn.instagram:hover { background: #E4405F; border-color: #E4405F; }
.social-btn.twitter:hover { background: #1DA1F2; border-color: #1DA1F2; }
.social-btn.youtube:hover { background: #FF0000; border-color: #FF0000; }
.social-btn.twitch:hover { background: #9146FF; border-color: #9146FF; }

/* ========================================
   PLAYER BIO
   ======================================== */
.player-bio {
    max-width: 800px;
    margin: 0 auto;
}

.player-bio h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.player-team-link {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 55, 154, 0.1);
}

.footer-main {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social .social-link:hover {
    background: var(--magenta);
    color: var(--white);
    transform: scale(1.1);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--magenta);
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-menu li a:hover {
    color: var(--magenta);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-contact li svg {
    color: var(--magenta);
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact li a:hover {
    color: var(--magenta);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--magenta);
}

/* ========================================
   FILTER BUTTONS
   ======================================== */
.teams-filter,
.players-filter,
.matches-filter,
.news-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 55, 154, 0.2);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--magenta);
    border-color: var(--magenta);
    color: var(--white);
}

/* ========================================
   PAGINATION
   ======================================== */
.pagination {
    margin-top: 50px;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 55, 154, 0.15);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--magenta);
    border-color: var(--magenta);
    color: var(--white);
}

.pagination .prev,
.pagination .next {
    padding: 0 20px;
}

/* ========================================
   COMMENTS
   ======================================== */
.comments-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 55, 154, 0.1);
}

.comments-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 30px;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list .comment {
    padding: 25px;
    background: var(--dark-card);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 55, 154, 0.1);
}

.comment-list .comment .comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-list .comment .comment-author img {
    border-radius: var(--radius-full);
    border: 2px solid var(--magenta);
}

.comment-list .comment .comment-author b.fn {
    color: var(--white);
    font-weight: 600;
}

.comment-list .comment .comment-metadata {
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.comment-list .comment .comment-metadata a {
    color: rgba(255, 255, 255, 0.5);
}

.comment-list .comment .comment-metadata a:hover {
    color: var(--magenta);
}

.comment-list .comment .comment-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.comment-list .comment .reply a {
    color: var(--magenta);
    font-size: 0.85rem;
    font-weight: 500;
}

.comment-respond {
    margin-top: 40px;
}

.comment-respond h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
}

.comment-form .comment-form-comment textarea {
    width: 100%;
    min-height: 120px;
    padding: 15px;
    background: var(--gray-dark);
    border: 1px solid var(--gray-medium);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    resize: vertical;
}

.comment-form .comment-form-comment textarea:focus {
    border-color: var(--magenta);
    outline: none;
}

.comment-form label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.comment-form .form-control {
    width: 100%;
    padding: 12px 15px;
    background: var(--gray-dark);
    border: 1px solid var(--gray-medium);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1rem;
}

.comment-form .form-control:focus {
    border-color: var(--magenta);
    outline: none;
}

.comment-form .submit-btn {
    margin-top: 15px;
}

.no-comments {
    padding: 30px;
    background: var(--dark-card);
    border-radius: var(--radius-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   WIDGETS
   ======================================== */
.widget {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--dark-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 55, 154, 0.1);
}

.widget-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 55, 154, 0.15);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--magenta);
}

/* Next Match Widget */
.widget-match {
    text-align: center;
}

.widget-match-date {
    margin-bottom: 15px;
}

.widget-match-date .match-day {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--magenta);
    line-height: 1;
}

.widget-match-date .match-month {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.widget-match-teams {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--white);
}

.widget-match-teams .vs {
    color: var(--magenta);
}

.widget-match-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Social Widget */
.widget-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.widget-social .social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 55, 154, 0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    transition: var(--transition);
}

.widget-social .social-link:hover {
    background: var(--magenta);
    transform: scale(1.1);
}

/* Teams List Widget */
.widget-teams-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-teams-list li {
    margin-bottom: 12px;
}

.widget-teams-list li:last-child {
    margin-bottom: 0;
}

.widget-teams-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 55, 154, 0.05);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.widget-teams-list a:hover {
    background: rgba(255, 55, 154, 0.15);
}

.team-widget-img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.team-widget-color {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
}

.team-widget-info {
    display: flex;
    flex-direction: column;
}

.team-widget-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.team-widget-sport {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--dark-card);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    clip: auto !important;
    clip-path: none;
    color: var(--magenta);
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Skip to content */
.skip-link {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--magenta);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 600;
    z-index: 100000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Focus states */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--magenta);
    outline-offset: 2px;
}

/* ========================================
   LOADING STATES
   ======================================== */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 55, 154, 0.2);
    border-radius: 50%;
    border-top-color: var(--magenta);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   NOTIFICATION / ALERTS
   ======================================== */
.mtc-alert {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.mtc-alert-success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.mtc-alert-error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

.mtc-alert-info {
    background: rgba(0, 123, 255, 0.15);
    border: 1px solid rgba(0, 123, 255, 0.3);
    color: #007bff;
}

/* ========================================
   FORM STYLES
   ======================================== */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 14px 18px;
    background: var(--gray-dark);
    border: 1px solid var(--gray-medium);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    border-color: var(--magenta);
    box-shadow: 0 0 0 3px rgba(255, 55, 154, 0.1);
    outline: none;
}

.wpcf7 label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.wpcf7 .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 20px;
}

.wpcf7 .wpcf7-submit {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.wpcf7 .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   HIDDEN ELEMENTS
   ======================================== */
.menu-open {
    overflow: hidden;
}

.header-hidden {
    transform: translateY(-100%);
}

/* ========================================
   NEWS FILTER ANIMATION
   ======================================== */
.news-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.news-card.hidden {
    opacity: 0;
    transform: scale(0.95);
    position: absolute;
    pointer-events: none;
}

/* ========================================
   BREADCRUMBS
   ======================================== */
.breadcrumbs {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 55, 154, 0.05);
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumbs-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs-item:not(:last-child)::after {
    content: '/';
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumbs-item a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.breadcrumbs-item a:hover {
    color: var(--magenta);
}

.breadcrumbs-item.active {
    color: var(--white);
    font-weight: 500;
}

/* ========================================
   PAGE SUBTITLE
   ======================================== */
.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--magenta);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 55, 154, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 55, 154, 0.5);
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    background: var(--dark-card);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 55, 154, 0.1);
    border-bottom: 1px solid rgba(255, 55, 154, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--magenta);
    line-height: 1;
    margin-bottom: 10px;
}

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

/* ========================================
   TEAM CARD OVERLAY
   ======================================== */
.team-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 10, 18, 0.95) 0%, transparent 100%);
    pointer-events: none;
}

.team-sport-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* ========================================
   SCROLL INDICATOR
   ======================================== */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.scroll-indicator:hover {
    color: var(--magenta);
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

.newsletter-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.newsletter-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.newsletter-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.newsletter-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.newsletter-form {
    flex: 1;
    position: relative;
    z-index: 1;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 6px;
    backdrop-filter: blur(10px);
}

.newsletter-input-group input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: var(--white);
    font-size: 1rem;
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input-group input:focus {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.25);
}

.newsletter-input-group .btn {
    background: var(--white);
    color: var(--magenta);
    border: none;
    padding: 14px 30px;
    font-weight: 700;
}

.newsletter-input-group .btn:hover {
    background: var(--dark-bg);
    color: var(--white);
}

.newsletter-note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.newsletter-success {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-weight: 500;
    animation: fadeInUp 0.5s ease;
}

/* ========================================
   RESPONSIVE STATS & NEWSLETTER
   ======================================== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .newsletter-box {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-input-group .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* ========================================
   RESPONSIVE STYLES
   ======================================== */


/* ========================================
   TABLET (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
    .teams-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .match-display {
        gap: 25px;
    }

    .match-team-logo,
    .match-team-logo-placeholder {
        width: 90px;
        height: 90px;
    }

    .score-number {
        font-size: 2.5rem;
    }

    .players-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

/* ========================================
   TABLET SMALL (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-navigation .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--dark-card);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 5px;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 1500;
        border-left: 1px solid rgba(255, 55, 154, 0.2);
    }

    .main-navigation .nav-menu.active {
        right: 0;
    }

    .nav-menu li a {
        padding: 14px 20px;
        font-size: 1.1rem;
    }

    .nav-menu li ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 154, 0.05);
        border-radius: var(--radius-sm);
        margin-top: 5px;
        margin-left: 20px;
        padding: 5px 0;
    }

    .nav-menu > li > a::after {
        display: none;
    }

    .menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
    }

    .header-top {
        display: none;
    }

    .hero-nav {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-lion {
        width: 100px;
    }

    .section {
        padding: 60px 0;
    }

    .teams-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-card {
        display: flex;
        flex-direction: row;
    }

    .team-card-bg {
        width: 120px;
        height: auto;
        min-height: 150px;
    }

    .team-card-content {
        padding: 20px;
        flex: 1;
    }

    .team-name {
        font-size: 1.2rem;
    }

    .matches-list {
        gap: 10px;
    }

    .match-card {
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px;
    }

    .match-date {
        min-width: auto;
    }

    .match-teams {
        order: -1;
        width: 100%;
        justify-content: center;
    }

    .match-team {
        font-size: 0.95rem;
    }

    .match-info {
        width: 100%;
        justify-content: center;
    }

    .match-link {
        width: 100%;
        text-align: center;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .team-header-inner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .team-header-image img {
        width: 150px;
        height: 150px;
    }

    .player-header-inner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .player-photo img,
    .player-photo-placeholder {
        width: 200px;
        height: 200px;
    }

    .player-meta-grid {
        grid-template-columns: 1fr;
    }

    .player-social {
        justify-content: center;
    }

    .match-display {
        flex-direction: column;
        gap: 30px;
    }

    .match-team-logo,
    .match-team-logo-placeholder {
        width: 100px;
        height: 100px;
    }

    .match-details-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .sponsors-grid {
        gap: 25px;
    }

    .sponsor-placeholder {
        width: 120px;
        height: 60px;
    }

    .social-links-large {
        flex-direction: column;
        align-items: center;
    }

    .social-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ========================================
   MOBILE (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-section {
        min-height: 500px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .hero-lion {
        width: 80px;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .team-card {
        flex-direction: column;
    }

    .team-card-bg {
        width: 100%;
        height: 180px;
    }

    .team-card-content {
        padding: 15px;
    }

    .match-card {
        padding: 15px;
    }

    .match-team {
        font-size: 0.85rem;
    }

    .match-vs {
        font-size: 0.8rem;
    }

    .score-number {
        font-size: 2rem;
    }

    .player-title {
        font-size: 1.8rem;
    }

    .players-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .player-card-img {
        height: 180px;
    }

    .player-name {
        font-size: 0.9rem;
    }

    .error-code {
        font-size: 5rem;
    }

    .error-title {
        font-size: 1.4rem;
    }

    .search-result-item {
        flex-direction: column;
        gap: 15px;
    }

    .result-thumbnail img {
        width: 100%;
        height: 150px;
    }

    .post-navigation .nav-links {
        flex-direction: column;
        gap: 20px;
    }
}

/* ========================================
   MOBILE SMALL (max-width: 360px)
   ======================================== */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .players-grid {
        grid-template-columns: 1fr;
    }

    .player-card-img {
        height: 220px;
    }

    .match-team-logo,
    .match-team-logo-placeholder {
        width: 70px;
        height: 70px;
    }
}

/* ========================================
   HIGH RESOLUTION (min-width: 1400px)
   ======================================== */
@media (min-width: 1400px) {
    .container {
        max-width: 1380px;
    }

    .hero-title {
        font-size: 5rem;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .site-header,
    .site-footer,
    .hero-nav,
    .hero-dots,
    .search-toggle,
    .header-cart-link {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero-section {
        height: auto;
        min-height: 0;
        padding: 20px;
    }

    a {
        color: black;
        text-decoration: underline;
    }
}
/* ========================================
   SLIDER STYLES
   ======================================== */


/* Hero Slider Animations */
.hero-slide {
    animation: none;
}

.hero-slide.active {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Slide Transitions */
.hero-slide {
    transition: opacity 1s ease-in-out;
}

/* Ken Burns Effect on Active Slide */
.hero-slide.active {
    animation: kenBurns 20s ease-in-out infinite;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Hero Content Animation */
.hero-slide.active ~ .hero-content .hero-title,
.hero-slide.active ~ .hero-content .hero-subtitle,
.hero-slide.active ~ .hero-content .hero-btn {
    animation: slideUp 0.8s ease forwards;
}

.hero-slide.active ~ .hero-content .hero-subtitle {
    animation-delay: 0.2s;
}

.hero-slide.active ~ .hero-content .hero-btn {
    animation-delay: 0.4s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dot Animations */
.hero-dot {
    transition: all 0.3s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero-dot.active {
    background: var(--magenta);
    width: 30px;
}

/* Arrow Hover Effects */
.hero-arrow {
    transition: all 0.3s ease;
}

.hero-arrow:hover {
    background: var(--magenta);
    border-color: var(--magenta);
    transform: scale(1.1);
}

.hero-arrow:active {
    transform: scale(0.95);
}

/* Pause/Play Button */
.hero-pause {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.hero-pause:hover {
    background: var(--magenta);
    border-color: var(--magenta);
}

/* Mobile Slider Adjustments */
@media (max-width: 768px) {
    .hero-slide.active {
        animation: none;
    }

    @keyframes kenBurns {
        0% { transform: scale(1); }
        100% { transform: scale(1); }
    }
}
/* ========================================
   ANIMATIONS
   ======================================== */


/* ========================================
   ANIMATIONS CSS
   ======================================== */

/* Fade In Up */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Fade In Down */
.animate-fade-in-down {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Fade In Left */
.animate-fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade In Right */
.animate-fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale In */
.animate-scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Rotate In */
.animate-rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-rotate-in.visible {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Flip In X */
.animate-flip-in-x {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-flip-in-x.visible {
    opacity: 1;
    transform: perspective(400px) rotateX(0);
}

/* Flip In Y */
.animate-flip-in-y {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-flip-in-y.visible {
    opacity: 1;
    transform: perspective(400px) rotateY(0);
}

/* Slide In Up */
.animate-slide-in-up {
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Slide In Down */
.animate-slide-in-down {
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-slide-in-down.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Zoom In */
.animate-zoom-in {
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Bounce In */
.animate-bounce-in {
    opacity: 0;
    transform: scale(0.3);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-bounce-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Rubber Band */
.animate-rubber-band {
    opacity: 0;
    transform: scale(0.3);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-rubber-band.visible {
    opacity: 1;
    transform: scale(1);
}

/* Jello */
.animate-jello {
    opacity: 0;
    transform: skewX(-5deg);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-jello.visible {
    opacity: 1;
    transform: skewX(0);
}

/* Pulse */
.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Shake */
.animate-shake {
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Tada */
.animate-tada {
    animation: tada 1s infinite;
}

@keyframes tada {
    0%, 100% { transform: scale(1) rotate(0); }
    10%, 20% { transform: scale(0.9) rotate(-3deg); }
    30%, 50%, 70%, 90% { transform: scale(1.1) rotate(3deg); }
    40%, 60%, 80% { transform: scale(1.1) rotate(-3deg); }
}

/* Wobble */
.animate-wobble {
    animation: wobble 1s infinite;
}

@keyframes wobble {
    0%, 100% { transform: translateX(0); }
    15% { transform: translateX(-25px) rotate(-5deg); }
    30% { transform: translateX(20px) rotate(3deg); }
    45% { transform: translateX(-15px) rotate(-3deg); }
    60% { transform: translateX(10px) rotate(2deg); }
    75% { transform: translateX(-5px) rotate(-1deg); }
}

/* Swing */
.animate-swing {
    animation: swing 1s infinite;
    transform-origin: top center;
}

@keyframes swing {
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-10deg); }
    60% { transform: rotate(5deg); }
    80% { transform: rotate(-5deg); }
    100% { transform: rotate(0); }
}

/* Flip */
.animate-flip {
    animation: flip 1s infinite;
}

@keyframes flip {
    0% { transform: perspective(400px) rotateY(0); }
    40% { transform: perspective(400px) rotateY(-180deg); }
    100% { transform: perspective(400px) rotateY(-360deg); }
}

/* ========================================
   HOVER ANIMATIONS
   ======================================== */

/* Glow */
.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(255, 55, 154, 0.5);
}

/* Float */
.hover-float {
    transition: transform 0.3s ease;
}

.hover-float:hover {
    transform: translateY(-10px);
}

/* Scale */
.hover-scale {
    transition: transform 0.3s ease;
}

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

/* Rotate */
.hover-rotate {
    transition: transform 0.3s ease;
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

/* Grayscale */
.hover-grayscale {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.hover-grayscale:hover {
    filter: grayscale(0);
}

/* Brightness */
.hover-brightness {
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.hover-brightness:hover {
    filter: brightness(1.1);
}

/* Underline */
.hover-underline {
    position: relative;
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--magenta);
    transition: width 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
}

/* ========================================
   STAGGER ANIMATIONS
   ======================================== */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   LOADING ANIMATIONS
   ======================================== */

/* Dots */
.loading-dots {
    display: flex;
    gap: 5px;
}

.loading-dots span {
    width: 10px;
    height: 10px;
    background: var(--magenta);
    border-radius: 50%;
    animation: loadingDots 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes loadingDots {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Bar */
.loading-bar {
    width: 100%;
    height: 4px;
    background: var(--gray-dark);
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--magenta);
    border-radius: 2px;
    animation: loadingBar 1.5s infinite ease-in-out;
}

@keyframes loadingBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* Ring */
.loading-ring {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-dark);
    border-top-color: var(--magenta);
    border-radius: 50%;
    animation: loadingRing 1s linear infinite;
}

@keyframes loadingRing {
    to { transform: rotate(360deg); }
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   COUNTER ANIMATION
   ======================================== */
.counter {
    font-variant-numeric: tabular-nums;
}

.counter-animate {
    transition: all 0.5s ease;
}

/* ========================================
   TEXT ANIMATIONS
   ======================================== */

/* Typewriter */
.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--magenta);
    white-space: nowrap;
    animation: typewriter 3s steps(40) 1s forwards, blink 0.75s step-end infinite;
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Neon Glow */
.neon-glow {
    text-shadow: 0 0 10px var(--magenta), 0 0 20px var(--magenta), 0 0 30px var(--magenta);
}

/* ========================================
   TRANSITION DELAYS
   ======================================== */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
.delay-700 { transition-delay: 0.7s; }
.delay-800 { transition-delay: 0.8s; }
.delay-900 { transition-delay: 0.9s; }
.delay-1000 { transition-delay: 1s; }

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .animate-fade-in-up,
    .animate-fade-in-down,
    .animate-fade-in-left,
    .animate-fade-in-right,
    .animate-scale-in,
    .animate-rotate-in,
    .animate-flip-in-x,
    .animate-flip-in-y,
    .animate-slide-in-up,
    .animate-slide-in-down,
    .animate-zoom-in,
    .animate-bounce-in,
    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}
/* ========================================
   WOOCOMMERCE
   ======================================== */


/* ========================================
   WOOCOMMERCE GENERAL
   ======================================== */
.woocommerce ul.products,
.woocommerce ul.products li.product {
    margin: 0;
    padding: 0;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.woocommerce ul.products li.product {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 55, 154, 0.1);
    transition: var(--transition);
    width: 100%;
    float: none;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-8px);
    border-color: var(--magenta);
    box-shadow: var(--shadow-glow);
}

.woocommerce ul.products li.product a img {
    margin: 0;
    border-radius: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 15px 20px 5px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.woocommerce ul.products li.product .price {
    padding: 0 20px 15px;
    color: var(--magenta);
    font-size: 1.2rem;
    font-weight: 700;
}

.woocommerce ul.products li.product .price del {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin-right: 8px;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
    margin: 0 20px 20px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    width: calc(100% - 40px);
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   PRODUCT CATEGORY HEADER
   ======================================== */
.woocommerce .woocommerce-products-header {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 55, 154, 0.1);
    margin-bottom: 30px;
}

.woocommerce .woocommerce-products-header__title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

/* ========================================
   SINGLE PRODUCT
   ======================================== */
.woocommerce div.product {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 55, 154, 0.1);
    padding: 30px;
}

.woocommerce div.product div.images {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.woocommerce div.product div.images img {
    border-radius: var(--radius-md);
}

.woocommerce div.product div.summary {
    padding: 0;
}

.woocommerce div.product .product_title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.woocommerce div.product p.price {
    color: var(--magenta);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ========================================
   ADD TO CART BUTTON
   ======================================== */
.woocommerce div.product form.cart {
    margin-bottom: 0;
}

.woocommerce div.product form.cart .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.woocommerce div.product form.cart .button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   QUANTITY INPUT
   ======================================== */
.woocommerce div.product form.cart .quantity {
    margin-right: 15px;
}

.woocommerce div.product form.cart .quantity .qty {
    background: var(--gray-dark);
    border: 1px solid var(--gray-medium);
    border-radius: var(--radius-sm);
    color: var(--white);
    padding: 10px 15px;
    width: 80px;
    font-size: 1rem;
}

.woocommerce div.product form.cart .quantity .qty:focus {
    border-color: var(--magenta);
    outline: none;
}

/* ========================================
   CART
   ======================================== */
.woocommerce table.shop_table {
    background: var(--dark-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 55, 154, 0.1);
}

.woocommerce table.shop_table th {
    background: var(--gray-dark);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 15px 20px;
}

.woocommerce table.shop_table td {
    padding: 20px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 55, 154, 0.1);
    vertical-align: middle;
}

.woocommerce table.shop_table td.product-name {
    color: var(--white);
    font-weight: 500;
}

.woocommerce table.shop_table td.product-price,
.woocommerce table.shop_table td.product-subtotal {
    color: var(--magenta);
    font-weight: 600;
}

/* Cart Total */
.woocommerce .cart-collaterals {
    margin-top: 30px;
}

.woocommerce .cart-collaterals .cart_totals {
    background: var(--dark-card);
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid rgba(255, 55, 154, 0.1);
}

.woocommerce .cart-collaterals .cart_totals h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.woocommerce .cart-collaterals .cart_totals table th {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.woocommerce .cart-collaterals .cart_totals table td {
    color: var(--white);
    font-weight: 600;
}

.woocommerce .cart-collaterals .cart_totals .order-total td {
    color: var(--magenta);
    font-size: 1.3rem;
}

/* ========================================
   CHECKOUT
   ======================================== */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    background: var(--gray-dark);
    border: 1px solid var(--gray-medium);
    border-radius: var(--radius-sm);
    color: var(--white);
    padding: 12px 15px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--magenta);
    outline: none;
}

.woocommerce form .form-row label {
    color: var(--white);
    font-weight: 500;
}

/* ========================================
   WIDGETS
   ======================================== */
.woocommerce.widget {
    background: var(--dark-card);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid rgba(255, 55, 154, 0.1);
}

.woocommerce.widget h2,
.woocommerce.widget h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 55, 154, 0.1);
}

.woocommerce.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 154, 0.05);
}

.woocommerce.widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.woocommerce.widget ul li a:hover {
    color: var(--magenta);
}

/* ========================================
   BREADCRUMBS
   ======================================== */
.woocommerce .woocommerce-breadcrumb {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.woocommerce .woocommerce-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
}

.woocommerce .woocommerce-breadcrumb a:hover {
    color: var(--magenta);
}

/* ========================================
   SALES BADGE
   ======================================== */
.woocommerce span.onsale {
    background: var(--magenta);
    color: var(--white);
    border-radius: var(--radius-sm);
    min-width: auto;
    min-height: auto;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
}

/* ========================================
   RESPONSIVE WOOCOMMERCE
   ======================================== */
@media (max-width: 1024px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .woocommerce div.product {
        padding: 20px;
    }

    .woocommerce div.product div.images,
    .woocommerce div.product div.summary {
        width: 100% !important;
        float: none !important;
    }

    .woocommerce table.shop_table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .woocommerce ul.products li.product .button,
    .woocommerce ul.products li.product .add_to_cart_button {
        width: 100%;
    }
}