/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header - Mobile Optimized */
.header {
    background: rgba(0, 0, 0, 0.5);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid #00d26a;
    box-shadow: 0 4px 30px rgba(0, 210, 106, 0.1);
}

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

.logo-section {
    flex: 1;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00d26a;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(0, 210, 106, 0.3);
}

.logo.clickable {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.logo.clickable:active {
    opacity: 0.7;
}

.tagline {
    color: #888;
    font-size: 0.65rem;
    margin-top: 2px;
}

/* Language Switcher - Mobile */
.language-switcher {
    display: flex;
    gap: 4px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid #333;
    color: #888;
    padding: 6px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.lang-btn:active {
    transform: scale(0.95);
}

.lang-btn.active {
    background: linear-gradient(135deg, #00d26a 0%, #00a854 100%);
    border-color: #00d26a;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 210, 106, 0.3);
}

/* Main Content */
.main-content {
    padding: 20px 0;
    min-height: calc(100vh - 140px);
    padding-bottom: 100px;
}

/* Breadcrumb - Mobile */
.breadcrumb {
    margin-bottom: 16px;
    font-size: 0.75rem;
    color: #666;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.breadcrumb::-webkit-scrollbar {
    display: none;
}

.breadcrumb-item {
    cursor: pointer;
    transition: color 0.2s;
    padding: 4px 0;
}

.breadcrumb-item:active {
    color: #00d26a;
}

.breadcrumb-separator {
    margin: 0 6px;
    color: #444;
}

/* Section Title */
.section-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
    font-weight: 600;
}

/* Views */
.view {
    display: none;
}

.view.active {
    display: block;
    animation: slideIn 0.25s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Home Hero Section */
.home-hero {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 24px;
    background: linear-gradient(145deg, rgba(0, 210, 106, 0.1) 0%, rgba(0, 168, 84, 0.05) 100%);
    border-radius: 24px;
    border: 1px solid rgba(0, 210, 106, 0.2);
}

.hero-badge {
    font-size: 3.5rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: bounce 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 0.9rem;
    color: #00d26a;
    font-weight: 500;
}

/* Main Categories on Home */
.main-categories {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.main-category-card {
    background: linear-gradient(145deg, #2a2a4a 0%, #1e1e3a 100%);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.main-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.main-category-card:active {
    transform: scale(0.98);
    border-color: #00d26a;
}

.category-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #00d26a 0%, #00a854 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 210, 106, 0.3);
}

.category-icon-wrap.retro-gradient {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.category-icon-wrap.kids-gradient {
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
}

.category-big-icon {
    font-size: 1.8rem;
}

.category-content {
    flex: 1;
}

.category-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.category-content p {
    font-size: 0.8rem;
    color: #888;
}

.category-arrow {
    font-size: 1.5rem;
    color: #00d26a;
    font-weight: 300;
}

/* Cards Grid - Full width (3 columns) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100% !important;
    max-width: 100% !important;
}

/* Pyramid Layout */
.pyramid-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 10px 0;
}

.pyramid-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.pyramid-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.pyramid-row .card {
    flex: 1;
    max-width: 120px;
    min-height: 80px;
    padding: 12px 8px;
}

.pyramid-row.row-1 {
    max-width: 140px;
}

.pyramid-row.row-2 {
    max-width: 280px;
}

.pyramid-row.row-3 {
    max-width: 420px;
}

/* Kids sidebar - positioned to the right */
.kids-sidebar {
    flex-shrink: 0;
}

.kids-sidebar .card.kids-large {
    width: 90px;
    min-height: 180px;
    padding: 15px 10px;
    background: linear-gradient(145deg, #3a2a4a 0%, #2e1e3a 100%);
    border: 2px solid rgba(255, 105, 180, 0.3);
}

.kids-extra {
    font-size: 0.55rem;
    color: #FF69B4;
    margin-top: 6px;
}

/* Special card styles */
.special-card.retro-card {
    background: linear-gradient(145deg, #3a3a2a 0%, #2e2e1e 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.special-card.kids-card {
    background: linear-gradient(145deg, #3a2a4a 0%, #2e1e3a 100%);
    border: 2px solid rgba(255, 105, 180, 0.3);
}

/* League & Team Cards */
.card {
    background: linear-gradient(145deg, #2a2a4a 0%, #1e1e3a 100%);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.card:active {
    transform: scale(0.97);
    border-color: #00d26a;
    box-shadow: 0 0 20px rgba(0, 210, 106, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.card-subtitle {
    font-size: 0.8rem;
    color: #777;
    margin-top: 6px;
}

/* Team Cards Horizontal */
.team-card-horizontal {
    background: linear-gradient(145deg, #2a2a4a 0%, #1e1e3a 100%);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.team-card-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.team-card-horizontal:active {
    transform: scale(0.98);
    border-color: #00d26a;
}

.team-logo-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.team-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.team-logo-large {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.fallback-icon-inline {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-icon-emoji {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-info {
    flex: 1;
}

.team-name {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.team-league {
    font-size: 0.75rem;
    color: #888;
}

.team-badges {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.team-badge {
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.team-badge.retro {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
}

.team-badge.kids {
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    color: #fff;
}

.team-arrow {
    font-size: 1.3rem;
    color: #00d26a;
    font-weight: 300;
}

.teams-subtitle {
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

/* Kids Set Badge */
.kids-set-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    color: #fff;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 8px;
    margin-top: 6px;
    font-weight: 500;
}

.kids-includes {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, rgba(255, 20, 147, 0.2) 100%);
    color: #FF69B4;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 8px;
    margin-top: 4px;
    font-weight: 500;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.kids-set-detail {
    display: inline-block;
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 8px;
    margin-top: 6px;
    font-weight: 500;
}

/* Back Button - Mobile */
.back-btn {
    background: transparent;
    border: none;
    color: #00d26a;
    padding: 10px 0;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 16px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.back-btn:active {
    opacity: 0.7;
}

.back-btn .arrow {
    font-size: 1.1rem;
}

/* Jerseys Grid - Mobile Single Column */
.jerseys-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Jersey Card - Mobile */
.jersey-card {
    background: linear-gradient(145deg, #2a2a4a 0%, #1e1e3a 100%);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.jersey-card.clickable {
    cursor: pointer;
}

.jersey-card:active {
    transform: scale(0.98);
    border-color: #00d26a;
}

.jersey-placeholder {
    width: 100px;
    min-width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3a3a5a 0%, #2a2a4a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    overflow: hidden;
    position: relative;
}

.jersey-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jersey-placeholder .fallback-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jersey-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jersey-type {
    display: inline-block;
    background: linear-gradient(90deg, #00d26a, #00a854);
    color: #fff;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 4px;
    width: fit-content;
}

.jersey-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.jersey-season {
    font-size: 0.7rem;
    color: #777;
    margin-bottom: 4px;
}

.jersey-price-range {
    font-size: 0.95rem;
    font-weight: 700;
    color: #00d26a;
}

/* Jersey Detail View - Mobile */
.detail-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-image {
    background: linear-gradient(145deg, #2a2a4a 0%, #1e1e3a 100%);
    border-radius: 20px;
    overflow: hidden;
}

.detail-placeholder {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #3a3a5a 0%, #2a2a4a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.detail-jersey-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-jersey {
    font-size: 5rem;
}

.fallback-detail {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-customization {
    position: absolute;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.preview-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.preview-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.detail-info {
    padding: 0;
}

/* Detail Header with Logo */
.detail-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.detail-team-logo {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.detail-title-wrap {
    flex: 1;
}

.detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.detail-type {
    font-size: 0.9rem;
    color: #00d26a;
}

/* Size Selector */
.size-selector {
    margin-bottom: 20px;
}

.size-selector h3,
.version-selector h3,
.customization-section h3,
.order-summary h3 {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 12px;
    font-weight: 500;
}

.size-label {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 8px;
    margin-top: 12px;
}

.size-label:first-of-type {
    margin-top: 0;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.custom-price {
    color: #00d26a;
    font-weight: 500;
}

.size-btn {
    background: linear-gradient(145deg, #2a2a4a 0%, #1e1e3a 100%);
    border: 2px solid #333;
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 55px;
    text-align: center;
}

.size-btn:active {
    transform: scale(0.95);
}

.size-btn.selected {
    border-color: #00d26a;
    background: linear-gradient(145deg, #1e3a2a 0%, #1a2e1e 100%);
    color: #00d26a;
    box-shadow: 0 0 15px rgba(0, 210, 106, 0.2);
}

/* Version Selector */
.version-selector {
    margin-bottom: 20px;
}

.version-card {
    background: linear-gradient(145deg, #2a2a4a 0%, #1e1e3a 100%);
    border: 2px solid #333;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.version-card:active {
    transform: scale(0.98);
}

.version-card.selected {
    border-color: #00d26a;
    background: linear-gradient(145deg, #1e3a2a 0%, #1a2e1e 100%);
    box-shadow: 0 0 15px rgba(0, 210, 106, 0.2);
}

.version-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.version-name {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.version-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00d26a;
}

.version-description {
    font-size: 0.75rem;
    color: #777;
    line-height: 1.3;
}

/* Customization Section */
.customization-section {
    margin-bottom: 20px;
    padding: 16px;
    background: linear-gradient(145deg, #2a2a4a 0%, #1e1e3a 100%);
    border-radius: 12px;
}

.customization-section h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.custom-note {
    font-size: 0.7rem;
    color: #00d26a;
    font-weight: 400;
}

.custom-field {
    margin-bottom: 12px;
}

.custom-field:last-child {
    margin-bottom: 0;
}

.custom-field label {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 6px;
}

.custom-field input[type="text"],
.custom-field input[type="number"] {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #444;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.custom-field input:focus {
    border-color: #00d26a;
    box-shadow: 0 0 10px rgba(0, 210, 106, 0.1);
}

.custom-field input::placeholder {
    color: #666;
}

.name-number-inputs {
    display: flex;
    gap: 10px;
}

.name-number-inputs input[type="text"] {
    flex: 2;
}

.name-number-inputs input[type="number"] {
    flex: 1;
    min-width: 80px;
}

.checkbox-field {
    margin-top: 16px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #fff;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #00d26a;
    cursor: pointer;
}

/* Order Summary */
.order-summary {
    margin-bottom: 20px;
    padding: 16px;
    background: linear-gradient(145deg, #1e3a2a 0%, #1a2e1e 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 210, 106, 0.2);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid #ffffff11;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row span:first-child {
    color: #999;
}

.summary-row span:last-child {
    color: #fff;
    font-weight: 500;
}

.summary-row.total {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 2px solid #00d26a44;
    border-bottom: none;
}

.summary-row.total span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00d26a;
}

/* WhatsApp Button - Mobile */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
    padding: 16px 20px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:active:not(:disabled) {
    transform: scale(0.98);
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.whatsapp-btn:disabled {
    background: linear-gradient(135deg, #444 0%, #333 100%);
    color: #888;
    cursor: not-allowed;
    box-shadow: none;
}

.whatsapp-btn.large {
    padding: 18px 24px;
    font-size: 1.1rem;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* Footer - Mobile Fixed */
.footer {
    background: rgba(0, 0, 0, 0.7);
    padding: 14px 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid #333;
    z-index: 100;
}

.whatsapp-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-footer-btn:active {
    transform: scale(0.95);
}

.whatsapp-footer-btn .whatsapp-icon {
    width: 18px;
    height: 18px;
}

/* Safe area for iOS */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .footer {
        padding-bottom: calc(14px + env(safe-area-inset-bottom));
    }

    .main-content {
        padding-bottom: calc(100px + env(safe-area-inset-bottom));
    }
}

/* Slightly larger screens */
@media (min-width: 400px) {
    .logo {
        font-size: 1.3rem;
    }

    .card {
        min-height: 120px;
    }

    .card-icon {
        font-size: 2.2rem;
    }

    .jersey-placeholder {
        width: 110px;
        min-width: 110px;
        height: 110px;
    }

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

    .category-icon-wrap {
        width: 70px;
        height: 70px;
    }

    .category-big-icon {
        font-size: 2rem;
    }
}

/* Larger screens - full width */
@media (min-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 24px;
    }

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
        z-index: -1;
    }

    .cards-grid {
        gap: 16px;
    }

    .card {
        min-height: 120px;
        padding: 20px 12px;
        border-radius: 18px;
    }

    .card-icon {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .card-title {
        font-size: 1rem;
    }

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