/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a1929;
    color: #fff;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header Styles */
.site-header {
    background: #0a1929;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.brand h1 {
    margin: 0;
}

.brand a {
    display: inline-block;
    text-decoration: none;
}

.header-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.header-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: #d32f2f;
}

/* Hero Section */
.hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a1929 0%, #1a1a2e 100%);
}

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

.split-wrap {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.split-item {
    display: flex;
    width: 100%;
    gap: 60px;
    align-items: center;
}

.split-item-content {
    flex: 1;
}

.split-item-image {
    flex: 1;
}

.hero-figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.button-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    transform: translateZ(0);
}

.button-primary {
    background: #d32f2f;
    color: #fff;
}

.button-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
}

.button-dark {
    background: #1a1a2e;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
}

.button-dark:hover {
    background: #2a2a2a;
    border-color: #d32f2f;
}

.button-wide-mobile {
    width: 100%;
}

@media (min-width: 768px) {
    .button-wide-mobile {
        width: auto;
    }
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1929 0%, #1a1a2e 100%);
    padding: 40px;
}

.hero-image-container img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 10px 30px rgba(211, 47, 47, 0.3));
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #d32f2f;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(211, 47, 47, 0.5);
    z-index: 10;
    border: none;
    padding: 0;
    outline: none;
    text-decoration: none;
    will-change: transform;
}

.video-play-button:hover {
    background-color: #b71c1c;
    transform: translate(-50%, -50%) scale(1.05) translateZ(0);
    box-shadow: 0 6px 25px rgba(211, 47, 47, 0.6);
}

.video-play-button svg {
    margin-left: 3px;
    pointer-events: none;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-modal:target {
    display: flex;
}

.video-modal-inner {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: #000;
    padding: 0;
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    text-decoration: none;
    z-index: 10001;
    transition: background-color 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(10px);
    transform: translateZ(0);
    line-height: 1;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05) translateZ(0);
}

.responsive-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Manager Section */
.manager {
    padding: 100px 20px;
    background: #1a1a1a;
    text-align: center;
}

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

.manager-image {
    width: 400px;
    height: 400px;
    margin: 0 auto 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #d32f2f;
    box-shadow: 0 10px 40px rgba(211, 47, 47, 0.3);
    background: #000 !important;
    position: relative;
}

.manager-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1;
}

.manager-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    position: relative;
    z-index: 2;
}

.manager h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 900;
}

.text-color-primary {
    color: #d32f2f;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.manager-content p {
    font-size: 18px;
    line-height: 1.8;
}

/* Formation Section */
.pitch-formation {
    padding: 80px 20px;
    background: #0a1929;
}

.pitch-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 60%;
    background: linear-gradient(90deg, #1a472a 0%, #2d5a3d 50%, #1a472a 100%);
    border-radius: 8px;
    border: 3px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.pitch-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(transparent 0%, transparent 20%, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.1) 21%, transparent 21%),
        linear-gradient(90deg, transparent 0%, transparent 20%, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.1) 21%, transparent 21%),
        linear-gradient(transparent 0%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 51%, transparent 51%),
        linear-gradient(90deg, transparent 0%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 51%, transparent 51%);
}

.player-marker {
    position: absolute;
    transform: translate(-50%, -50%);
}

.player-card {
    background: rgba(211, 47, 47, 0.95);
    border: 3px solid #fff;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.player-number {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
}

.player-name {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.player-position {
    font-size: 9px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

/* Players Section */
.players {
    padding: 80px 20px;
    background: #1a1a1a;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
}

.tiles-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

.tiles-item {
    width: 100%;
}

/* Responsive: 3 columns on medium screens */
/* Responsive: Adjust player grid for different screen sizes */
@media (max-width: 1400px) and (min-width: 1201px) {
    .tiles-wrap {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) and (min-width: 901px) {
    .tiles-wrap {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .team-item-image {
        max-width: 180px;
    }
    
    .team-item-image img {
        max-width: 180px;
        max-height: 180px;
    }
}

/* Medium screens (601px - 900px) */
@media (max-width: 900px) and (min-width: 601px) {
    .tiles-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .team-item-image {
        max-width: 140px;
    }
    
    .team-item-image img {
        max-width: 140px;
        max-height: 140px;
    }
    
    .team-item-name {
        font-size: 15px;
    }
    
    .legends-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .trophies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .rituals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-card {
        min-width: 200px;
        max-width: 200px;
    }
    
    .legend-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .legend-detail-image {
        position: static;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .tiles-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }
    
    .tiles-item-inner {
        padding: 15px 10px;
    }
    
    .team-item-image {
        max-width: 100px;
    }
    
    .team-item-image img {
        max-width: 100px;
        max-height: 100px;
    }
}

.tiles-item-inner {
    background: rgba(20, 20, 20, 0.9);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    transform: translateZ(0);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.tiles-item-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
    border-color: #d32f2f;
}

.team-item-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto 15px;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

.team-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 200px;
    max-height: 200px;
}

.team-item-name {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-item-role {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.team-item-role:last-child {
    color: #aaa;
    font-size: 14px;
    text-transform: uppercase;
}

/* CTA Section */
.cta {
    padding: 60px 20px;
    background: #0a1929;
}

.cta-form-container {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-form-container h3 {
    color: #d32f2f;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 30px 0;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.cta-form-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 1px;
    background: #d32f2f;
}

.newsletter-form-wrapper {
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: #2a2a2a;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: #d32f2f;
}

.button-wide {
    width: 100%;
}

.subscribe-btn {
    position: relative;
    overflow: hidden;
}

.btn-subscribed {
    display: none;
}

/* Hide form and show subscribed message when #subscribed is targeted */
#subscribed:target ~ .newsletter-form-wrapper {
    display: none;
}

#subscribed:target {
    display: block;
}

.subscribed-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 40px;
    z-index: 10;
}

#subscribed:target {
    display: block;
}

.subscribed-content {
    text-align: center;
    color: #fff;
}

.subscribed-icon {
    width: 80px;
    height: 80px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: #fff;
    font-weight: bold;
}

.subscribed-content h3 {
    color: #4caf50;
    font-size: 24px;
    margin-bottom: 15px;
}

.subscribed-content p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin-bottom: 30px;
}

/* Footer Styles */
.site-footer {
    background: #0a1929;
    color: #fff;
}

.footer-app-banner {
    background: #d32f2f;
    padding: 40px 20px;
    color: #fff;
}

.footer-app-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-app-text {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    min-width: 300px;
}

.footer-app-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.qr-code-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qr-code {
    width: 96px;
    height: 96px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0;
    text-decoration: none;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.qr-code-text {
    font-size: 13px;
    max-width: 160px;
    line-height: 1.5;
    text-align: left;
}

.footer-app-vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
    line-height: 1.2;
}

.footer-app-title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.5px;
}


.footer-sponsors {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a5490 50%, #0d1b2a 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.footer-sponsors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(211, 47, 47, 0.05) 30px, rgba(211, 47, 47, 0.05) 60px);
    pointer-events: none;
}

.sponsors-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.sponsors-header h3 {
    color: #FFD700;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.sponsors-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 15px auto;
    border-radius: 2px;
}

.sponsors-header p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin-top: 20px;
    font-style: italic;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sponsor-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    display: flex;
    transform: translateZ(0);
    align-items: center;
    justify-content: center;
    min-height: 80px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sponsor-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(26, 26, 46, 1) 0%, rgba(22, 33, 62, 1) 100%);
}

.footer-main {
    background: #0a1929;
    padding: 60px 20px 30px;
}

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

.footer-col h4 {
    color: #d32f2f;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #d32f2f;
}

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

.social-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #d32f2f;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* Utility Classes */
.mt-0 { margin-top: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.fw-600 { font-weight: 600; }
.center-content-mobile { text-align: center; }

@media (min-width: 768px) {
    .center-content-mobile {
        text-align: left;
    }
}

/* Responsive - Medium screens (801px - 1024px) - Half screen view */
@media (max-width: 1024px) and (min-width: 801px) {
    .container {
        padding: 0 25px;
    }
    
    .site-header-inner {
        flex-wrap: nowrap;
    }
    
    .header-nav ul {
        gap: 20px;
        flex-wrap: nowrap;
    }
    
    .header-nav ul li a {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .split-wrap {
        gap: 40px;
        flex-direction: row;
    }
    
    .split-item-content {
        text-align: left;
    }
    
    .hero-image-container {
        height: 500px;
    }
    
    .tiles-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .team-item-image {
        max-width: 150px;
    }
    
    .team-item-image img {
        max-width: 150px;
        max-height: 150px;
    }
    
    .team-item-name {
        font-size: 16px;
    }
    
    .legends-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .trophies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .product-card {
        min-width: 230px;
        max-width: 230px;
    }
    
    .rituals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-section-title {
        font-size: 38px;
    }
    
    .trophies-hero h1 {
        font-size: 60px;
    }
    
    .matchday-hero h1 {
        font-size: 60px;
    }
}

/* Responsive - Tablet (768px - 800px) */
@media (max-width: 800px) and (min-width: 769px) {
    .container {
        padding: 0 20px;
    }
    
    .split-wrap {
        gap: 30px;
        flex-direction: column;
    }
    
    .split-item-content {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero-image-container {
        height: 450px;
    }
    
    .tiles-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 0 15px;
    }
    
    .team-item-image {
        max-width: 140px;
    }
    
    .team-item-image img {
        max-width: 140px;
        max-height: 140px;
    }
    
    .team-item-name {
        font-size: 15px;
    }
    
    .legends-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .legend-card {
        max-width: 100%;
    }
    
    .trophies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .products-carousel {
        gap: 15px;
        padding: 15px 0;
    }
    
    .product-card {
        min-width: 220px;
        max-width: 220px;
    }
    
    .product-image-container {
        height: 320px;
    }
    
    .rituals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .shop-nav-content {
        gap: 25px;
    }
    
    .shop-section-title {
        font-size: 34px;
    }
    
    .manager-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .manager-image {
        margin-bottom: 30px;
    }
    
    .legend-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .legend-detail-image {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .header-nav ul {
        gap: 15px;
    }
    
    .header-nav ul li a {
        font-size: 13px;
        padding: 8px 15px;
    }
    
    .shop-section-title {
        font-size: 36px;
    }
    
    .trophies-hero h1 {
        font-size: 56px;
    }
    
    .matchday-hero h1 {
        font-size: 56px;
    }
}

/* Responsive - Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .site-header {
        padding: 15px 0;
    }
    
    .site-header-inner {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .header-nav ul li a {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .split-wrap {
        flex-direction: column;
        gap: 30px;
    }
    
    .split-item {
        flex-direction: column;
    }
    
    .split-item-content {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .hero-image-container {
        height: 400px;
    }
    
    .hero-image-container img {
        max-width: 200px;
    }
    
    .split-item-content h1 {
        font-size: 32px;
    }
    
    .split-item-content p {
        font-size: 16px;
    }
    
    .button {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .tiles-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
    }
    
    .tiles-item-inner {
        padding: 12px;
        min-height: auto;
    }
    
    .team-item-image {
        max-width: 120px;
        margin: 0 auto 10px;
    }
    
    .team-item-image img {
        max-width: 120px;
        max-height: 120px;
    }
    
    .team-item-name {
        font-size: 14px;
        margin-bottom: 4px;
        word-wrap: break-word;
    }
    
    .team-item-number {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .team-item-position {
        font-size: 11px;
        word-wrap: break-word;
    }
    
    .team-item-role {
        font-size: 13px;
    }
    
    .manager {
        padding: 40px 15px;
    }
    
    .manager-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .manager-image {
        width: 250px;
        height: 250px;
        margin-bottom: 20px;
    }
    
    .manager h2 {
        font-size: 28px;
    }
    
    .legends-hero h1 {
        font-size: 36px;
    }
    
    .legends-hero p {
        font-size: 16px;
    }
    
    .legends-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .legend-card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .legend-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .legend-detail-hero h1 {
        font-size: 32px;
    }
    
    .legend-detail-image {
        position: static;
    }
    
    .trophies-hero {
        padding: 80px 20px 60px;
    }
    
    .trophies-hero h1 {
        font-size: 42px;
    }
    
    .trophies-grid-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .trophies-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trophies-grid-section {
        padding: 60px 20px;
    }
    
    .matchday-hero {
        padding: 80px 20px 60px;
    }
    
    .matchday-hero h1 {
        font-size: 42px;
    }
    
    .stadium-icon {
        font-size: 60px;
    }
    
    .stadium-section {
        padding: 60px 20px;
    }
    
    .rituals-section {
        padding: 60px 20px;
    }
    
    .rituals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .experiences-section {
        padding: 60px 20px;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .legends-hero {
        padding: 80px 20px 60px;
    }
    
    .legends-grid {
        padding: 60px 20px;
    }
    
    .shop-section {
        padding: 60px 15px;
    }
    
    .shop-nav-content {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .shop-nav a {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .shop-section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .products-carousel {
        gap: 12px;
        padding: 15px 0;
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .product-card {
        min-width: 200px;
        max-width: 200px;
        flex-shrink: 0;
    }
    
    .product-image-container {
        height: 250px;
    }
    
    .product-name {
        font-size: 15px;
    }
    
    .product-badge {
        font-size: 11px;
    }
    
    .legend-image-container {
        height: 280px;
    }
    
    .legend-name {
        font-size: 22px;
    }
    
    .legend-description {
        font-size: 14px;
        min-height: 80px;
    }
    
    .trophy-image-container {
        height: 280px;
    }
    
    .trophy-name {
        font-size: 24px;
    }
    
    .ritual-card {
        padding: 20px;
    }
    
    .experience-card {
        padding: 20px;
    }
    
    .experience-icon {
        font-size: 48px;
    }
    
    .ritual-icon {
        font-size: 36px;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer {
        padding: 40px 15px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .vive-la-pasion span {
        font-size: 18px;
    }
    
    .trophy-icon {
        font-size: 80px;
    }
    
    .trophies-badge span {
        font-size: 24px;
    }
    
    .video-play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-play-button svg {
        width: 20px;
        height: 20px;
    }
    
    .legend-detail-content {
        padding: 60px 15px;
    }
    
    .trophy-count-badge {
        font-size: 14px;
        padding: 8px 15px;
    }
    
    .stadium-image-container {
        margin: 20px auto;
        border-width: 2px;
    }
}

/* Responsive - Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .split-item-content h1 {
        font-size: 24px;
    }
    
    .hero-image-container {
        height: 300px;
    }
    
    .hero-image-container img {
        max-width: 150px;
    }
    
    .tiles-wrap {
        grid-template-columns: 1fr;
    }
    
    .shop-nav-content {
        gap: 10px;
    }
    
    .shop-nav a {
        font-size: 11px;
        padding: 6px 0;
    }
    
    .product-card {
        min-width: 180px;
        max-width: 180px;
    }
    
    .product-image-container {
        height: 240px;
    }
    
    .trophies-hero h1 {
        font-size: 32px;
    }
    
    .matchday-hero h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .trophies-grid-title {
        font-size: 24px;
    }
    
    .legends-hero h1 {
        font-size: 28px;
    }
    
    .legend-detail-hero h1 {
        font-size: 24px;
    }
    
    .trophy-icon {
        font-size: 60px;
    }
    
    .stadium-icon {
        font-size: 50px;
    }
    
    .trophies-hero p {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .matchday-hero p {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .stadium-image-container {
        margin: 20px auto;
    }
    
    .legend-detail-container {
        padding: 0 15px;
    }
    
    .legend-detail-info h2 {
        font-size: 24px;
    }
    
    .legend-detail-info p {
        font-size: 14px;
    }
    
    .legend-detail-stats {
        padding: 20px;
    }
    
    .trophy-card {
        margin: 0 auto;
    }
    
    .trophy-info {
        padding: 25px;
    }
}

/* Extra small screens (max-width: 360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    
    .tiles-wrap {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .product-card {
        min-width: 160px;
        max-width: 160px;
    }
    
    .shop-nav a {
        font-size: 10px;
    }
    
    .split-item-content h1 {
        font-size: 20px;
    }
    
    .trophies-hero h1 {
        font-size: 28px;
    }
    
    .matchday-hero h1 {
        font-size: 28px;
    }
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Shop Page Styles */
.shop-nav {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a5490 100%);
    padding: 20px;
    border-bottom: 2px solid rgba(26, 84, 144, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transform: translateZ(0);
    will-change: transform;
}

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

.shop-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
    letter-spacing: 0.5px;
}

.shop-nav a:hover {
    border-bottom-color: #d32f2f;
    color: #d32f2f;
}

.shop-section {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a5490 50%, #0d1b2a 100%);
    padding: 80px 20px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.shop-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(26, 84, 144, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.shop-section-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 50px;
    color: #1a5490;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(26, 84, 144, 0.8);
    position: relative;
    z-index: 1;
}

.products-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.product-card {
    min-width: 280px;
    max-width: 280px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border: 2px solid rgba(26, 84, 144, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: translateZ(0);
    will-change: transform;
    flex-shrink: 0;
    box-sizing: border-box;
}

.product-card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 12px 40px rgba(26, 84, 144, 0.5);
    border-color: rgba(26, 84, 144, 0.8);
}

.product-image-container {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.product-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 84, 144, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.product-info {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 2px solid rgba(26, 84, 144, 0.5);
    position: relative;
}

.product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #1a5490 50%, transparent 100%);
}

.product-name {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.product-badge {
    color: #1a5490;
    font-size: 13px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(26, 84, 144, 0.5);
}

.section-container {
    position: relative;
    z-index: 1;
}

/* Legends Page Styles */
.legends-hero {
    background: #0a1929;
    padding: 100px 20px 80px;
    text-align: center;
}

.legends-hero h1 {
    color: #fff;
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.legends-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.legends-grid {
    background: #1a1a1a;
    padding: 80px 20px;
    min-height: 600px;
}

.legends-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.legend-card {
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform: translateZ(0);
    width: 100%;
    box-sizing: border-box;
}

.legend-card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 12px 30px rgba(211, 47, 47, 0.3);
    border-color: #d32f2f;
}

.legend-image-container {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
    flex-shrink: 0;
}

.legend-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.legend-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.legend-name {
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 8px;
}

.legend-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.legend-position {
    color: #d32f2f;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legend-years {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.legend-description {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 60px;
}

.legend-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
}

.legend-stats {
    color: #d32f2f;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.legend-button {
    display: block;
    padding: 12px 20px;
    background: #d32f2f;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    width: 100%;
    transform: translateZ(0);
}

.legend-button:hover {
    background: #b71c1c;
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
}

.legacy-section {
    background: #0a1929;
    padding: 80px 20px;
    text-align: center;
}

.legacy-section h2 {
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}

.legacy-section p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Legend Detail Page Styles */
.legend-detail-hero {
    background: linear-gradient(135deg, #0a1929 0%, #1a1a2e 100%);
    padding: 100px 20px 80px;
    text-align: center;
}

.legend-detail-hero h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.legend-detail-hero .legend-nickname {
    color: #d32f2f;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.legend-detail-content {
    background: #1a1a1a;
    padding: 80px 20px;
}

.legend-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.legend-detail-image {
    position: sticky;
    top: 100px;
}

.legend-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.legend-detail-info h2 {
    color: #d32f2f;
    font-size: 32px;
    margin-bottom: 30px;
}

.legend-detail-info p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.legend-detail-stats {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.legend-detail-stats h3 {
    color: #d32f2f;
    font-size: 20px;
    margin-bottom: 20px;
}

.legend-detail-stats ul {
    list-style: none;
    padding: 0;
}

.legend-detail-stats li {
    color: rgba(255,255,255,0.8);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.back-button {
    display: inline-block;
    padding: 12px 24px;
    background: #d32f2f;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 30px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    transform: translateZ(0);
}

.back-button:hover {
    background: #b71c1c;
    transform: translateY(-2px) translateZ(0);
}


/* Trophies Page Styles */
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

@keyframes glow {
    from { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6)); }
    to { filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.9)); }
}

.trophies-hero {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a5490 50%, #0d1b2a 100%);
    padding: 120px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trophies-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(211, 47, 47, 0.1) 50px, rgba(211, 47, 47, 0.1) 100px);
    animation: slide 20s linear infinite;
    pointer-events: none;
    will-change: transform;
}

.trophies-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(26, 84, 144, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

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

.trophy-icon {
    font-size: 120px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
    animation: glow 2s ease-in-out infinite alternate;
    will-change: filter;
}

.trophies-hero h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.5);
    font-family: serif;
}

.trophies-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 50px;
    padding: 15px 40px;
    margin-top: 20px;
}

.trophies-badge span {
    color: #FFD700;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.trophies-grid-section {
    background: linear-gradient(180deg, #0d1b2a 0%, #1a1a2e 50%, #0d1b2a 100%);
    padding: 100px 20px;
    min-height: 600px;
    position: relative;
}

.trophies-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(211, 47, 47, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.trophies-grid-title {
    color: #FFD700;
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 4px 20px rgba(0, 0, 0, 0.8);
    font-family: serif;
    position: relative;
    z-index: 1;
}

.trophies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.trophy-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateZ(0);
    will-change: transform;
    width: 100%;
    box-sizing: border-box;
}

.trophy-card:hover {
    transform: translateY(-10px) scale(1.02) translateZ(0);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.8);
}

.trophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, #FFD700 50%, transparent 100%);
    z-index: 2;
}

.trophy-image-container {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 50%, #fff 50%, #fff 100%);
    background-size: 100% 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 30px;
}

.trophy-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 1;
}

.trophy-count-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.trophy-info {
    padding: 35px;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
}

.trophy-name {
    color: #FFD700;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    font-family: serif;
}

.trophy-year {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.trophy-description {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.6;
}

/* Matchday Experience Page Styles */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

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

.matchday-hero {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a5490 50%, #d32f2f 100%);
    padding: 120px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.matchday-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(255, 255, 255, 0.1) 50px, rgba(255, 255, 255, 0.1) 100px);
    animation: slide 20s linear infinite;
    pointer-events: none;
    will-change: transform;
}

.matchday-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

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

.stadium-icon {
    font-size: 100px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
    animation: float 3s ease-in-out infinite;
    will-change: transform;
}

.matchday-hero h1 {
    color: #FFD700;
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.6);
    font-family: serif;
    animation: pulse 2s ease-in-out infinite;
    will-change: transform, opacity;
}

.vive-la-pasion {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 50px;
    padding: 15px 40px;
    margin-top: 20px;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    transform: translateZ(0);
}

.vive-la-pasion:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.2) 100%);
    border-color: rgba(255, 215, 0, 0.8);
    transform: scale(1.03) translateZ(0);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.vive-la-pasion span {
    color: #FFD700;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.stadium-section {
    background: linear-gradient(180deg, #0d1b2a 0%, #1a1a2e 50%, #0d1b2a 100%);
    padding: 100px 20px;
    min-height: 600px;
    position: relative;
}

.stadium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(211, 47, 47, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.stadium-section-content {
    position: relative;
    z-index: 1;
}

.stadium-image-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 215, 0, 0.3);
    box-sizing: border-box;
}

.stadium-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.rituals-section {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a5490 50%, #0d1b2a 100%);
    padding: 100px 20px;
}

.rituals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.ritual-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 30px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    transform: translateZ(0);
    width: 100%;
    box-sizing: border-box;
}

.ritual-card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.ritual-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.ritual-title {
    color: #FFD700;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ritual-time {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 15px;
}

.ritual-description {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.6;
}

.experiences-section {
    background: #1a1a1a;
    padding: 100px 20px;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.experience-card {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    transform: translateZ(0);
    width: 100%;
    box-sizing: border-box;
}

.experience-card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 12px 30px rgba(211, 47, 47, 0.3);
    border-color: #d32f2f;
}

.experience-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.experience-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.experience-description {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
}

.section-title {
    color: #FFD700;
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    font-family: serif;
}

