/* style/gambling-glossary-house-edge-concept.css */
.page-gambling-glossary-house-edge-concept {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.page-gambling-glossary-house-edge-concept-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-gambling-glossary-house-edge-concept-hero {
    background: linear-gradient(135deg, #1A237E 0%, #3F51B5 100%); /* Darker blue to lighter blue for depth */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gambling-glossary-house-edge-concept-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: page-gambling-glossary-house-edge-concept-hero-glow 15s infinite alternate;
}

@keyframes page-gambling-glossary-house-edge-concept-hero-glow {
    from { transform: scale(0.8) rotate(0deg); opacity: 0.7; }
    to { transform: scale(1.2) rotate(360deg); opacity: 1; }
}

.page-gambling-glossary-house-edge-concept-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for prominence */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-gambling-glossary-house-edge-concept-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.page-gambling-glossary-house-edge-concept-btn {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #1A237E; /* Dark blue */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-gambling-glossary-house-edge-concept-btn:hover {
    background-color: #e5c100; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-gambling-glossary-house-edge-concept-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-gambling-glossary-house-edge-concept-section:nth-of-type(even) {
    background-color: #f0f2f5;
}

.page-gambling-glossary-house-edge-concept-section-title {
    font-size: 2.5em;
    color: #1A237E; /* Dark blue */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-gambling-glossary-house-edge-concept-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-gambling-glossary-house-edge-concept-sub-title {
    font-size: 1.8em;
    color: #1A237E;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-gambling-glossary-house-edge-concept p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #444;
}

.page-gambling-glossary-house-edge-concept strong {
    color: #1A237E;
}

.page-gambling-glossary-house-edge-concept-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #444;
}

.page-gambling-glossary-house-edge-concept-list li {
    margin-bottom: 10px;
}

.page-gambling-glossary-house-edge-concept-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gambling-glossary-house-edge-concept-cta {
    text-align: center;
    padding: 50px 0;
    background-color: #1A237E;
    color: #fff;
    border-radius: 8px;
    margin-top: 40px;
}

.page-gambling-glossary-house-edge-concept-cta p {
    font-size: 1.6em;
    margin-bottom: 30px;
    color: #fff;
}

.page-gambling-glossary-house-edge-concept-btn-large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gambling-glossary-house-edge-concept-title {
        font-size: 2.2em;
    }

    .page-gambling-glossary-house-edge-concept-subtitle {
        font-size: 1.2em;
    }

    .page-gambling-glossary-house-edge-concept-section-title {
        font-size: 2em;
    }

    .page-gambling-glossary-house-edge-concept-sub-title {
        font-size: 1.5em;
    }

    .page-gambling-glossary-house-edge-concept p,
    .page-gambling-glossary-house-edge-concept-list {
        font-size: 1em;
    }

    .page-gambling-glossary-house-edge-concept-btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-gambling-glossary-house-edge-concept-btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-gambling-glossary-house-edge-concept-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-gambling-glossary-house-edge-concept-title {
        font-size: 1.8em;
    }

    .page-gambling-glossary-house-edge-concept-subtitle {
        font-size: 1em;
    }

    .page-gambling-glossary-house-edge-concept-section-title {
        font-size: 1.8em;
    }

    .page-gambling-glossary-house-edge-concept-sub-title {
        font-size: 1.3em;
    }

    .page-gambling-glossary-house-edge-concept-btn {
        width: 90%;
        margin-top: 15px;
    }

    .page-gambling-glossary-house-edge-concept-btn-large {
        width: 90%;
    }

    .page-gambling-glossary-house-edge-concept-container {
        padding: 0 15px;
    }
}