/* style/sports.css */

/* General page styles */
.page-sports {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background */
    background-color: #000; /* Assuming body background is #000 from shared.css */
}

.page-sports__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Section titles */
.page-sports__section-title {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-sports__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107; /* Accent color */
    border-radius: 2px;
}

.page-sports__section-title--light {
    color: #ffffff;
}

/* Text blocks */
.page-sports__text-block {
    font-size: 17px;
    text-align: center;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-sports__text-block--light {
    color: #e0e0e0;
}

/* Buttons */
.page-sports__btn-primary,
.page-sports__btn-secondary,
.page-sports__btn-link {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-sports__btn-primary {
    background-color: #007bff; /* Primary brand color */
    color: #ffffff;
    border: 2px solid #007bff;
}

.page-sports__btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-sports__btn-secondary {
    background-color: transparent;
    color: #ffc107; /* Accent brand color */
    border: 2px solid #ffc107;
}

.page-sports__btn-secondary:hover {
    background-color: #ffc107;
    color: #000000;
    transform: translateY(-2px);
}

.page-sports__btn-link {
    background-color: transparent;
    color: #ffc107;
    border: 1px solid #ffc107;
    padding: 8px 15px;
    font-size: 15px;
    margin-top: 15px;
}

.page-sports__btn-link:hover {
    background-color: #ffc107;
    color: #000000;
}

/* Hero Section */
.page-sports__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 0; /* Assuming shared.css handles body padding-top */
    margin-top: 0;
}

.page-sports__hero-container {
    position: relative;
    width: 100%;
    height: 600px; /* Fixed height for desktop hero */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-sports__hero-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    min-width: 200px;
    min-height: 200px;
}

.page-sports__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.page-sports__hero-title {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page-sports__hero-description {
    font-size: 22px;
    color: #f0f0f0;
    max-width: 800px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.page-sports__hero-cta {
    display: flex;
    gap: 20px;
}

/* Introduction Section */
.page-sports__introduction-section {
    padding: 80px 0;
    background-color: #0d0d0d; /* Slightly lighter dark background */
}

.page-sports__feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-sports__card {
    background-color: rgba(255, 255, 255, 0.08); /* Light background for cards on dark section */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
    text-align: center;
}

.page-sports__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-sports__card-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffc107; /* Accent color for titles */
    margin-bottom: 15px;
}

.page-sports__card p {
    font-size: 16px;
    color: #e0e0e0;
}

/* Types of Betting Section */
.page-sports__types-of-betting-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Another dark background shade */
}

.page-sports__betting-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-sports__category-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.page-sports__category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-sports__category-item img {
    width: 100%;
    height: 220px; /* Fixed height for category images */
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-sports__category-title {
    font-size: 22px;
    font-weight: bold;
    color: #007bff; /* Primary color for category titles */
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-sports__category-item p {
    font-size: 15px;
    color: #e0e0e0;
    padding: 0 20px 20px;
    flex-grow: 1; /* Allow paragraph to take available space */
}

/* Advantages Section */
.page-sports__advantages-section {
    padding: 80px 0;
    background-color: #0d0d0d;
}

.page-sports__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-sports__advantage-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
    text-align: center;
}

.page-sports__advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-sports__advantage-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffc107;
    margin-bottom: 15px;
}

.page-sports__advantage-item p {
    font-size: 16px;
    color: #e0e0e0;
}

/* How to Start Section */
.page-sports__how-to-start-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.page-sports__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-sports__step-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-sports__step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}