/* style/betting-strategies-psychology.css */

.page-betting-strategies-psychology {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6;
}

.page-betting-strategies-psychology__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-betting-strategies-psychology__hero-section {
    background: linear-gradient(135deg, #1A237E 0%, #3f479a 100%); /* Dark blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-betting-strategies-psychology__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,patterns,dark_blue]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-betting-strategies-psychology__hero-section > * {
    position: relative;
    z-index: 1;
}

.page-betting-strategies-psychology__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Bright gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-betting-strategies-psychology__hero-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-betting-strategies-psychology__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Bright gold */
    color: #1A237E; /* Dark blue text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.page-betting-strategies-psychology__cta-button:hover {
    background-color: #e5c100; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-betting-strategies-psychology__content-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.page-betting-strategies-psychology__content-section:nth-of-type(even) {
    background-color: #f9f9f9;
}

.page-betting-strategies-psychology__section-title {
    font-size: 2.5em;
    color: #1A237E; /* Dark blue */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-betting-strategies-psychology__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    border-radius: 2px;
}

.page-betting-strategies-psychology__content-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
    text-align: justify;
}

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

.page-betting-strategies-psychology__card {
    background-color: #f0f2f5;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #1A237E;
}

.page-betting-strategies-psychology__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.page-betting-strategies-psychology__card-title {
    font-size: 1.5em;
    color: #1A237E; /* Dark blue */
    margin-bottom: 15px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-betting-strategies-psychology__card p {
    font-size: 1em;
    color: #555;
    text-align: left;
}

.page-betting-strategies-psychology__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-betting-strategies-psychology__list li {
    background-color: #e8eaf6; /* Lighter shade of primary */
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 6px solid #FFD700; /* Gold accent */
}

.page-betting-strategies-psychology__list-title {
    font-size: 1.3em;
    color: #1A237E; /* Dark blue */
    margin-bottom: 10px;
}

.page-betting-strategies-psychology__list li p {
    font-size: 1em;
    color: #444;
    text-align: left;
    margin-bottom: 0;
}

.page-betting-strategies-psychology__bullet-list {
    list-style-type: disc;
    margin-left: 25px;
    font-size: 1.1em;
    color: #444;
}

.page-betting-strategies-psychology__bullet-list li {
    margin-bottom: 10px;
}

.page-betting-strategies-psychology__bullet-list strong {
    color: #1A237E;
}

.page-betting-strategies-psychology__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.page-betting-strategies-psychology__image--large {
    max-width: 90%;
}

.page-betting-strategies-psychology__cta-section {
    background: #1A237E;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-betting-strategies-psychology__cta-section .page-betting-strategies-psychology__section-title {
    color: #FFD700;
}

.page-betting-strategies-psychology__cta-section .page-betting-strategies-psychology__section-title::after {
    background-color: #fff;
}

.page-betting-strategies-psychology__cta-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-betting-strategies-psychology__button-group {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-betting-strategies-psychology__secondary-button {
    display: inline-block;
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700; /* Gold border */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.page-betting-strategies-psychology__secondary-button:hover {
    background-color: #FFD700; /* Gold background */
    color: #1A237E; /* Dark blue text */
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-betting-strategies-psychology__main-title {
        font-size: 2.8em;
    }
    .page-betting-strategies-psychology__section-title {
        font-size: 2em;
    }
    .page-betting-strategies-psychology__hero-text,
    .page-betting-strategies-psychology__content-section p,
    .page-betting-strategies-psychology__cta-section p {
        font-size: 1em;
    }
    .page-betting-strategies-psychology__card {
        padding: 25px;
    }
    .page-betting-strategies-psychology__card-title {
        font-size: 1.3em;
    }
    .page-betting-strategies-psychology__list li {
        padding: 20px;
    }
    .page-betting-strategies-psychology__list-title {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-betting-strategies-psychology__hero-section {
        padding: 80px 0;
    }
    .page-betting-strategies-psychology__main-title {
        font-size: 2.2em;
    }
    .page-betting-strategies-psychology__section-title {
        font-size: 1.8em;
    }
    .page-betting-strategies-psychology__grid {
        grid-template-columns: 1fr;
    }
    .page-betting-strategies-psychology__cta-button,
    .page-betting-strategies-psychology__secondary-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-betting-strategies-psychology__button-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-betting-strategies-psychology__hero-section {
        padding: 60px 0;
    }
    .page-betting-strategies-psychology__main-title {
        font-size: 1.8em;
    }
    .page-betting-strategies-psychology__hero-text {
        font-size: 0.95em;
    }
    .page-betting-strategies-psychology__section-title {
        font-size: 1.5em;
    }
    .page-betting-strategies-psychology__content-section {
        padding: 40px 0;
    }
    .page-betting-strategies-psychology__card {
        padding: 20px;
    }
    .page-betting-strategies-psychology__list li {
        padding: 15px;
    }
}