/* style/expert-picks-details.css */

/* Base styles for the page content */
.page-expert-picks-details {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

.page-expert-picks-details__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-expert-picks-details__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    overflow: hidden;
    background-color: #017439; /* Brand primary color for hero background */
    color: #ffffff;
}

.page-expert-picks-details__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.2; /* Slightly transparent to let background color show */
}

.page-expert-picks-details__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
    border-radius: 8px;
}

.page-expert-picks-details__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFF00; /* Custom color for important titles */
    line-height: 1.2;
}

.page-expert-picks-details__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Section titles */
.page-expert-picks-details__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #FFFF00; /* Custom color for section titles */
    line-height: 1.3;
}

/* General button styles */
.page-expert-picks-details__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    text-align: center;
    box-sizing: border-box; /* Crucial for responsive buttons */
}

.page-expert-picks-details__btn-primary {
    background-color: #C30808; /* Custom color for primary action (Register/Login) */
    color: #FFFF00; /* Custom font color for primary action */
    border: 2px solid #C30808;
}

.page-expert-picks-details__btn-primary:hover {
    background-color: #ff3333;
    border-color: #ff3333;
    color: #ffffff;
}

.page-expert-picks-details__btn-secondary {
    background-color: transparent;
    color: #017439;
    border: 2px solid #017439;
}

.page-expert-picks-details__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
}

.page-expert-picks-details__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Section specific styles */
.page-expert-picks-details__introduction-section,
.page-expert-picks-details__odds-explanation-section,
.page-expert-picks-details__betting-tips-section,
.page-expert-picks-details__faq-section {
    padding: 80px 0;
    background-color: #ffffff; /* Light background for these sections */
    color: #333333; /* Dark text for light background */
}

.page-expert-picks-details__match-analysis-section,
.page-expert-picks-details__responsible-gaming-section,
.page-expert-picks-details__cta-section {
    padding: 80px 0;
    background-color: #017439; /* Dark background for these sections */
    color: #ffffff; /* Light text for dark background */
}

.page-expert-picks-details__introduction-section .page-expert-picks-details__section-title,
.page-expert-picks-details__odds-explanation-section .page-expert-picks-details__section-title,
.page-expert-picks-details__betting-tips-section .page-expert-picks-details__section-title,
.page-expert-picks-details__responsible-gaming-section .page-expert-picks-details__section-title,
.page-expert-picks-details__faq-section .page-expert-picks-details__section-title,
.page-expert-picks-details__cta-section .page-expert-picks-details__section-title {
    color: #FFFF00; /* Ensure titles are bright */
}
.page-expert-picks-details__introduction-section .page-expert-picks-details__text-block,
.page-expert-picks-details__odds-explanation-section .page-expert-picks-details__text-block,
.page-expert-picks-details__betting-tips-section .page-expert-picks-details__text-block,
.page-expert-picks-details__faq-section .page-expert-picks-details__text-block {
    color: #333333; /* Ensure text is dark on light background */
}


/* Expert Grid */
.page-expert-picks-details__expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-expert-picks-details__expert-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333333;
}

.page-expert-picks-details__expert-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #017439;
}

.page-expert-picks-details__expert-name {
    font-size: 1.5em;
    color: #017439;
    margin-bottom: 10px;
}

.page-expert-picks-details__expert-bio {
    font-size: 0.95em;
    color: #555555;
}

/* Match Analysis */
.page-expert-picks-details__match-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;
}

.page-expert-picks-details__match-header {
    text-align: center;
    margin-bottom: 30px;
}

.page-expert-picks-details__match-title {
    font-size: 2em;
    color: #FFFF00;
    margin-bottom: 10px;
}

.page-expert-picks-details__match-date {
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-expert-picks-details__match-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.page-expert-picks-details__team-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.page-expert-picks-details__team-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.page-expert-picks-details__team-name {
    font-size: 1.3em;
    font-weight: bold;
    color: #ffffff;
}

.page-expert-picks-details__vs {
    font-size: 2em;
    font-weight: bold;
    color: #FFFF00;
}

.page-expert-picks-details__analysis-content {
    margin-top: 30px;
}

.page-expert-picks-details__analysis-subtitle {
    font-size: 1.6em;
    color: #FFFF00;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-expert-picks-details__analysis-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-expert-picks-details__analysis-list li {
    margin-bottom: 10px;
    color: #f0f0f0;
}

.page-expert-picks-details__text-block {
    margin-bottom: 20px;
    font-size: 1.05em;
}

/* Odds Explanation */
.page-expert-picks-details__grid-2-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 50px;
}