/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 85, 165, 0.9), rgba(0, 85, 165, 0.85)), 
                url('https://images.unsplash.com/photo-1533750349088-cd871a92f312?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') no-repeat center center/cover;
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 10px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Quick Search Section */
.quick-search-section {
    background-color: #f8f9fa;
    padding: 30px 0;
    margin-bottom: 40px;
    border-radius: 10px;
}

.quick-search-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.search-input-group {
    display: flex;
    gap: 10px;
}

.search-input-group input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

/* Categories Section */
.categories-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 1.8rem;
    color: #333;
}

.view-all {
    color: #0055A5;
    font-weight: 500;
    text-decoration: none;
}

.view-all:hover {
    text-decoration: underline;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-icon {
    font-size: 2rem;
    color: #0055A5;
    margin-bottom: 15px;
}

.category-info h3 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: #333;
}

.category-count {
    color: #666;
    font-size: 0.9rem;
}

.category-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Featured & Recent Ads Sections */
.featured-ads-section, .recent-ads-section {
    margin-bottom: 40px;
}

.ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.ad-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.ad-card:hover {
    transform: translateY(-5px);
}

.ad-image-container {
    height: 200px;
    overflow: hidden;
}

.ad-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-details {
    padding: 15px;
}

.ad-details h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.ad-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #666;
}

.ad-description {
    margin-bottom: 15px;
    color: #555;
}

.btn-view {
    display: inline-block;
    padding: 8px 15px;
    background-color: #0055A5;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-view:hover {
    background-color: #00458a;
}

/* How It Works Section */
.how-it-works-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    margin-bottom: 40px;
    border-radius: 10px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 15px;
    position: relative;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 25px;
    right: -10px;
    width: 20px;
    height: 2px;
    background-color: #ddd;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #0055A5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.5;
}

/* CTA Section */
        .cta {
            padding: 4rem 0;
            background: linear-gradient(rgba(26, 62, 114, 0.9), rgba(26, 62, 114, 0.9)), 
                        url('https://via.placeholder.com/1920x600?text=Football+Banner') no-repeat center center/cover;
            color: var(--light-text);
            text-align: center;
        }

        .cta h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        /* About Page Styles */
        .about-section {
            padding: 4rem 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 4px 6px var(--shadow-color);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .team-card {
            background-color: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px var(--shadow-color);
            text-align: center;
        }

        .team-image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .team-info {
            padding: 1.5rem;
        }

        /* Breadcrumb */
        .breadcrumb {
            padding: 1rem 0;
            margin-bottom: 2rem;
        }

        .breadcrumb a {
            color: var(--primary-color);
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .breadcrumb-separator {
            margin: 0 0.5rem;
            color: #999;
        }
        
        .btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--pure-white);
}

.btn-primary:hover {
    background-color: #00458a;
    transform: translateY(-2px);
}

.btn-green {
    background-color: var(--growth-green);
    color: var(--pure-white);
}

.btn-green:hover {
    background-color: #25a25a;
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--premium-gold);
    color: var(--pure-white);
}

.btn-gold:hover {
    background-color: #c6950c;
    transform: translateY(-2px);
}

.btn-orange {
    background-color: var(--energy-orange);
    color: var(--pure-white);
}

.btn-orange:hover {
    background-color: #e05700;
    transform: translateY(-2px);
}