/* style/industry-news-2king88-tech-update.css */

:root {
    --primary-color: #FFD700;
    --secondary-color: #1A202C;
    --text-light: #f0f0f0;
    --text-dark: #1A202C;
    --text-accent: #b39700;
    --background-dark: #121212;
    --background-light: #f9f9f9;
    --border-color: #333;
}

.page-industry-news-2king88-tech-update {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--background-dark);
}

.page-industry-news-2king88-tech-update__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-industry-news-2king88-tech-update__hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-news-2king88-tech-update__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, rgba(26,32,44,0) 70%);
    opacity: 0.3;
    z-index: 0;
    animation: rotateBackground 20s linear infinite;
}

@keyframes rotateBackground {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-industry-news-2king88-tech-update__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-industry-news-2king88-tech-update__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.page-industry-news-2king88-tech-update__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-industry-news-2king88-tech-update__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-industry-news-2king88-tech-update__btn--primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-industry-news-2king88-tech-update__btn--primary:hover {
    background-color: #000;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-industry-news-2king88-tech-update__btn--secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-industry-news-2king88-tech-update__btn--secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-industry-news-2king88-tech-update__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-industry-news-2king88-tech-update__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-industry-news-2king88-tech-update__content-section {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-industry-news-2king88-tech-update__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-industry-news-2king88-tech-update__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-industry-news-2king88-tech-update__text-block {
    font-size: 1.1em;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: justify;
}

.page-industry-news-2king88-tech-update__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-industry-news-2king88-tech-update__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-industry-news-2king88-tech-update__feature-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news-2king88-tech-update__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-industry-news-2king88-tech-update__feature-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-industry-news-2king88-tech-update__feature-description {
    font-size: 1em;
    color: var(--text-light);
    line-height: 1.7;
}

.page-industry-news-2king88-tech-update__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.page-industry-news-2king88-tech-update__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-industry-news-2king88-tech-update__list li {
    background-color: var(--secondary-color);
    margin-bottom: 10px;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-industry-news-2king88-tech-update__list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.3em;
}

.page-industry-news-2king88-tech-update__faq-container {
    margin-top: 40px;
}

.page-industry-news-2king88-tech-update__faq-item {
    background-color: var(--secondary-color);
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news-2king88-tech-update__faq-question {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-industry-news-2king88-tech-update__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-industry-news-2king88-tech-update__faq-item.active .page-industry-news-2king88-tech-update__faq-question::after {
    transform: rotate(45deg);
}

.page-industry-news-2king88-tech-update__faq-answer {
    font-size: 1em;
    color: var(--text-light);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding-top: 0;
}

.page-industry-news-2king88-tech-update__faq-item.active .page-industry-news-2king88-tech-update__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

.page-industry-news-2king88-tech-update__call-to-action {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(90deg, var(--secondary-color), #2c3e50);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-industry-news-2king88-tech-update__call-to-action p {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: bold;
}

.page-industry-news-2king88-tech-update__link-in-text {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-industry-news-2king88-tech-update__link-in-text:hover {
    color: #ffd700;
    text-decoration: underline;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-industry-news-2king88-tech-update__hero-title {
        font-size: 2.5em;
    }

    .page-industry-news-2king88-tech-update__hero-subtitle {
        font-size: 1.1em;
    }

    .page-industry-news-2king88-tech-update__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-industry-news-2king88-tech-update__btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-industry-news-2king88-tech-update__section-title {
        font-size: 2em;
    }

    .page-industry-news-2king88-tech-update__features-grid {
        grid-template-columns: 1fr;
    }

    .page-industry-news-2king88-tech-update__faq-question {
        font-size: 1.2em;
    }

    .page-industry-news-2king88-tech-update__call-to-action p {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .page-industry-news-2king88-tech-update__hero-title {
        font-size: 2em;
    }

    .page-industry-news-2king88-tech-update__hero-subtitle {
        font-size: 1em;
    }

    .page-industry-news-2king88-tech-update__btn {
        width: 90%;
    }

    .page-industry-news-2king88-tech-update__section-title {
        font-size: 1.8em;
    }

    .page-industry-news-2king88-tech-update__feature-title {
        font-size: 1.4em;
    }
}