/* style/betting-tips-card-game-psychology.css */
.page-betting-tips-card-game-psychology {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for general text on dark backgrounds */
    background-color: #0F1230; /* A darker shade of #1A237E for main background */
}

.page-betting-tips-card-game-psychology .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-betting-tips-card-game-psychology .hero-section {
    background: linear-gradient(135deg, #1A237E 0%, #3F51B5 100%); /* Dark indigo to a slightly lighter blue */
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-betting-tips-card-game-psychology .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-betting-tips-card-game-psychology .hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #E0E0E0;
}

.page-betting-tips-card-game-psychology .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-betting-tips-card-game-psychology .btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #1A237E; /* Dark indigo text on gold */
    border: 2px solid #FFD700;
}

.page-betting-tips-card-game-psychology .btn-primary:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
}

.page-betting-tips-card-game-psychology .btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-betting-tips-card-game-psychology .btn-secondary:hover {
    background-color: #FFD700;
    color: #1A237E;
    transform: translateY(-2px);
}

.page-betting-tips-card-game-psychology .content-section {
    padding: 60px 0;
    background-color: #1A237E; /* Main content background */
}

.page-betting-tips-card-game-psychology .content-section.bg-dark {
    background-color: #0F1230; /* Slightly darker for contrast */
}

.page-betting-tips-card-game-psychology .section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-betting-tips-card-game-psychology .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-betting-tips-card-game-psychology .subsection-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-section titles */
    margin-top: 35px;
    margin-bottom: 15px;
    border-left: 4px solid #FFD700;
    padding-left: 15px;
}

.page-betting-tips-card-game-psychology p {
    font-size: 1.1em;
    margin-bottom: 1em;
    color: #E0E0E0;
}

.page-betting-tips-card-game-psychology .styled-list {
    list-style: none;
    padding: 0;
    margin-left: 20px;
}

.page-betting-tips-card-game-psychology .styled-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 30px;
    font-size: 1.1em;
    color: #C0C0C0;
}

.page-betting-tips-card-game-psychology .styled-list li::before {
    content: '▶'; /* Custom bullet point */
    color: #FFD700;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.9em;
}

.page-betting-tips-card-game-psychology .image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-betting-tips-card-game-psychology .content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-betting-tips-card-game-psychology .cta-section {
    background-color: #1A237E;
    padding: 80px 0;
    text-align: center;
    color: #E0E0E0;
}

.page-betting-tips-card-game-psychology .cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 30px;
}

.page-betting-tips-card-game-psychology .final-cta-section {
    background-color: #0F1230;
    padding: 80px 0;
    text-align: center;
    color: #E0E0E0;
}

.page-betting-tips-card-game-psychology .final-cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 30px;
}

.page-betting-tips-card-game-psychology .cta-buttons {
    margin-top: 40px;
}

.page-betting-tips-card-game-psychology .conclusion-section {
    padding: 50px 0;
    background-color: #1A237E;
    text-align: center;
    font-size: 1.1em;
    color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-betting-tips-card-game-psychology .hero-title {
        font-size: 2.5em;
    }

    .page-betting-tips-card-game-psychology .hero-subtitle,
    .page-betting-tips-card-game-psychology p,
    .page-betting-tips-card-game-psychology .styled-list li {
        font-size: 1em;
    }

    .page-betting-tips-card-game-psychology .section-title {
        font-size: 2em;
    }

    .page-betting-tips-card-game-psychology .subsection-title {
        font-size: 1.5em;
    }

    .page-betting-tips-card-game-psychology .btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-betting-tips-card-game-psychology .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-betting-tips-card-game-psychology .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-betting-tips-card-game-psychology .hero-title {
        font-size: 2em;
    }

    .page-betting-tips-card-game-psychology .section-title {
        font-size: 1.8em;
    }

    .page-betting-tips-card-game-psychology .subsection-title {
        font-size: 1.3em;
    }

    .page-betting-tips-card-game-psychology .btn {
        width: 100%;
        text-align: center;
    }
}