/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
}

.navbar-brand:hover {
    color: #fff;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.nav-link:hover {
    color: #fff;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Badge Styles */
.badge {
    padding: 0.5em 0.75em;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.bg-primary {
    background-color: #0d6efd !important;
}

/* Button Styles */
.btn {
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Event Detail Page Styles */
.lead {
    font-size: 1.25rem;
    font-weight: 400;
}

.list-group-item {
    padding: 1rem 1.25rem;
    border-left: none;
    border-right: none;
}

.list-group-item:first-child {
    border-top: none;
}

.list-group-item strong {
    font-weight: 600;
    color: #495057;
}

/* Sidebar Navigation */
.list-group-item-action {
    border-radius: 8px !important;
    margin-bottom: 5px;
    border: 1px solid #dee2e6;
    font-weight: 500;
}

.list-group-item-action.active {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Footer Styles */
footer {
    background-color: #343a40;
    color: #fff;
    padding: 3rem 0;
    margin-top: 3rem;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #fff;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

footer address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .card {
        margin-bottom: 1.5rem;
    }
    
    .list-group {
        margin-bottom: 1.5rem;
    }
}

/* Animation for Featured Events */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.card:hover .card-text small {
    animation: pulse 1.5s infinite;
}

/* Custom Utilities */
.mt-6 {
    margin-top: 4rem;
}

.mb-6 {
    margin-bottom: 4rem;
}

.rounded-lg {
    border-radius: 12px;
}

/* Category Badge Colors */
.badge-music {
    background-color: #6f42c1;
}

.badge-sports {
    background-color: #dc3545;
}

.badge-art {
    background-color: #fd7e14;
}

.badge-business {
    background-color: #20c997;
}

.badge-technology {
    background-color: #0dcaf0;
}

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .banner {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 40px 20px;
            text-align: center;
            border-radius: 8px;
            #margin-bottom: 30px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);

            
        }
        
        .banner h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .banner p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Team Header - Matching Sports Hub Theme */
        .team-header {
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .team-logo {
            width: 120px;
            height: 120px;
            margin-right: 30px;
            object-fit: contain;
            background-color: white;
            padding: 10px;
            border-radius: 8px;
        }
        
        .team-info h1 {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }
        
        .team-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            opacity: 0.9;
        }
        
        .team-record {
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        /* Team Introduction Section */
        .team-intro {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .team-intro h2 {
            color: #1e3c72;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        .team-intro p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        /* Schedule Section - Matching Card Style */
        .schedule-section {
            background-color: white;
            border-radius: 8px;
            padding: 5px;
            margin-bottom: 5px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .section-title {
            font-size: 1.5rem;
            margin-bottom: 5px;
            padding-left: 15px;
            padding-bottom: 5px;
            border-bottom: 2px solid #f0f0f0;
            color: #1e3c72;
        }
        
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .schedule-table th {
            text-align: left;
            padding: 12px 15px;
            background-color: #f8f8f8;
            color: #555;
            font-weight: 600;
        }
        
        .schedule-table td {
            padding: 15px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .schedule-table tr:last-child td {
            border-bottom: none;
        }
        
        .game-date {
            font-weight: 500;
            white-space: nowrap;
        }
        
        .opponent {
            display: flex;
            align-items: center;
        }
        
        .opponent-logo {
            width: 30px;
            height: 30px;
            margin-right: 10px;
            object-fit: contain;
        }
        
        .game-location {
            color: #666;
            font-size: 0.9rem;
        }
        
        .game-result {
            font-weight: 600;
        }
        
        .win {
            color: #2ecc71;
        }
        
        .loss {
            color: #e74c3c;
        }
        
        .upcoming {
            color: #3498db;
        }
        
        .tv-info {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }
        
        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .faq-question {
            font-weight: bold;
            color: #1e3c72;
            font-size: 1.1rem;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .faq-question:before {
            content: "Q";
            display: inline-block;
            background-color: #1e3c72;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            text-align: center;
            line-height: 24px;
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        .faq-answer {
            color: #555;
            padding-left: 34px;
        }
        
        .benefits-highlight {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 6px;
            margin-top: 10px;
            border-left: 4px solid #2ecc71;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .team-header {
                flex-direction: column;
                text-align: center;
            }
            
            .team-logo {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .team-meta {
                flex-direction: column;
                gap: 5px;
            }
            
            .schedule-table th {
                display: none;
            }
            
            .schedule-table td {
                display: block;
                padding: 10px;
            }
            
            .schedule-table td:before {
                content: attr(data-label);
                font-weight: bold;
                display: inline-block;
                width: 100px;
                color: #555;
            }
        }

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin: 20px 0;
        }
        
       
        
        .subtitle {
            color: #7f8c8d;
            text-align: center;
            margin-bottom: 40px;
            font-size: 1.1rem;
        }
        
        .divider {
            height: 1px;
            background: #ecf0f1;
            margin: 30px 0;
        }
        
        h2 {
            color: #3498db;
            margin: 25px 0 15px 0;
            font-weight: 500;
            font-size: 1.4rem;
        }
        
        /* Base breadcrumb styles */
        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            padding: 15px 20px;
            border-radius: 8px;
            background: #f8f9fa;
            margin: 20px 0;
        }
        
        .breadcrumb-item {
            display: flex;
            align-items: center;
        }
        
        .breadcrumb-item a {
            text-decoration: none;
            color: #3498db;
            transition: color 0.3s;
            font-weight: 500;
        }
        
        .breadcrumb-item a:hover {
            color: #2980b9;
            text-decoration: underline;
        }
        
        .breadcrumb-separator {
            margin: 0 12px;
            color: #95a5a6;
        }
        
        .breadcrumb-item.active {
            color: #2c3e50;
            font-weight: 600;
        }
        
        /* Style 1 - Simple with arrows */
        .breadcrumb.style1 {
            background: #e1f5fe;
            padding: 12px 20px;
        }
        
        .breadcrumb.style1 .breadcrumb-separator {
            color: #29b6f6;
        }
        
        /* Style 2 - With chevrons */
        .breadcrumb.style2 {
            background: #fff3e0;
        }
        
        .breadcrumb.style2 .breadcrumb-separator {
            color: #ff9800;
        }
        
        /* Style 3 - With slashes */
        .breadcrumb.style3 {
            background: #e8f5e9;
        }
        
        .breadcrumb.style3 .breadcrumb-separator {
            color: #4caf50;
        }
        
        /* Style 4 - Minimal with pipes */
        .breadcrumb.style4 {
            background: #f5f5f5;
            border-left: 4px solid #9b59b6;
        }
        
        .breadcrumb.style4 .breadcrumb-separator {
            color: #9b59b6;
        }
        
        /* Code example */
        .code-example {
            background: #2d3436;
            color: #f5f5f5;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
            font-family: 'Courier New', monospace;
            overflow-x: auto;
        }
        
        .code-example h3 {
            color: #dfe6e9;
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .code-example pre {
            white-space: pre-wrap;
            line-height: 1.5;
        }
        
        .comment {
            color: #81ecec;
        }
        
        .tag {
            color: #ff7675;
        }
        
        .attribute {
            color: #74b9ff;
        }
        
        .value {
            color: #55efc4;
        }
        
        @media (max-width: 600px) {
            .container {
                padding: 20px;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            .breadcrumb {
                padding: 10px 15px;
            }
            
            .breadcrumb-separator {
                margin: 0 8px;
            }
        }
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .navbar {
           
            color: white;
            padding: 0 20px;
           #box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            margin: 0 5px;
        }
        
        .nav-link {
            color: white;
            text-decoration: none;
            padding: 10px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .nav-link.active {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
        }
        
        .content {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .content h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .content p {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #555;
        }
        
        @media screen and (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                left: -100%;
                #top: 70px;
                flex-direction: column;
                
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
                #padding: 20px 0;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-item {
                #margin: 15px 0;
            }
            
            .nav-link {
               # padding: 15px;
               # display: block;
            }
        }* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            justify-content: space-between;
        }
        
        .content {
            padding: 2rem;
            text-align: center;
            flex-grow: 1;
        }
        
        .footer {
            background: linear-gradient(to right, #1a2a6c, #2b5876);
            color: white;
            padding: 40px 0 20px;
            width: 100%;
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            gap: 30px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-section h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #ff6b6b;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #ff6b6b;
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: #ff6b6b;
            transform: translateY(-3px);
        }
        
        .newsletter input {
            padding: 12px 15px;
            width: 100%;
            border: none;
            border-radius: 4px;
            margin-bottom: 15px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
        }
        
        .newsletter input::placeholder {
            color: #ddd;
        }
        
        .newsletter button {
            padding: 12px 25px;
            background-color: #ff6b6b;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter button:hover {
            background-color: #ff5252;
        }
        
        .payment-methods {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        .payment-methods span {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
        }
        
        .footer-bottom {
            text-align: center;
            padding: 20px 0;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .footer-bottom p {
            font-size: 14px;
            color: #ddd;
        }
        
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer-section {
                min-width: 100%;
            }
        }

