/* style/resources-live-streaming-guide.css */

.page-resources-live-streaming-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2C3E50; /* Auxiliary color for general text */
    background-color: #f8f8f8;
}

.page-resources-live-streaming-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-live-streaming-guide__hero-section {
    background: linear-gradient(135deg, #C0392B 0%, #2C3E50 100%);
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
}

.page-resources-live-streaming-guide__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: #ffffff;
}

.page-resources-live-streaming-guide__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-resources-live-streaming-guide__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-live-streaming-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-resources-live-streaming-guide__btn--primary {
    background-color: #F39C12; /* Accent color */
    color: #ffffff;
}

.page-resources-live-streaming-guide__btn--primary:hover {
    background-color: #e08e0b;
    transform: translateY(-3px);
}

.page-resources-live-streaming-guide__btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-resources-live-streaming-guide__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.page-resources-live-streaming-guide__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-live-streaming-guide__section:nth-of-type(odd) {
    background-color: #fcfcfc;
}

.page-resources-live-streaming-guide__section-title {
    font-size: 2.5em;
    color: #C0392B; /* Main color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-live-streaming-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #C0392B;
    border-radius: 2px;
}

.page-resources-live-streaming-guide__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #34495e; /* Darker auxiliary for readability */
}

.page-resources-live-streaming-guide__section p .highlight,
.page-resources-live-streaming-guide__section h2 .highlight,
.page-resources-live-streaming-guide__section h3 .highlight {
    color: #C0392B;
    font-weight: bold;
}

.page-resources-live-streaming-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-live-streaming-guide__image--full-width {
    width: 100%;
}

.page-resources-live-streaming-guide__image--responsive {
    max-width: 90%;
}

.page-resources-live-streaming-guide__feature-grid, 
.page-resources-live-streaming-guide__betting-grid, 
.page-resources-live-streaming-guide__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-live-streaming-guide__feature-item,
.page-resources-live-streaming-guide__betting-item,
.page-resources-live-streaming-guide__game-item {
    background-color: #fcfcfc;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #C0392B;
}

.page-resources-live-streaming-guide__feature-item:hover,
.page-resources-live-streaming-guide__betting-item:hover,
.page-resources-live-streaming-guide__game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-live-streaming-guide__feature-title,
.page-resources-live-streaming-guide__betting-title,
.page-resources-live-streaming-guide__game-title {
    font-size: 1.5em;
    color: #C0392B;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-live-streaming-guide__feature-item p,
.page-resources-live-streaming-guide__betting-item p,
.page-resources-live-streaming-guide__game-item p {
    font-size: 1em;
    color: #555;
    text-align: center;
}

.page-resources-live-streaming-guide__btn--center {
    display: block;
    margin: 40px auto 0 auto;
}

.page-resources-live-streaming-guide__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-live-streaming-guide__step-item {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.page-resources-live-streaming-guide__step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #C0392B; /* Main color */
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #f8f8f8;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-live-streaming-guide__step-title {
    font-size: 1.4em;
    color: #2C3E50;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-live-streaming-guide__step-item p {
    font-size: 1em;
    color: #555;
    text-align: center;
}

.page-resources-live-streaming-guide__text-center {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
    color: #34495e;
}

.page-resources-live-streaming-guide__link-btn {
    color: #C0392B;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-live-streaming-guide__link-btn:hover {
    color: #F39C12;
    text-decoration: underline;
}

.page-resources-live-streaming-guide__app-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.page-resources-live-streaming-guide__app-item {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    flex: 1 1 300px;
    max-width: 400px;
    border-bottom: 5px solid #2C3E50;
}

.page-resources-live-streaming-guide__app-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-resources-live-streaming-guide__app-title {
    font-size: 1.6em;
    color: #2C3E50;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-live-streaming-guide__btn--download {
    background-color: #2C3E50;
    color: #ffffff;
    padding: 12px 25px;
    font-size: 1em;
    margin-top: 20px;
}

.page-resources-live-streaming-guide__btn--download:hover {
    background-color: #34495e;
}

.page-resources-live-streaming-guide__note {
    text-align: center;
    font-style: italic;
    margin-top: 30px;
    color: #666;
    font-size: 0.95em;
}

.page-resources-live-streaming-guide__ordered-list,
.page-resources-live-streaming-guide__unordered-list {
    list-style-type: none;
    padding: 0;
    margin: 30px 0;
}

.page-resources-live-streaming-guide__ordered-list li,
.page-resources-live-streaming-guide__unordered-list li {
    background-color: #fdfdfd;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-left: 5px solid #C0392B;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #34495e;
}

.page-resources-live-streaming-guide__ordered-list li strong {
    color: #C0392B;
}

.page-resources-live-streaming-guide__game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-resources-live-streaming-guide__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
    margin-top: 15px;
    background-color: #F39C12;
    color: #ffffff;
}

.page-resources-live-streaming-guide__btn--small:hover {
    background-color: #e08e0b;
}

.page-resources-live-streaming-guide__faq-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-resources-live-streaming-guide__faq-question {
    font-size: 1.3em;
    color: #2C3E50;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-resources-live-streaming-guide__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #C0392B;
    transition: transform 0.3s ease;
}

.page-resources-live-streaming-guide__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-resources-live-streaming-guide__faq-answer {
    font-size: 1em;
    color: #555;
    padding-left: 10px;
    border-left: 3px solid #C0392B;
    margin-top: 15px;
    display: none;
}

.page-resources-live-streaming-guide__faq-answer.show {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-resources-live-streaming-guide__hero-title {
        font-size: 2.5em;
    }
    .page-resources-live-streaming-guide__hero-subtitle {
        font-size: 1.2em;
    }
    .page-resources-live-streaming-guide__section-title {
        font-size: 2em;
    }
    .page-resources-live-streaming-guide__feature-grid, 
    .page-resources-live-streaming-guide__betting-grid, 
    .page-resources-live-streaming-guide__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-resources-live-streaming-guide__hero-section {
        padding: 80px 0;
    }
    .page-resources-live-streaming-guide__hero-title {
        font-size: 2em;
    }
    .page-resources-live-streaming-guide__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-live-streaming-guide__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-live-streaming-guide__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-resources-live-streaming-guide__section {
        padding: 40px 0;
    }
    .page-resources-live-streaming-guide__section-title {
        font-size: 1.8em;
    }
    .page-resources-live-streaming-guide__app-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .page-resources-live-streaming-guide__app-item {
        max-width: 90%;
    }
    .page-resources-live-streaming-guide__step-by-step {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-resources-live-streaming-guide__hero-title {
        font-size: 1.8em;
    }
    .page-resources-live-streaming-guide__section-title {
        font-size: 1.5em;
    }
    .page-resources-live-streaming-guide__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-resources-live-streaming-guide__section p {
        font-size: 0.95em;
    }
    .page-resources-live-streaming-guide__ordered-list li,
    .page-resources-live-streaming-guide__unordered-list li {
        font-size: 1em;
    }
}