/* static/css/content_sections.css */

#content-below-poster {
    background-color: #101010; /* Base background for content area */
}

.home-content-section {
    padding: 60px 20px;
    max-width: 1140px;
    margin: 0 auto;
}
/* Alternating background for sections on the homepage */
.home-content-section:nth-child(even) { /* Use 'even' if the first section after poster has #101010 */
    background-color: #121212;
}

.home-content-section h2 { /* Section titles on homepage */
    text-align: center;
    font-family: 'Conthrax', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 2.4em;
    color: #ff8128; /* Orange for main section titles */
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-content-section > p { /* Descriptive text under section titles */
    /* font-family: 'Conthrax', sans-serif; -- УБРАНО */
    font-weight: 400; /* Regular */
    font-size: 1.1em;
    color: #b0b0b0; /* Lighter grey for readability */
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 45px auto;
}

/* Feature Highlights on Home Page (MintBase teaser) */
.feature-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.highlight-item { /* Card in MintBase teaser */
    background-color: #1f1f1f;
    padding: 30px 25px;
    border-radius: 8px;
    border: 1px solid #2f2f2f;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0, 0.2);
}
.highlight-item h3 { /* Title in teaser card */
    font-family: 'Conthrax', sans-serif;
    font-weight: 600; /* SemiBold */
    font-size: 1.6em;
    color: #e0e0e0; /* Light color, not orange */
    margin-top: 0;
    margin-bottom: 15px;
}
.highlight-item p { /* Text in teaser card */
    /* font-family: 'Conthrax', sans-serif; -- УБРАНО */
    font-weight: 400; /* Regular */
    font-size: 1em;
    color: #a0a0a0; /* Grey text */
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Section Action Button ("Узнать больше", "Познакомиться с командой") */
.section-action-button {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
    padding: 14px 35px;
    background-color: #ff8128;
    color: #101010;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Conthrax', sans-serif;
    font-weight: 700; /* Bold */
    text-transform: uppercase;
    transition: background-color 0.2s ease, transform 0.2s ease;
    font-size: 1em;
    border: 2px solid #ff8128;
}
.section-action-button:hover {
    background-color: #e07018;
    color: #101010;
    transform: translateY(-2px);
}

/* --- INFO SECTION (Почему выбирают нас?) --- */
/* .info-section h2 is covered by .home-content-section h2 */
.features-grid { /* Grid for "Почему выбирают нас" */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.feature-item { /* Card for "Почему выбирают нас" */
    background-color: #1f1f1f;
    padding: 30px 25px;
    border-radius: 8px;
    border: 1px solid #2f2f2f;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border-color: #ff8128; /* Orange border on hover */
}
.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}
.feature-item h3 { /* Title in "Почему выбирают нас" card */
    font-family: 'Conthrax', sans-serif;
    font-weight: 600; /* SemiBold */
    font-size: 1.5em;
    color: #e0e0e0; /* Light color, not orange */
    margin-top: 0;
    margin-bottom: 10px;
}
.feature-item p { /* Text in "Почему выбирают нас" card */
    /* font-family: 'Conthrax', sans-serif; -- УБРАНО */
    font-weight: 400; /* Regular */
    font-size: 1em;
    color: #a0a0a0; /* Grey text */
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- GENERAL CONTAINER (for donate.html, how_to_play.html, features.html, about_us.html) --- */
.container, .features-page-container, .about-us-container {
    background-color: #161616;
    padding: 35px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0, 0.2);
    border: 1px solid #333;
    margin: 40px auto;
    width: 100%;
    max-width: 960px;
}
/* Main page title on these content pages */
.container h1, .features-page-container h1, .about-us-container h1 {
    font-family: 'Conthrax', sans-serif;
    font-weight: 800; /* Heavy */
    text-align: center;
    color: #ff8128; /* Orange */
    margin-top: 0;
    margin-bottom: 35px;
    font-size: 2.6em;
}
/* Subheadings (h2) on these content pages */
.features-page-container h2, .about-us-container h2 {
    font-family: 'Conthrax', sans-serif;
    font-weight: 700; /* Bold */
    color: #ff8128; /* Orange */
    font-size: 1.8em;
    margin-top: 35px;
    margin-bottom: 20px;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}
/* Paragraphs and list items on these content pages */
.features-page-container p, .features-page-container li,
.about-us-container p, .about-us-container li {
    /* font-family: 'Conthrax', sans-serif; -- УБРАНО */
    font-weight: 400; /* Regular */
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 1.05em;
    margin-bottom: 12px;
}
.features-page-container ul, .about-us-container ul {
    list-style-position: outside;
    padding-left: 20px;
}
.features-page-container code {
    font-family: monospace; /* Monospace for code */
    font-weight: 400;
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 3px 7px;
    border-radius: 4px;
    font-size: 0.95em;
}
.plus-text { /* For "Плюсы:" on features page */
    color: #8bc34a; /* Green for positive emphasis */
    font-weight: 600; /* SemiBold */
}
.role-tag { /* For team roles on about_us page */
    font-family: 'Conthrax', sans-serif;
    font-weight: 700; /* Bold */
    display: inline-block;
    background-color: #ff8128; /* Orange tag */
    color: #101010;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    margin-right: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.team-list strong { /* Names in team list */
    font-weight: 600; /* SemiBold */
    color: #e0e0e0;
}

/* Button-like links on "How to Play" page */
.container .action-link.how-to-play-button {
    display: inline-block;
    padding: 10px 22px;
    color: #ff8128; /* Orange text */
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600; /* SemiBold */
    text-transform: uppercase;
    font-family: 'Conthrax', sans-serif;
    font-size: 0.9em;
    border: 2px solid #ff8128; /* Orange border */
    background-color: transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin: 5px 0 15px 0;
}
.container .action-link.how-to-play-button:hover {
    background-color: #ff8128; /* Orange fill on hover */
    color: #101010; /* Dark text on hover */
}

/* Horizontal rule */
.container hr, #content-below-poster hr, .features-page-container hr, .about-us-container hr {
    margin: 35px 0;
    border: 0;
    border-top: 1px solid #333;
}