/* Reset et Variables */
:root {
    --world-red: #ff6b6b;
    --world-orange: #ee5a24;
    --world-blue: #3498db;
    --world-green: #2ecc71;
    --world-purple: #9b59b6;
    --world-dark: #2c3e50;
    --world-light: #ecf0f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    line-height: 1.6;
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

.logo-icon {
    font-size: 32px;
    color: var(--world-red);
    animation: spinGlobe 20s linear infinite;
}

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

.logo-text h1 {
    color: var(--world-dark);
    font-size: 28px;
    background: linear-gradient(90deg, var(--world-red), var(--world-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.logo-text p {
    color: #7f8c8d;
    font-size: 13px;
    font-weight: 500;
}

.header-controls {
    display: flex;
    gap: 20px;
    align-items: center;
}

.world-globe {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, var(--world-red), var(--world-orange));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.world-globe i {
    font-size: 16px;
}

select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 120px;
}

select:hover {
    border-color: var(--world-red);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

/* Navigation */
nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: linear-gradient(90deg, var(--world-dark), #34495e);
    border-radius: 0 0 15px 15px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s;
    font-size: 15px;
}

.nav-menu a:hover {
    color: var(--world-red);
}

.nav-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--world-red);
    border-radius: 2px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
    z-index: 1;
    padding: 10px 0;
    top: 100%;
    border: 1px solid #eee;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-content a {
    color: var(--world-dark) !important;
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
}

.dropdown-content a:hover {
    background: linear-gradient(90deg, rgba(255,107,107,0.1), rgba(238,90,36,0.1));
    color: var(--world-red) !important;
}

/* User Actions */
.user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login, .btn-register {
    padding: 10px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-login {
    color: var(--world-red);
    border: 2px solid var(--world-red);
}

.btn-register {
    background: linear-gradient(90deg, var(--world-red), var(--world-orange));
    color: white;
}

.btn-login:hover {
    background: var(--world-red);
    color: white;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.cart-btn {
    position: relative;
    background: white;
    padding: 10px;
    border-radius: 10px;
    color: var(--world-dark);
    font-size: 20px;
    transition: all 0.3s;
}

.cart-btn:hover {
    background: var(--world-red);
    color: white;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--world-red);
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.9)),
                url('https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=1600');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 52px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--world-red), var(--world-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.search-bar {
    max-width: 600px;
    margin: 0 auto 50px;
    display: flex;
    gap: 10px;
}

.search-bar input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.95);
}

.search-bar button {
    background: linear-gradient(90deg, var(--world-red), var(--world-orange));
    color: white;
    border: none;
    padding: 0 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.search-bar button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--world-red);
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-stats .label {
    font-size: 16px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Categories */
.categories, .featured {
    padding: 80px 0;
    background: #f8f9fa;
}

.categories h2, .featured h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--world-dark);
}

.categories h2 {
    background: linear-gradient(90deg, var(--world-red), var(--world-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-align: center;
    padding: 40px 25px;
    position: relative;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--world-red);
}

.category-card i {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--world-red), var(--world-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--world-dark);
}

.category-card .btn-view {
    display: inline-block;
    margin-top: 15px;
    color: var(--world-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    border-color: var(--world-red);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, var(--world-red), var(--world-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--world-dark);
}

.product-category {
    display: inline-block;
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
    color: var(--world-red);
    font-weight: 600;
}

.product-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--world-dark);
    margin-bottom: 15px;
}

.product-price .currency {
    font-size: 16px;
    color: #7f8c8d;
}

.btn-add-cart {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, var(--world-red), var(--world-orange));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
}

.btn-add-cart:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Section Football */
.football-players-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.football-players-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--world-dark);
}

.football-players-section h2 i {
    color: var(--world-orange);
    margin-right: 15px;
}

.players-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(90deg, var(--world-red), var(--world-orange));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

.flag-brazil, .flag-argentina, .flag-italy {
    display: inline-block;
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.flag-brazil { background: linear-gradient(135deg, #009c3b 50%, #ffdf00 50%); }
.flag-argentina { background: linear-gradient(to bottom, #75aadb 33%, white 33%, white 67%, #75aadb 67%); }
.flag-italy { background: linear-gradient(to right, #009246 33%, white 33%, white 67%, #ce2b37 67%); }

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

.player-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
}

.player-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.player-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--world-dark);
    position: relative;
    display: flex;
    align-items: flex-end;
}

.player-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.player-rarity {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.player-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(90deg, var(--world-red), var(--world-orange));
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 18px;
}

.player-info {
    padding: 20px;
}

.player-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--world-dark);
}

.player-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #7f8c8d;
}

.player-team {
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 8px;
    font-weight: 600;
}

.player-position {
    background: var(--world-orange);
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-weight: 700;
}

/* Section Pokémon */
.pokemon-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--world-red) 0%, var(--world-orange) 100%);
    color: white;
}

.pokemon-header {
    text-align: center;
    margin-bottom: 50px;
}

.pokemon-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.pokemon-header h2 i {
    margin-right: 15px;
}

.pokemon-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.pokemon-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.type-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.type-filter {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
}

.type-filter.active,
.type-filter:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    background: white;
    color: var(--world-red);
}

.pokemon-search {
    display: flex;
    gap: 15px;
}

.pokemon-search input {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    background: rgba(255,255,255,0.9);
    color: #333;
    font-size: 14px;
    min-width: 250px;
}

.pokemon-search select {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    background: rgba(255,255,255,0.9);
    color: #333;
    font-size: 14px;
    cursor: pointer;
}

.pokemon-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.pokemon-stat {
    text-align: center;
}

.pokemon-stat .stat-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.pokemon-stat .stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pokemon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.pokemon-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
}

.pokemon-card:hover {
    transform: translateY(-10px);
    border-color: white;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.pokemon-card-header {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.pokemon-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.pokemon-card:hover .pokemon-card-image {
    transform: scale(1.1);
}

.pokemon-card-type {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pokemon-card-rarity {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--world-red);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pokemon-card-body {
    padding: 20px;
}

.pokemon-card-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.pokemon-card-name h3 {
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.pokemon-card-generation {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 10px;
    color: white;
}

.pokemon-card-set {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.pokemon-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pokemon-card-price {
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.pokemon-card-price .currency {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.btn-pokemon-add {
    background: white;
    color: var(--world-red);
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-pokemon-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Section Clubs */
.clubs-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--world-dark) 0%, #34495e 100%);
    color: white;
}

.clubs-header {
    text-align: center;
    margin-bottom: 50px;
}

.clubs-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.clubs-header h2 i {
    margin-right: 15px;
    color: var(--world-red);
}

.clubs-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.clubs-controls {
    margin-bottom: 40px;
}

.continent-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.continent-btn {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.continent-btn.active,
.continent-btn:hover {
    background: var(--world-red);
    color: white;
    border-color: var(--world-red);
    transform: translateY(-2px);
}

.clubs-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.club-stat {
    display: flex;
    align-items: center;
    gap: 20px;
}

.club-stat .stat-icon {
    font-size: 40px;
    background: rgba(255, 107, 107, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.club-stat .stat-content {
    flex: 1;
}

.club-stat .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--world-red);
    line-height: 1;
}

.club-stat .stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.club-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
}

.club-card:hover {
    transform: translateY(-10px);
    border-color: var(--world-red);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.club-card-header {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.club-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.club-card:hover .club-card-image {
    transform: scale(1.1);
}

.club-card-country {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--world-red);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.club-card-founded {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(52, 152, 219, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.club-card-body {
    padding: 25px;
}

.club-card-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.club-card-league {
    font-size: 14px;
    background: rgba(255, 107, 107, 0.2);
    padding: 5px 10px;
    border-radius: 10px;
    color: var(--world-red);
}

.club-card-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    min-height: 40px;
}

.club-card-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.club-stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 10px;
}

.club-stat-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--world-red);
    line-height: 1;
}

.club-stat-label {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.7);
}

.club-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.club-card-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--world-red);
}

.club-card-price .currency {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.btn-club-add {
    background: var(--world-red);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-club-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Section Moments */
.moments-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.moments-header {
    text-align: center;
    margin-bottom: 50px;
}

.moments-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--world-red);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.moments-header h2 i {
    margin-right: 15px;
}

.moments-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.moment-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
}

.moment-card:hover {
    transform: translateY(-10px);
    border-color: var(--world-red);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.moment-card-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.moment-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.moment-card:hover .moment-card-image {
    transform: scale(1.1);
}

.moment-card-competition {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--world-red);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.moment-card-score {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--world-red);
    color: white;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 800;
}

.moment-card-body {
    padding: 25px;
}

.moment-card-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.moment-card-subtitle {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.moment-card-date {
    background: rgba(52, 152, 219, 0.2);
    padding: 5px 10px;
    border-radius: 10px;
}

.moment-card-stadium {
    background: rgba(46, 204, 113, 0.2);
    padding: 5px 10px;
    border-radius: 10px;
}

.moment-card-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    min-height: 60px;
}

.moment-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.moment-card-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--world-red);
}

.moment-card-price .currency {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.btn-moment-add {
    background: var(--world-red);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-moment-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Section Hockey */
.hockey-section {
    background: linear-gradient(135deg, #0d47a1 0%, #1e88e5 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hockey-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hockey-section h2 i {
    margin-right: 15px;
}

.hockey-section > p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hockey-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hockey-stats .stat {
    text-align: center;
}

.hockey-stats .number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hockey-stats .label {
    font-size: 16px;
    opacity: 0.8;
}

/* CTA */
.cta-players {
    background: linear-gradient(135deg, var(--world-red) 0%, var(--world-orange) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-players h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-players p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.btn-primary {
    background: white;
    color: var(--world-red);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-secondary:hover {
    background: white;
    color: var(--world-red);
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: var(--world-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--world-red);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 32px;
    color: var(--world-red);
}

.footer-logo h3 {
    font-size: 24px;
    margin: 0;
    background: linear-gradient(90deg, var(--world-red), var(--world-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.6;
}

.world-flags {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    font-size: 24px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--world-red);
}

.footer-section i.fas {
    margin-right: 10px;
    color: var(--world-red);
}

.social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s;
    color: white;
}

.social a:hover {
    background: var(--world-red);
    transform: translateY(-3px);
}

.newsletter {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
}

.newsletter input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter button {
    background: var(--world-red);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.newsletter button:hover {
    background: var(--world-orange);
}

.newsletter-note {
    font-size: 12px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--world-red);
}

.language-note {
    margin-top: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.language-note i {
    margin-right: 5px;
    color: var(--world-red);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .search-bar {
        flex-direction: column;
    }
    
    .search-bar button {
        width: 100%;
        padding: 15px;
    }
    
    .header-controls {
        flex-direction: column;
        gap: 10px;
    }
    
    .pokemon-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 30px;
    }
    
    .hero-stats .number {
        font-size: 32px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .players-grid, .pokemon-grid, .clubs-grid, .moments-grid {
        grid-template-columns: 1fr;
    }
}
