/* style/lottery-ssc.css */
.page-lottery-ssc {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light text on dark background */
    background-color: #1A202C;
    line-height: 1.6;
}

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

.page-lottery-ssc__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Accent color for titles */
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-lottery-ssc__section-intro {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #b0b8c7;
}

.page-lottery-ssc__subtitle {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-lottery-ssc__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
    color: #e5dfd3;
    text-align: center;
    gap: 40px;
}

.page-lottery-ssc__hero-content {
    max-width: 800px;
}

.page-lottery-ssc__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-lottery-ssc__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #b0b8c7;
}

.page-lottery-ssc__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-lottery-ssc__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-lottery-ssc__btn--primary {
    background-color: #FFD700;
    color: #1A202C;
    border: 2px solid #FFD700;
}

.page-lottery-ssc__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-lottery-ssc__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-lottery-ssc__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-lottery-ssc__hero-image-wrapper {
    width: 100%;
    max-width: 700px;
    margin-top: 40px;
}

.page-lottery-ssc__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-lottery-ssc__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    flex-wrap: wrap;
    justify-content: center;
}

.page-lottery-ssc__content-grid > div {
    flex: 1;
    min-width: 300px;
}

.page-lottery-ssc__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-lottery-ssc__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-lottery-ssc__text-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-lottery-ssc__text-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #e5dfd3;
}

.page-lottery-ssc__text-content ul li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-lottery-ssc__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-lottery-ssc__step-card {
    background-color: #2a3340;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-ssc__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-lottery-ssc__step-icon {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
    background-color: #1A202C;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.page-lottery-ssc__step-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-lottery-ssc__link-inline {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-lottery-ssc__link-inline:hover {
    text-decoration: underline;
}

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

.page-lottery-ssc__type-card {
    background-color: #2a3340;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-ssc__type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-lottery-ssc__type-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-lottery-ssc__type-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-lottery-ssc__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-lottery-ssc__promo-card {
    background-color: #2a3340;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-ssc__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-lottery-ssc__promo-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-lottery-ssc__promo-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-lottery-ssc__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 15px;
}

.page-lottery-ssc__app-download .page-lottery-ssc__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    flex-wrap: wrap-reverse;
    justify-content: center;
}

.page-lottery-ssc__app-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-lottery-ssc__btn--download {
    background-color: #FFD700;
    color: #1A202C;
    border: 2px solid #FFD700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-lottery-ssc__btn--download:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-lottery-ssc__btn--download i {
    font-size: 1.2em;
}

/* Placeholder for icons, in a real scenario, these would be proper icon fonts or SVGs */
.icon-apple::before { content: ''; }
.icon-android::before { content: '🤖'; }

.page-lottery-ssc__security .page-lottery-ssc__content-grid {
    flex-wrap: wrap;
}

.page-lottery-ssc__faq-items {
    margin-top: 40px;
    text-align: left;
}

.page-lottery-ssc__faq-item {
    background-color: #2a3340;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-lottery-ssc__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-lottery-ssc__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-lottery-ssc__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-lottery-ssc__faq-answer {
    display: none;
    margin-top: 10px;
    color: #b0b8c7;
}

.page-lottery-ssc__faq-answer.active {
    display: block;
}

.page-lottery-ssc__cta-bottom {
    margin-top: 50px;
}

.page-lottery-ssc__final-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-lottery-ssc__hero-title {
        font-size: 2.5em;
    }
    .page-lottery-ssc__hero-description {
        font-size: 1.1em;
    }
    .page-lottery-ssc__section-title {
        font-size: 2em;
    }
    .page-lottery-ssc__content-grid,
    .page-lottery-ssc__app-download .page-lottery-ssc__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-lottery-ssc__text-content ul {
        text-align: left;
    }
    .page-lottery-ssc__text-content ul li {
        padding-left: 0;
    }
    .page-lottery-ssc__text-content ul li::before {
        left: -25px; /* Adjust if list-style is used or just for visual */
    }
    .page-lottery-ssc__hero-actions,
    .page-lottery-ssc__final-actions,
    .page-lottery-ssc__app-buttons {
        flex-direction: column;
    }
    .page-lottery-ssc__btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-lottery-ssc__hero-title {
        font-size: 2em;
    }
    .page-lottery-ssc__section-title {
        font-size: 1.8em;
    }
    .page-lottery-ssc__step-card,
    .page-lottery-ssc__type-card,
    .page-lottery-ssc__promo-card {
        padding: 20px;
    }
}