/* style/player-stories.css */

/* General Page Styles */
.page-player-stories {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.page-player-stories__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-player-stories__section {
    padding: 60px 0;
}

.page-player-stories__section--alt-bg {
    background-color: #f0f8ff; /* Light blue tint for contrast */
}

.page-player-stories__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-player-stories__section-subtitle {
    font-size: 1.2em;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.page-player-stories__sub-title {
    font-size: 1.8em;
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-player-stories__text-center {
    text-align: center;
    margin-bottom: 30px;
}

/* Hero Section */
.page-player-stories__hero {
    background: linear-gradient(135deg, #007bff, #ffc107);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-player-stories__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-player-stories__hero > .page-player-stories__container {
    position: relative;
    z-index: 2;
}

.page-player-stories__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.1;
    color: #fff;
}

.page-player-stories__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

/* Buttons */
.page-player-stories__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-player-stories__btn--primary {
    background-color: #ffc107;
    color: #000;
}

.page-player-stories__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-player-stories__btn--secondary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

.page-player-stories__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
}

.page-player-stories__btn--cta {
    background-color: #ffc107;
    color: #000;
    padding: 18px 35px;
    font-size: 1.3em;
    border: 2px solid #ffc107;
}

.page-player-stories__btn--cta:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-3px);
}

.page-player-stories__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    background-color: #007bff;
    color: #fff;
    border: 1px solid #007bff;
}

.page-player-stories__btn--small:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

/* Content Layout */
.page-player-stories__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-player-stories__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-player-stories__text-content {
    flex: 1;
}

.page-player-stories__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-player-stories__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Story Grid */
.page-player-stories__story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-player-stories__story-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.page-player-stories__story-card:hover {
    transform: translateY(-5px);
}

.page-player-stories__story-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-player-stories__story-meta {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
}

.page-player-stories__story-text {
    font-size: 1em;
    color: #444;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-player-stories__story-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

/* Detail List */
.page-player-stories__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-player-stories__detail-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-player-stories__detail-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-player-stories__detail-title a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-player-stories__detail-title a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.page-player-stories__detail-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* CTA Banner */
.page-player-stories__cta-banner {
    background: #007bff;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    margin-top: 60px;
}

.page-player-stories__cta-content {
    max-width: 900px;
}

.page-player-stories__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
}

.page-player-stories__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-player-stories__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-player-stories__hero-title {
        font-size: 2.8em;
    }

    .page-player-stories__section-title {
        font-size: 2em;
    }

    .page-player-stories__cta-title {
        font-size: 2.2em;
    }

    .page-player-stories__content-wrapper {
        flex-direction: column;
    }

    .page-player-stories__content-wrapper--reverse {
        flex-direction: column;
    }

    .page-player-stories__text-content, .page-player-stories__image-wrapper {
        flex: none;
        width: 100%;
    }

    .page-player-stories__story-grid, .page-player-stories__detail-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-player-stories__hero {
        padding: 80px 0;
    }

    .page-player-stories__hero-title {
        font-size: 2.2em;
    }

    .page-player-stories__hero-description {
        font-size: 1.1em;
    }

    .page-player-stories__section {
        padding: 40px 0;
    }

    .page-player-stories__section-title {
        font-size: 1.8em;
    }

    .page-player-stories__section-subtitle {
        font-size: 1em;
    }

    .page-player-stories__sub-title {
        font-size: 1.5em;
    }

    .page-player-stories__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-player-stories__btn--cta {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-player-stories__story-card {
        padding: 20px;
    }

    .page-player-stories__story-title {
        font-size: 1.4em;
    }

    .page-player-stories__cta-title {
        font-size: 1.8em;
    }

    .page-player-stories__cta-description {
        font-size: 1em;
    }

    .page-player-stories__cta-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-player-stories__hero {
        padding: 60px 0;
    }

    .page-player-stories__hero-title {
        font-size: 1.8em;
    }

    .page-player-stories__hero-description {
        font-size: 0.95em;
    }

    .page-player-stories__section-title {
        font-size: 1.6em;
    }

    .page-player-stories__btn--primary, .page-player-stories__btn--secondary, .page-player-stories__btn--cta {
        width: 100%;
        box-sizing: border-box;
    }
    .page-player-stories__cta-group {
        gap: 10px;
    }
}