.page-live {
    background-color: #0d0d0d;
    color: #f5f5f5;
    font-family: 'Arial', sans-serif;
}

.page-live__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, main offset handled by body */
    padding-bottom: 40px;
    text-align: center;
}

.page-live__hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-live__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-live__hero-title {
    color: #FFD700;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    /* Using clamp for H1 font-size as per rule */
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-live__hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-live__cta-button,
.page-live__card-button,
.page-live__main-cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2E44;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-live__cta-button:hover,
.page-live__card-button:hover,
.page-live__main-cta-button:hover {
    background-color: #e0b800;
    transform: translateY(-2px);
}

.page-live__section-title {
    color: #FFD700;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.page-live__section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    color: #e5e5e5;
}

.page-live__about-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-live__about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-live__about-text {
    flex: 1;
    min-width: 300px;
}

.page-live__about-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-live__text-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-live__text-link:hover {
    color: #e0b800;
    text-decoration: underline;
}

.page-live__about-image {
    flex: 1;
    min-width: 400px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-live__games-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-live__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.page-live__game-card {
    background-color: #1A2E44;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 20px;
}

.page-live__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-live__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 15px;
}

.page-live__game-title {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-live__game-title a {
    color: inherit;
    text-decoration: none;
}

.page-live__game-title a:hover {
    text-decoration: underline;
}

.page-live__game-description {
    font-size: 0.95rem;
    color: #e5e5e5;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
    padding: 0 15px;
}

.page-live__features-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-live__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-live__feature-item {
    background-color: #1A2E44;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-live__feature-icon {
    width: 250px; /* Ensure minimum width */
    height: 250px; /* Ensure minimum height >= 200px */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-live__feature-title {
    font-size: 1.4rem;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-live__feature-description {
    font-size: 1rem;
    color: #e5e5e5;
    line-height: 1.6;
}

.page-live__main-cta-button {
    margin-top: 20px;
}

.page-live__responsible-gaming-section {
    background-color: #1A2E44;
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
    border-top: 5px solid #FFD700;
}

.page-live__responsible-gaming-section .page-live__section-title {
    padding-top: 0;
    margin-bottom: 15px;
}

.page-live__responsible-gaming-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e5e5e5;
}

.page-live__responsible-gaming-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-live__responsible-gaming-link:hover {
    color: #e0b800;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-live__hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .page-live__hero-description {
        font-size: 1rem;
    }

    .page-live__cta-button,
    .page-live__card-button,
    .page-live__main-cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-live__section-title {
        font-size: 1.8rem;
    }

    .page-live__about-content {
        flex-direction: column;
        text-align: center;
    }

    .page-live__about-image {
        min-width: unset;
        width: 100%;
    }

    .page-live__games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-live__feature-icon {
        width: 200px; /* Min size for mobile */
        height: 200px; /* Ensure minimum height >= 200px */
    }

    /* Ensure content area images are responsive and do not overflow */
    .page-live img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-live__games-grid,
    .page-live__features-grid {
        grid-template-columns: 1fr;
    }
    .page-live__game-image {
        height: 180px;
    }
    .page-live__feature-icon {
        width: 200px;
        height: 200px;
    }
}