/* KK Cibona Zagreb - Official Brand Website */

:root {
    /* Brand Colors - Cibona Official Palette */
    --primary-red: #DFC66D;        /* Swapped: Now Gold */
    --primary-blue: #0A0394;       /* Primarna Plava */
    --secondary-white: #FFFFFF;    /* Sekundarna Bijela */
    --tertiary-black: #000000;     /* Tercijarna Crna */
    --tertiary-gold: #0A0394;      /* Replaced with Primary Blue */
    
    /* Legacy variables mapped to brand colors */
    --primary-color: #0A0394;      /* Primary Blue */
    --secondary-color: #FFFFFF;    /* Secondary White */
    --accent-color: #0A0394;       /* Replaced with Primary Blue */
    
    /* Dark theme colors */
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-tertiary: #252525;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #6b6b6b;
    --border-color: #2a2a2a;
    --success-color: #00d084;
    --error-color: #e63946;
    
    /* Brand gradients */
    --gradient-primary: linear-gradient(135deg, #2E4A9E 0%, #1A2F6B 100%);
    --gradient-secondary: linear-gradient(135deg, #DFC66D 0%, #B89A4A 100%);
    --gradient-accent: linear-gradient(135deg, #0A0394 0%, #050228 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Gotham Font Family - Cibona Brand Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap');

body {
    /* Gotham font with Helvetica/Arial fallbacks per brand guidelines */
    font-family: 'Gotham', 'Gotham Light', 'Gotham Regular', 'Gotham Bold', 'Gotham Black', 
                 'Helvetica Neue', Helvetica, Arial, 'Inter', -apple-system, BlinkMacSystemFont, 
                 'Segoe UI', 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400; /* Regular weight by default */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Modern Navigation */
.navbar {
    background: rgba(40, 40, 40, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.3rem 0;
    transition: background 0.3s ease;
    will-change: background;
    transform: translateZ(0);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0.6;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    font-weight: 900;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    letter-spacing: 3px;
    transition: transform 0.3s ease;
    position: relative;
}

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

.logo-text {
    color: #DFC66D;
    line-height: 1;
    text-shadow: 0 0 10px rgba(223, 198, 109, 0.6);
}

.logo-subtitle {
    font-size: clamp(0.5rem, 1.2vw, 0.7rem);
    letter-spacing: 5px;
    color: #DFC66D;
    margin-top: -3px;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 2vw, 2.5rem);
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #DFC66D;
    transition: width 0.3s ease;
    border-radius: 2px 2px 0 0;
}

.nav-menu a:hover {
    color: #DFC66D;
    transform: translateY(-2px);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a.active {
    color: #DFC66D;
    font-weight: 700;
}

.cart-icon {
    position: relative;
}

.cart-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cart-icon a:hover {
    background: var(--gradient-accent);
    transform: scale(1.1) rotate(5deg);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 65vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 1rem;
    contain: layout style paint;
    transform: translateZ(0);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/CIBONA SKROZ.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px);
    z-index: 0;
    transform: scale(1.05);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 3, 148, 0.5) 0%, rgba(10, 3, 148, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}



.hero-overlay {
    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%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 3rem 0 4rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #ffffff;
    animation: fadeInUp 1s ease;
    position: relative;
    will-change: transform, opacity;
    transform: translateZ(0);
}


@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.2s both;
    letter-spacing: 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

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

/* Modern Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: #000000;
    box-shadow: 0 8px 24px rgba(223, 198, 109, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
    font-weight: 900;
    padding: 1.2rem 3.5rem;
    min-width: 200px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(223, 198, 109, 0.7), 0 6px 16px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.btn-small {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

/* Sections */
.section {
    padding: clamp(3rem, 6vw, 6rem) 0;
    position: relative;
    contain: layout style;
}

.section-alt {
    background: var(--dark-secondary);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(2rem, 4vw, 4rem);
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.view-all {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.view-all::after {
    content: '→';
    transition: transform 0.3s ease;
}

.view-all:hover::after {
    transform: translateX(5px);
}

/* Games Schedule Strip (below navbar) */
.games-strip {
    background: linear-gradient(180deg, #121212 0%, var(--dark-bg) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.9rem 0;
    overflow: hidden;
    position: relative;
    contain: layout style paint;
    transform: translateZ(0);
}

.games-strip__inner {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 56px;
}

.games-strip__scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 0.9rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.35rem 0;
}

.games-strip__scroller::-webkit-scrollbar {
    display: none;
}

.games-strip__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 3, 148, 0.95);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
    box-shadow: var(--shadow-md);
}

.games-strip__nav:hover {
    transform: translateY(-50%) scale(1.08);
    background: rgba(10, 3, 148, 1);
}

.games-strip__nav--prev { left: 10px; }
.games-strip__nav--next { right: 10px; }

.games-strip-card {
    width: 380px;
    background: rgba(35, 35, 35, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1.3rem 1.2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.games-strip-card:hover {
    transform: translateY(-2px);
    border-color: rgba(10, 3, 148, 0.55);
    box-shadow: var(--shadow-md);
}

.games-strip-card__top {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.75rem;
}

.games-strip-card__date {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.games-strip-card__day {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.games-strip-card__full {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-primary);
}

.games-strip-card__time {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-secondary);
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.games-strip-card__badge {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    white-space: nowrap;
}

.games-strip-card__badge--final {
    background: rgba(223, 198, 109, 0.2);
    color: #DFC66D;
    border-color: rgba(223, 198, 109, 0.4);
    font-weight: 900;
}

.games-strip-card__badge--upcoming {
    background: rgba(10, 3, 148, 0.18);
    color: var(--accent-color);
}

.games-strip-card__badge--live {
    background: rgba(223, 198, 109, 0.18);
    color: var(--secondary-color);
    border-color: rgba(223, 198, 109, 0.35);
}

/* Live state */
.games-strip-card[data-status="live"] .games-strip-card__badge--upcoming {
    background: rgba(223, 198, 109, 0.18);
    color: var(--secondary-color);
    border-color: rgba(223, 198, 109, 0.35);
}

.games-strip-card__matchup {
    display: grid;
    grid-template-columns: 1fr 30px 1fr;
    align-items: start;
    gap: 0.5rem;
}

/* Critical: allow grid children to shrink so text truncation works (prevents overlap) */
.games-strip-card__matchup > * {
    min-width: 0;
}

.games-strip-card__vs {
    text-align: center;
    color: var(--text-secondary);
    font-weight: 900;
    opacity: 0.65;
    font-size: 0.85rem;
}

.games-strip-team {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: start;
    gap: 0.6rem;
    min-width: 0;
}

.games-strip-team__meta {
    min-width: 0;
}

.games-strip-team__logo,
.games-strip-team__logo-img {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--accent-color);
    flex: none;
}

.games-strip-team__logo--home {
    background: rgba(10, 3, 148, 0.25);
    color: var(--accent-color);
}

.games-strip-team__logo-img {
    object-fit: contain;
    padding: 4px;
}

.games-strip-team__name {
    display: block;
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.15;
    white-space: normal;          /* keep titles visible */
    overflow: visible;
    text-overflow: unset;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.games-strip-team__location {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.games-strip-team__score {
    font-weight: 900;
    font-size: 1.25rem;
    color: #DFC66D;
    min-width: 2ch;
    text-align: right;
    align-self: center;
    text-shadow: 0 0 8px rgba(223, 198, 109, 0.4);
}

.games-strip-team__score.win { color: var(--success-color); }
.games-strip-team__score.loss { color: var(--error-color); }

.games-strip-card__sub {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.games-strip-card__type {
    overflow: hidden;
    text-overflow: ellipsis;
}

.games-strip-card__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.games-strip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.games-strip-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.games-strip-btn--primary {
    background: transparent;
    border: 2px solid #DFC66D;
    color: #DFC66D;
    font-weight: 900;
    box-shadow: 0 0 12px rgba(223, 198, 109, 0.3);
}

.games-strip-btn--primary:hover {
    background: rgba(223, 198, 109, 0.15);
    border-color: #F0D87A;
    color: #F0D87A;
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 0 20px rgba(223, 198, 109, 0.5);
}

.games-strip-btn--disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Games Carousel Container (Homepage) */
.games-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.games-carousel {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

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

.game-card-carousel {
    min-width: 350px;
    flex-shrink: 0;
    background: rgba(35, 35, 35, 0.95);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1.5rem;
    will-change: transform;
    transform: translateZ(0);
}

.game-card-carousel:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background: rgba(29, 66, 138, 0.2);
}

.game-date-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    background: var(--gradient-primary);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    box-shadow: var(--shadow-md);
}

.game-date-carousel .date-day {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--accent-color);
}

.game-date-carousel .date-month {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
    font-weight: 700;
    letter-spacing: 1px;
}

.game-date-carousel .date-year {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    font-weight: 600;
}

.game-info-carousel {
    flex: 1;
}

.game-teams-carousel {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.team-carousel {
    flex: 1;
}

.team-carousel .team-name {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.vs-carousel {
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 1rem;
    opacity: 0.7;
}

.game-details-carousel {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.game-details-carousel p {
    margin: 0.4rem 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(29, 66, 138, 0.95);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.15);
    box-shadow: var(--shadow-lg);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Specific positioning for blogs carousel - move to edges */
.blogs-carousel-container .carousel-prev {
    left: 0;
}

.blogs-carousel-container .carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(10, 3, 148, 0.5);
}

/* Blogs Carousel */
.blogs-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 60px;
    width: 100%;
    box-sizing: border-box;
}

.blogs-carousel {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 1rem 0;
    overflow: hidden;
}

.blog-card-carousel {
    min-width: 350px;
    flex-shrink: 0;
    background: rgba(35, 35, 35, 0.95);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    will-change: transform;
    transform: translateZ(0);
}

.blog-card-carousel:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background: rgba(29, 66, 138, 0.2);
}

.blog-card-image-carousel {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-card-image-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-carousel:hover .blog-card-image-carousel img {
    transform: scale(1.1);
}

.blog-card-content-carousel {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.blog-card-content-carousel h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    line-height: 1.3;
}

.blog-card-content-carousel h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-content-carousel h3 a:hover {
    color: var(--accent-color);
}

.blog-card-excerpt-carousel {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    max-width: 100%;
}

.blog-card-meta-carousel {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.blog-card-meta-carousel span {
    display: inline-block;
}

.blog-card-content-carousel .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
}

.game-card {
    background: rgba(35, 35, 35, 0.95);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--shadow-md);
    will-change: transform;
    transform: translateZ(0);
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    background: rgba(29, 66, 138, 0.2);
}

.game-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    background: var(--gradient-primary);
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: var(--shadow-md);
}

.date-day {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--accent-color);
}

.date-month {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
    font-weight: 700;
    letter-spacing: 1px;
}

.game-info {
    flex: 1;
}

.game-teams {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.team {
    flex: 1;
}

.team-name {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.vs {
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0.7;
}

.game-details {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.game-details p {
    margin: 0.4rem 0;
}

/* Results List */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.result-card {
    background: rgba(35, 35, 35, 0.95);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--shadow-sm);
    will-change: transform;
    transform: translateZ(0);
}

.result-card:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    background: rgba(29, 66, 138, 0.15);
}

.result-date {
    min-width: 100px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.result-teams {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.result-team {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-score {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(10, 3, 148, 0.3);
}

.result-venue {
    color: var(--text-secondary);
    font-size: 0.9rem;
    min-width: 150px;
    text-align: right;
}

/* Players Grid */
.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
    gap: 2rem;
}

.player-card {
    background: rgba(35, 35, 35, 0.95);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--shadow-md);
    will-change: transform;
    transform: translateZ(0);
}

.player-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.player-image {
    position: relative;
    height: 320px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.player-image::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%);
}

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

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

.player-placeholder {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
}

.player-number {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--gradient-secondary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.player-info {
    padding: 2rem;
    text-align: center;
}

.player-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.player-position {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: var(--dark-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-primary);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

.social-links a:hover {
    background: var(--gradient-accent);
    border-color: var(--accent-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(10, 3, 148, 0.3);
}

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

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(29, 66, 138, 0.2);
    background: rgba(26, 26, 26, 0.95);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Cards */
.card {
    background: rgba(35, 35, 35, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
}

/* Utilities */
.no-data {
    text-align: center;
    color: var(--text-secondary);
    padding: 4rem 2rem;
    font-size: 1.2rem;
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.alert {
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid;
    animation: slideIn 0.3s ease;
}

.alert-error {
    background: rgba(230, 57, 70, 0.2);
    border-color: var(--error-color);
    color: var(--error-color);
}

.alert-success {
    background: rgba(0, 208, 132, 0.2);
    border-color: var(--success-color);
    color: var(--success-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-content {
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(40, 40, 40, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--shadow-xl);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(10, 3, 148, 0.1);
        transform: translateX(5px);
    }
    
    .hero {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .hero-title {
        letter-spacing: 4px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .games-strip__inner {
        padding: 0 48px;
    }
    
    .games-strip-card {
        width: 340px;
    }
    
    .games-strip__nav {
        width: 34px;
        height: 34px;
        font-size: 1.2rem;
    }
    
    .games-grid,
    .players-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .game-card {
        flex-direction: column;
        text-align: center;
    }
    
    .result-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .result-teams {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }
    
    .result-venue {
        text-align: left;
        min-width: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .cart-item-image {
        margin: 0 auto;
    }
    
    .cart-item-subtotal {
        text-align: center;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .cart-actions .btn {
        width: 100%;
    }
    
    .merchandise-grid {
        grid-template-columns: 1fr;
    }
    
    .tickets-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card-carousel {
        min-width: 280px;
        flex-direction: column;
    }
    
    .blog-card-carousel {
        min-width: 280px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .games-strip__inner {
        padding: 0 42px;
    }
    
    .games-strip-card {
        width: 300px;
    }
    
    .games-strip__nav {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .games-strip__nav--prev {
        left: 6px;
    }
    
    .games-strip__nav--next {
        right: 6px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .players-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Shop & Merchandise Styles */
.category-filter {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
}

.category-filter::-webkit-scrollbar {
    display: none;
}

.category-btn {
    padding: 0.8rem 1.8rem;
    background: rgba(35, 35, 35, 0.95);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    white-space: nowrap;
}

.category-btn:hover,
.category-btn.active {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.shop-section {
    margin-bottom: 4rem;
}

.shop-section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ticket-card {
    background: rgba(35, 35, 35, 0.95);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--shadow-md);
    will-change: transform;
    transform: translateZ(0);
}

.ticket-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background: rgba(29, 66, 138, 0.2);
}

.ticket-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ticket-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--gradient-primary);
    padding: 1rem;
    border-radius: 12px;
    min-width: 70px;
    box-shadow: var(--shadow-md);
}

.ticket-day {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--accent-color);
}

.ticket-month {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 3px;
    font-weight: 700;
}

.ticket-teams {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ticket-team {
    font-weight: 700;
    font-size: 1rem;
}

.ticket-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.ticket-info p {
    margin: 0.3rem 0;
}

.merchandise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
    gap: 2rem;
}

.merchandise-card {
    background: rgba(35, 35, 35, 0.95);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--shadow-md);
    will-change: transform;
    transform: translateZ(0);
    display: flex;
    flex-direction: column;
}

.merchandise-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-xl);
}

.merchandise-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.merchandise-actions {
    padding: 1rem 1.8rem 1.8rem;
}

.merchandise-image {
    height: 280px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.merchandise-image::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%);
}

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

.merchandise-card:hover .merchandise-image img {
    transform: scale(1.15);
}

.merchandise-placeholder {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
}

.merchandise-info {
    padding: 1.8rem;
}

.merchandise-category {
    font-size: 0.75rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.merchandise-info h3 {
    margin: 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 800;
}

.merchandise-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.merchandise-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.merchandise-price {
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cart Styles */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cart-item {
    background: rgba(35, 35, 35, 0.95);
    border-radius: 16px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 100px 1fr 150px 150px 50px;
    gap: 1.5rem;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cart-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    background: var(--dark-bg);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-placeholder {
    font-size: 2rem;
    color: var(--text-secondary);
}

.cart-item-info h3 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cart-item-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.cart-item-price {
    color: var(--accent-color) !important;
    font-weight: 700;
}

.cart-item-quantity label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.cart-item-quantity input {
    width: 100%;
    padding: 0.6rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
}

.cart-item-subtotal {
    text-align: right;
    font-size: 1.3rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.remove-btn {
    color: var(--error-color);
    font-size: 2rem;
    text-decoration: none;
    line-height: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.1);
}

.remove-btn:hover {
    background: rgba(230, 57, 70, 0.2);
    transform: scale(1.2) rotate(90deg);
}

.cart-summary {
    background: rgba(35, 35, 35, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.cart-total {
    text-align: right;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-total h3 {
    font-size: 2.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Smooth Animations */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Loading States */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
    .game-card,
    .player-card,
    .result-card {
        animation: fadeInUp 0.6s ease backwards;
    }
    
    .game-card:nth-child(1) { animation-delay: 0.1s; }
    .game-card:nth-child(2) { animation-delay: 0.2s; }
    .game-card:nth-child(3) { animation-delay: 0.3s; }
}
