/* style/jun88-jackpot-winner-share.css */

/* Biến CSS */
:root {
    --page-jun88-jackpot-winner-share-primary-color: #003366;
    --page-jun88-jackpot-winner-share-secondary-color: #FFD700;
    --page-jun88-jackpot-winner-share-accent-color: #DC143C;
    --page-jun88-jackpot-winner-share-text-color-dark: #333333;
    --page-jun88-jackpot-winner-share-text-color-light: #ffffff;
    --page-jun88-jackpot-winner-share-bg-light: #f8f8f8;
    --page-jun88-jackpot-winner-share-bg-dark: #002244;
}

.page-jun88-jackpot-winner-share {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-jun88-jackpot-winner-share-text-color-dark);
    background-color: var(--page-jun88-jackpot-winner-share-bg-light);
}

.page-jun88-jackpot-winner-share__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-jun88-jackpot-winner-share__hero {
    background: linear-gradient(135deg, var(--page-jun88-jackpot-winner-share-primary-color), var(--page-jun88-jackpot-winner-share-bg-dark));
    color: var(--page-jun88-jackpot-winner-share-text-color-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-jun88-jackpot-winner-share__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[IMAGE:winner_hero_bg]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 1;
}

.page-jun88-jackpot-winner-share__hero .page-jun88-jackpot-winner-share__container {
    position: relative;
    z-index: 2;
}

.page-jun88-jackpot-winner-share__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-jun88-jackpot-winner-share-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-jun88-jackpot-winner-share__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-jun88-jackpot-winner-share-text-color-light);
}

/* Buttons */
.page-jun88-jackpot-winner-share__btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-jun88-jackpot-winner-share__btn--primary {
    background-color: var(--page-jun88-jackpot-winner-share-secondary-color);
    color: var(--page-jun88-jackpot-winner-share-primary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-jun88-jackpot-winner-share__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-jun88-jackpot-winner-share__btn--secondary {
    background-color: transparent;
    color: var(--page-jun88-jackpot-winner-share-secondary-color);
    border: 2px solid var(--page-jun88-jackpot-winner-share-secondary-color);
    margin-left: 20px;
}

.page-jun88-jackpot-winner-share__btn--secondary:hover {
    background-color: var(--page-jun88-jackpot-winner-share-secondary-color);
    color: var(--page-jun88-jackpot-winner-share-primary-color);
    transform: translateY(-3px);
}

/* General Section Styling */
.page-jun88-jackpot-winner-share__section {
    padding: 60px 0;
}

.page-jun88-jackpot-winner-share__section--stories {
    background-color: var(--page-jun88-jackpot-winner-share-bg-light);
}

.page-jun88-jackpot-winner-share__section--tips {
    background-color: #f0f4f8;
}

.page-jun88-jackpot-winner-share__section--why-jun88 {
    background-color: var(--page-jun88-jackpot-winner-share-primary-color);
    color: var(--page-jun88-jackpot-winner-share-text-color-light);
}

.page-jun88-jackpot-winner-share__cta-section {
    background: linear-gradient(45deg, var(--page-jun88-jackpot-winner-share-accent-color), #ff4d4d);
    color: var(--page-jun88-jackpot-winner-share-text-color-light);
    padding: 80px 0;
    text-align: center;
}

.page-jun88-jackpot-winner-share__section--conclusion {
    background-color: var(--page-jun88-jackpot-winner-share-bg-light);
}

.page-jun88-jackpot-winner-share__section-title {
    font-size: 2.8em;
    color: var(--page-jun88-jackpot-winner-share-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-jun88-jackpot-winner-share__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-jun88-jackpot-winner-share-secondary-color);
    border-radius: 2px;
}

.page-jun88-jackpot-winner-share__section--why-jun88 .page-jun88-jackpot-winner-share__section-title {
    color: var(--page-jun88-jackpot-winner-share-secondary-color);
}

.page-jun88-jackpot-winner-share__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

/* Winner Cards */
.page-jun88-jackpot-winner-share__winner-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-jun88-jackpot-winner-share__winner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-jun88-jackpot-winner-share__winner-card--reverse {
    flex-direction: row-reverse;
}

.page-jun88-jackpot-winner-share__winner-image {
    width: 40%;
    height: auto;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
}

.page-jun88-jackpot-winner-share__winner-card--reverse .page-jun88-jackpot-winner-share__winner-image {
    border-radius: 0 12px 12px 0;
}

.page-jun88-jackpot-winner-share__winner-content {
    width: 60%;
    padding: 40px;
}

.page-jun88-jackpot-winner-share__winner-name {
    font-size: 2em;
    color: var(--page-jun88-jackpot-winner-share-primary-color);
    margin-bottom: 15px;
}

.page-jun88-jackpot-winner-share__winner-quote {
    font-style: italic;
    color: var(--page-jun88-jackpot-winner-share-secondary-color);
    font-size: 1.2em;
    margin-bottom: 20px;
    border-left: 4px solid var(--page-jun88-jackpot-winner-share-secondary-color);
    padding-left: 15px;
}

/* Tips List */
.page-jun88-jackpot-winner-share__tips-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-jun88-jackpot-winner-share__tip-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-jun88-jackpot-winner-share__tip-item:hover {
    transform: translateY(-5px);
}

.page-jun88-jackpot-winner-share__tip-title {
    font-size: 1.5em;
    color: var(--page-jun88-jackpot-winner-share-primary-color);
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.page-jun88-jackpot-winner-share__tip-title::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--page-jun88-jackpot-winner-share-secondary-color);
    font-weight: bold;
}

/* Features Grid */
.page-jun88-jackpot-winner-share__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-jun88-jackpot-winner-share__feature-item {
    background-color: var(--page-jun88-jackpot-winner-share-bg-dark);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-jun88-jackpot-winner-share__feature-item:hover {
    transform: translateY(-5px);
}

.page-jun88-jackpot-winner-share__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--page-jun88-jackpot-winner-share-secondary-color));
}

.page-jun88-jackpot-winner-share__feature-title {
    font-size: 1.6em;
    color: var(--page-jun88-jackpot-winner-share-secondary-color);
    margin-bottom: 15px;
}

.page-jun88-jackpot-winner-share__section--why-jun88 .page-jun88-jackpot-winner-share__text {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.page-jun88-jackpot-winner-share__cta-title {
    font-size: 3em;
    color: var(--page-jun88-jackpot-winner-share-text-color-light);
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.page-jun88-jackpot-winner-share__cta-text {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-jun88-jackpot-winner-share__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Conclusion Section */
.page-jun88-jackpot-winner-share__section--conclusion .page-jun88-jackpot-winner-share__section-title {
    color: var(--page-jun88-jackpot-winner-share-primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-jun88-jackpot-winner-share__title {
        font-size: 2.8em;
    }

    .page-jun88-jackpot-winner-share__subtitle {
        font-size: 1.3em;
    }

    .page-jun88-jackpot-winner-share__section-title {
        font-size: 2.2em;
    }

    .page-jun88-jackpot-winner-share__winner-card {
        flex-direction: column;
    }

    .page-jun88-jackpot-winner-share__winner-card--reverse {
        flex-direction: column;
    }

    .page-jun88-jackpot-winner-share__winner-image,
    .page-jun88-jackpot-winner-share__winner-content {
        width: 100%;
    }

    .page-jun88-jackpot-winner-share__winner-image {
        border-radius: 12px 12px 0 0 !important;
    }

    .page-jun88-jackpot-winner-share__winner-content {
        padding: 30px;
    }

    .page-jun88-jackpot-winner-share__cta-title {
        font-size: 2.5em;
    }

    .page-jun88-jackpot-winner-share__cta-text {
        font-size: 1.1em;
    }

    .page-jun88-jackpot-winner-share__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .page-jun88-jackpot-winner-share__hero {
        padding: 80px 0;
    }

    .page-jun88-jackpot-winner-share__title {
        font-size: 2.2em;
    }

    .page-jun88-jackpot-winner-share__subtitle {
        font-size: 1.1em;
    }

    .page-jun88-jackpot-winner-share__section-title {
        font-size: 1.8em;
    }

    .page-jun88-jackpot-winner-share__section {
        padding: 40px 0;
    }

    .page-jun88-jackpot-winner-share__winner-content {
        padding: 20px;
    }

    .page-jun88-jackpot-winner-share__winner-name {
        font-size: 1.6em;
    }

    .page-jun88-jackpot-winner-share__winner-quote {
        font-size: 1.1em;
    }

    .page-jun88-jackpot-winner-share__tip-title {
        font-size: 1.3em;
    }

    .page-jun88-jackpot-winner-share__feature-title {
        font-size: 1.4em;
    }

    .page-jun88-jackpot-winner-share__cta-title {
        font-size: 2em;
    }

    .page-jun88-jackpot-winner-share__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-jun88-jackpot-winner-share__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-jun88-jackpot-winner-share__btn--secondary {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .page-jun88-jackpot-winner-share__title {
        font-size: 1.8em;
    }

    .page-jun88-jackpot-winner-share__subtitle {
        font-size: 1em;
    }

    .page-jun88-jackpot-winner-share__section-title {
        font-size: 1.6em;
    }

    .page-jun88-jackpot-winner-share__text {
        font-size: 0.95em;
    }

    .page-jun88-jackpot-winner-share__winner-name {
        font-size: 1.4em;
    }

    .page-jun88-jackpot-winner-share__winner-content {
        padding: 15px;
    }

    .page-jun88-jackpot-winner-share__cta-title {
        font-size: 1.8em;
    }
}