* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body > div > div.main-content > div.faq-section > div > div > div.faq-question > span:nth-child(1) {
    padding-right: 20px;
}

body {
    background-color: #111;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Inter", "Inter Fallback", sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.container {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    background-color: #111;
}

/* Hero Section */
.hero-section {
    width: 100%;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section img {
    width: auto;
    max-width: calc(100%);
    height: auto;
    border-radius: 16px;
    display: block;
}

/* Main Content */
.main-content {
    padding: 0 20px;
    text-align: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 15px 0;
    gap: 8px;
}

.logo-profile {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
}

.logo-text {
    font-size: 1rem;
    color: white;
    font-weight: 500;
}

/* Title Section */
.title-section {
    margin-bottom: 30px;
}

.title-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.title-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.title-section p {
    font-size: 0.95rem;
    color: white;
    line-height: 1.5;
    max-width: 400px;
    margin: 0 auto;
}

/* Join Button */
.join-btn {
    width: 100%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.join-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(-100%);
    animation: subtleShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes subtleShimmer {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.join-btn:hover {
    background-color: #1d4ed8;
}

/* Login Section */
.login-section {
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.login-section span {
    color: #ccc;
}

.login-link {
    color: #a855f7;
    text-decoration: none;
    font-weight: 500;
}

.login-link:hover {
    text-decoration: underline;
}

/* Members Section */
.members-section {
    margin-bottom: 40px;

}

.members-container {
    background-color: #2e2e2e;
    border-radius: 8px;
    padding: 20px;
    margin: 0 auto;
    max-width: 400px;
    border: none;
}

.members-count {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

/* Avatars */
.avatars {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    margin-bottom: 15px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    margin-left: -8px;
    transition: transform 0.2s ease;
    position: relative;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: scale(1.1);
    z-index: 10;
    position: relative;
}

/* Star Rating System */
.star-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star {
    font-size: 28px;
    color: #ffd700;
    text-shadow: 0 3px 6px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
    opacity: 0;
    transform: scale(0);
}

.star.animate {
    animation: starEntrance 0.6s ease-out forwards;
}

@keyframes starEntrance {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.star.animate:nth-child(1) { animation-delay: 0.1s; }
.star.animate:nth-child(2) { animation-delay: 0.2s; }
.star.animate:nth-child(3) { animation-delay: 0.3s; }
.star.animate:nth-child(4) { animation-delay: 0.4s; }
.star.animate:nth-child(5) { animation-delay: 0.5s; }

.star.filled {
    color: #ffd700;
}

.star.half {
    position: relative;
    display: inline-block;
    font-size: 28px;
    overflow: hidden;
}

.star-half-empty {
    color: #444;
    font-size: 28px;
}

.star-half-filled {
    color: #ffd700;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    overflow: hidden;
    font-size: 28px;
    text-shadow: 0 3px 6px rgba(255, 215, 0, 0.4);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

.rating-number {
    font-size: 1.0rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* Hover effect for star rating */
.star-rating:hover .star {
    transform: scale(1.1);
}

/* Ratings - Legacy */
.ratings {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    font-weight: 500;
}

/* Features Section */
.features-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.features-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    background-color: #191919;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: none;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.welcome-icon {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    animation: iconShine 4s ease-in-out infinite;
    position: relative;
}

.welcome-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shineMove 4s ease-in-out infinite;
    border-radius: 12px;
}

.rewards-icon {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: white;
    animation: iconShine 4s ease-in-out infinite;
    position: relative;
}

.rewards-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shineMove 4s ease-in-out infinite;
    border-radius: 12px;
}

@keyframes iconShine {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes shineMove {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.chat-icon {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: white;
    animation: iconShine 4s ease-in-out infinite;
    position: relative;
}

.chat-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shineMove 4s ease-in-out infinite;
    border-radius: 12px;
}

.announcements-icon {
    background: linear-gradient(135deg, #a855f7, #9333ea);
    color: white;
    animation: iconShine 4s ease-in-out infinite;
    position: relative;
}

.announcements-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shineMove 4s ease-in-out infinite;
    border-radius: 12px;
}

.tickets-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    animation: iconShine 4s ease-in-out infinite;
    position: relative;
}

.tickets-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shineMove 4s ease-in-out infinite;
    border-radius: 12px;
}

.feature-content {
    flex: 1;
}

.feature-name {
    font-size: 1.1rem;
    font-weight: 400;
    color: white;
    margin-bottom: 5px;
    text-align: left;
}

.feature-description {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

/* Target Audience Section */
.target-audience-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.target-audience-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.target-audience-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.target-audience-item {
    background-color: #191919;
    border-radius: 12px;
    padding: 25px;
    border: none;
    text-align: center;
}

.target-audience-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    text-align: center;
}

.target-audience-description {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

/* Pricing Section */
.pricing-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.pricing-container {
    background-color: #191919;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    border: none;
    margin: 0 auto;
}

.pricing-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.pricing-icon-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    border: none;
}

.pricing-main-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 25px;
}

.pricing-join-btn {
    width: 100%;
    max-width: 396px;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 25px;
    transition: background-color 0.2s ease;
    text-transform: uppercase;
}

.pricing-join-btn:hover {
    background-color: #1d4ed8;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    background-color: #111;
    border-radius: 8px;
    padding: 15px;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    background-color: transparent;
    padding: 12px 0;
}

.pricing-feature-item:first-child {
    border-bottom: 1px solid #333;
}

.pricing-checkmark {
    width: 20px;
    height: 20px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-feature-text {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.4;
}

/* FAQ Section */
.faq-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.faq-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 25px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #191919;
    border-radius: 12px;
    overflow: hidden;
    border: none;
    text-align: left;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-arrow {
    color: #888;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #191919;
}

.faq-answer p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px 20px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

/* Video Container Styles */
.video-container {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 35px;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(139, 92, 246, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.play-button:hover {
    background: rgba(139, 92, 246, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.6);
}

.play-button svg {
    margin-left: 4px;
}

/* Animation optimizations for mobile */
@media (max-width: 768px) {
    .feature-icon {
        width: 56px;
        height: 56px;
    }

    /* Make animations more visible on mobile */
    @keyframes iconPulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 0 0 rgba(139, 92, 246, 0.4);
        }
        50% {
            transform: scale(1.08);
            box-shadow: 0 0 25px rgba(139, 92, 246, 0.7);
        }
    }

    @keyframes iconFloat {
        0%, 100% {
            transform: translateY(0px);
            box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
        }
        50% {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(168, 85, 247, 0.5);
        }
    }

    @keyframes iconGlow {
        0% {
            transform: scale(1);
            filter: brightness(1);
            box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
        }
        100% {
            transform: scale(1.05);
            filter: brightness(1.15);
            box-shadow: 0 0 25px rgba(139, 92, 246, 0.9);
        }
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .feature-icon,
    .feature-icon::before,
    .feature-icon svg,
    .feature-item {
        animation: none !important;
    }

    .feature-item {
        opacity: 1;
        transform: none;
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .container {
        margin: 0 10px;
    }

    .hero-section {
        margin: 10px 0;
    }

    .hero-section img {
        max-width: calc(100%);
    }

    .main-content {
        padding: 0 15px;
    }

    .title-section h2 {
        font-size: 1.6rem;
    }

    .title-section h3 {
        font-size: 22px;
    }

    .features-title {
        font-size: 1.3rem;
    }

    .feature-item {
        padding: 15px;
        gap: 12px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

    .feature-name {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }

    .target-audience-title {
        font-size: 1.3rem;
    }

    .target-audience-item {
        padding: 20px;
    }

    .target-audience-name {
        font-size: 1.1rem;
    }

    .target-audience-description {
        font-size: 0.85rem;
    }

    .pricing-container {
        padding: 25px 20px;
    }

    .pricing-features {
        padding: 12px;
    }

    .pricing-title {
        font-size: 1.3rem;
    }

    .pricing-main-title {
        font-size: 1.2rem;
    }

    .pricing-feature-text {
        font-size: 0.85rem;
    }

    .faq-title {
        font-size: 1.3rem;
    }

    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 10px 15px 15px 15px;
    }

    /* Video responsive styles */
    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button svg {
        width: 24px;
        height: 24px;
    }
}
