.tickets-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        @media (min-width: 769px) {
            .tickets-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .ticket-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
            position: relative;
        }

        .ticket-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        }

        .card-header {
            background: #f8f9fa;
            padding: 12px 16px;
            border-bottom: 1px solid #e9ecef;
        }

        .visibility-info {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #6c757d;
            font-size: 14px;
        }

        .visibility-info i {
            color: #007bff;
            font-size: 16px;
        }

        .card-content {
            padding: 20px;
        }

        .section-title {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 4px;
        }

        .section-details {
            font-size: 14px;
            color: #6c757d;
            margin-bottom: 16px;
        }

        .price-section {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 16px;
        }

        .price-info {
            display: flex;
            flex-direction: column;
        }

        .price-label {
            font-size: 12px;
            color: #6c757d;
            margin-bottom: 2px;
        }

        .price {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
        }

        .availability {
            text-align: right;
        }

        .available-count {
            background: #28a745;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
        }

        .available-count.remaining {
            background: #dc3545;
        }

        .rating-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            padding: 12px 0;
            border-top: 1px solid #e9ecef;
            border-bottom: 1px solid #e9ecef;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .rating i {
            color: #ffc107;
            font-size: 16px;
        }

        .rating-score {
            font-weight: 600;
            color: #2c3e50;
        }

        .rating-type {
            font-size: 14px;
            color: #6c757d;
        }

        .delivery-info {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
        }

        .delivery-info i {
            color: #28a745;
        }

        .delivery-type {
            background: #e9ecef;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
            color: #495057;
        }

        .buy-button {
            width: 100%;
            background: linear-gradient(135deg, #007bff 0%, #fd7e14 100%);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 16px;
        }

        .buy-button:hover {
            background: linear-gradient(135deg, #0056b3 0%, #e8590c 100%);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
        }

        .buy-button i {
            font-size: 14px;
        }

        .requirement-info {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #6c757d;
            background: #f8f9fa;
            padding: 8px 12px;
            border-radius: 6px;
        }

        .requirement-info i {
            color: #007bff;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }

            .tickets-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .card-content {
                padding: 16px;
            }

            .price-section {
                flex-direction: column;
                gap: 8px;
            }

            .availability {
                text-align: left;
            }

            .rating-section {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 16px;
            }

            .price {
                font-size: 20px;
            }

            .buy-button {
                padding: 10px 16px;
                font-size: 14px;
            }
        }
        /* No Tickets Warning Styles */
        .no-tickets-warning {
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 40px;
            text-align: center;
            max-width: 600px;
            margin: 40px auto;
            border: 1px solid #e9ecef;
        }

        .warning-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }

        .warning-icon i {
            font-size: 32px;
            color: white;
        }

        .warning-title {
            font-size: 24px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .warning-message {
            font-size: 16px;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 32px;
        }

        .warning-suggestions {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 32px;
            text-align: left;
        }

        .warning-suggestions h4 {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 16px;
            text-align: center;
        }

        .warning-suggestions ul {
            list-style: none;
            padding: 0;
        }

        .warning-suggestions li {
            padding: 8px 0;
            color: #495057;
            position: relative;
            padding-left: 24px;
        }

        .warning-suggestions li:before {
            content: "•";
            color: #007bff;
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 18px;
        }

        .warning-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary, .btn-secondary {
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            border: none;
            text-decoration: none;
            min-width: 160px;
            justify-content: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, #007bff 0%, #fd7e14 100%);
            color: white;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #0056b3 0%, #e8590c 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
        }

        .btn-secondary {
            background: white;
            color: #6c757d;
            border: 2px solid #e9ecef;
        }

        .btn-secondary:hover {
            background: #f8f9fa;
            border-color: #007bff;
            color: #007bff;
            transform: translateY(-2px);
        }

        /* Responsive Design for Warning */
        @media (max-width: 768px) {
            .no-tickets-warning {
                padding: 24px;
                margin: 20px auto;
            }

            .warning-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 20px;
            }

            .warning-icon i {
                font-size: 24px;
            }

            .warning-title {
                font-size: 20px;
            }

            .warning-message {
                font-size: 14px;
            }

            .warning-suggestions {
                padding: 16px;
            }

            .warning-actions {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 280px;
            }
        }

        @media (max-width: 480px) {
            .warning-title {
                font-size: 18px;
            }

            .warning-suggestions h4 {
                font-size: 16px;
            }
        }

        .sold-out-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-15deg);
            background-color: rgba(220, 53, 69, 0.9);
            color: white;
            padding: 8px 20px;
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 4px;
            z-index: 11;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .sold-out-overlay i {
            font-size: 16px;
            color: white;
        }

        .ticket-card.sold-out .sold-out-overlay {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) rotate(-15deg);
        }

        .ticket-card.sold-out {
            background-color: rgba(248, 249, 250, 0.7);
            backdrop-filter: blur(2px);
            opacity: 0.6;
        }

        .ticket-card.sold-out .buy-button {
            cursor: not-allowed;
            background: #6c757d !important;
            opacity: 0.7;
        }

        .ticket-card.sold-out .buy-button:hover {
            background: #6c757d !important;
        }

        @media (max-width: 768px) {
            .sold-out-overlay {
                font-size: 16px;
                padding: 6px 15px;
            }

            .sold-out-overlay i {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .sold-out-overlay {
                font-size: 14px;
                padding: 5px 12px;
            }

            .sold-out-overlay i {
                font-size: 12px;
            }
        }

        .filters-wrap {
            width: 100%;
            position: relative;
            height: auto;
        }

        .filters-wrap object {
            width: 100%;
            height: auto;
            display: block;
        }

        .tribun-hover {
            fill: red !important;
        }
        .tribun-selected {
            fill: grey !important;
        }

        .btn-outline-primary.active {
            background-color: #007bff !important;
            color: white !important;
            border-color: #007bff !important;
        }

        .btn-group .btn-outline-primary:focus {
            box-shadow: none;
        }

        .team-info-section {
            background-color: #f8f9fa;
            padding: 40px 0;
            margin-bottom: 40px;
        }

        .team-info-content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }

        .team-info-title {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #ff6501;
        }

        .team-info-text {
            font-size: 16px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 20px;
            padding-bottom: 20px;
        }

        .read-more {
            color: #ff6501;
            cursor: pointer;
            font-weight: 500;
        }

        .read-more:hover {
            color: #e65c00;
        }

        .collapsed-text {
            max-height: 100px;
            overflow: hidden;
            position: relative;
            transition: max-height 0.3s ease-out;
        }

        .expanded-text {
            max-height: 2000px;
            transition: max-height 0.3s ease-in;
        }

        .fade-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50px;
            background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .expanded-text .fade-bottom {
            opacity: 0;
        }