/* ================================================================
   COMMUNITY PAGE STYLES
   Uses unified theme variables from theme-variables.css
   ================================================================ */

/* Page Wrapper */
.community-page-wrapper {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Text Gradient Utility */
.community-page-wrapper .text-gradient {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Floating Decorative Blobs */
.community-page-wrapper .floating-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.community-page-wrapper .blob-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-pink-15);
    top: -10%;
    right: -10%;
    animation: communityBlobFloat1 20s ease-in-out infinite;
}

.community-page-wrapper .blob-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-orange-10);
    bottom: 30%;
    left: -5%;
    animation: communityBlobFloat2 18s ease-in-out infinite;
}

.community-page-wrapper .blob-3 {
    width: 350px;
    height: 350px;
    background: var(--accent-purple-10);
    bottom: -5%;
    right: 20%;
    animation: communityBlobFloat3 22s ease-in-out infinite;
}

@keyframes communityBlobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 30px) scale(1.1); }
}

@keyframes communityBlobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
}

@keyframes communityBlobFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -40px) scale(0.95); }
}

/* Fade-in Animation */
.community-page-wrapper .fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.community-page-wrapper .fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Labels and Headings */
.community-page-wrapper .section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-orange);
    background: var(--accent-orange-10);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.community-page-wrapper .section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.community-page-wrapper .section-subheading {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.community-page-wrapper .section-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ================================
   HERO SECTION
   ================================ */
.community-hero {
    padding: 6rem 0 4rem;
    position: relative;
    z-index: 1;
}

.community-hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.community-hero-text {
    flex: 1;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: var(--bg-card);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--border-light);
}

.hero-meta .meta-item i {
    color: var(--accent-orange);
}

.community-hero-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.community-hero-illustration svg,
.community-hero-illustration img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.community-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.community-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: left;
}

.hero-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.hero-stat .stat-plus {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-orange);
}

.hero-stat .stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Features Row */
.hero-features-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.hero-feature:hover {
    border-color: var(--accent-orange-20);
    box-shadow: var(--shadow-md);
}

.hero-feature .feature-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-orange-10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--accent-orange);
}

.hero-feature span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* CSS-Based Community Illustration */
.community-visual {
    position: relative;
    width: 350px;
    height: 350px;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.visual-circle.main {
    width: 120px;
    height: 120px;
    background: var(--gradient-warm);
    color: white;
    font-size: 2.5rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.35);
    z-index: 5;
}

.visual-circle.orbit {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    color: var(--accent-orange);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.visual-circle.orbit:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-lg);
}

.visual-circle.orbit-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation: orbitFloat1 4s ease-in-out infinite;
}

.visual-circle.orbit-2 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    animation: orbitFloat2 5s ease-in-out infinite;
    color: var(--accent-pink);
}

.visual-circle.orbit-3 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation: orbitFloat3 4.5s ease-in-out infinite;
    color: var(--accent-green);
}

.visual-circle.orbit-4 {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    animation: orbitFloat4 5.5s ease-in-out infinite;
    color: var(--accent-purple);
}

.visual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed var(--border-light);
    border-radius: 50%;
    pointer-events: none;
}

.visual-ring.ring-1 {
    width: 220px;
    height: 220px;
    animation: ringPulse 8s ease-in-out infinite;
}

.visual-ring.ring-2 {
    width: 320px;
    height: 320px;
    animation: ringPulse 10s ease-in-out infinite reverse;
}

@keyframes orbitFloat1 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes orbitFloat2 {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(10px); }
}

@keyframes orbitFloat3 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes orbitFloat4 {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-10px); }
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.05); }
}

/* ================================
   STORY SECTION
   ================================ */
.story-section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-text strong {
    color: var(--text-primary);
}

/* Community Values Cards */
.community-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-orange-20);
}

.value-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.value-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* ================================
   BENEFITS SECTION
   ================================ */
.benefits-section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-pink-20);
}

.benefit-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-orange-10);
    line-height: 1;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-pink-10);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-pink);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ================================
   SOCIAL PLATFORMS SECTION
   ================================ */
.social-section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.social-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.social-platform {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-platform::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-platform.instagram::before {
    background: linear-gradient(45deg, rgba(131, 58, 180, 0.05), rgba(253, 29, 29, 0.05));
}

.social-platform.facebook::before {
    background: rgba(24, 119, 242, 0.05);
}

.social-platform.pinterest::before {
    background: rgba(230, 0, 35, 0.05);
}

.social-platform.youtube::before {
    background: rgba(255, 0, 0, 0.05);
}

.social-platform:hover::before {
    opacity: 1;
}

.social-platform:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.social-platform.instagram:hover {
    border-color: #E4405F;
}

.social-platform.facebook:hover {
    border-color: #1877F2;
}

.social-platform.pinterest:hover {
    border-color: #E60023;
}

.social-platform.youtube:hover {
    border-color: #FF0000;
}

.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.social-platform.instagram .platform-icon {
    background: linear-gradient(45deg, rgba(131, 58, 180, 0.15), rgba(253, 29, 29, 0.15));
    color: #E4405F;
}

.social-platform.facebook .platform-icon {
    background: rgba(24, 119, 242, 0.15);
    color: #1877F2;
}

.social-platform.pinterest .platform-icon {
    background: rgba(230, 0, 35, 0.15);
    color: #E60023;
}

.social-platform.youtube .platform-icon {
    background: rgba(255, 0, 0, 0.15);
    color: #FF0000;
}

.platform-info {
    flex: 1;
}

.platform-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.platform-stat {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 0.25rem;
}

.platform-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.platform-action {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.social-platform:hover .platform-action {
    color: var(--accent-orange);
}

.platform-action i {
    transition: transform 0.3s ease;
}

.social-platform:hover .platform-action i {
    transform: translateX(5px);
}

/* ================================
   CHALLENGES TIMELINE
   ================================ */
.challenges-section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.challenges-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.challenge-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.challenge-card.past {
    opacity: 0.7;
}

.challenge-card.past:hover {
    opacity: 1;
}

.challenge-card.active {
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-glow);
}

.challenge-card.upcoming {
    border-style: dashed;
}

.challenge-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.challenge-card.past .challenge-status {
    background: var(--bg-secondary);
    color: var(--text-muted);
}

.challenge-card.active .challenge-status {
    background: var(--accent-green-10);
    color: var(--accent-green);
}

.challenge-card.upcoming .challenge-status {
    background: var(--accent-purple-10);
    color: var(--accent-purple);
}

.challenge-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.challenge-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.challenge-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.challenge-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.challenge-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.challenge-stats i {
    color: var(--accent-orange);
    width: 16px;
}

.challenge-join {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.25rem;
    background: var(--gradient-warm);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.challenge-join:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
    color: white;
}

/* ================================
   HASHTAG SECTION (ENHANCED)
   ================================ */
.hashtag-section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

/* ================================
   WHAT'S COMING SECTION
   ================================ */
.coming-section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.coming-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.coming-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.coming-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-orange-20);
}

.coming-status {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    background: var(--accent-purple-10);
    color: var(--accent-purple);
}

.coming-card:first-child .coming-status {
    background: var(--accent-green-10);
    color: var(--accent-green);
}

.coming-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-orange-10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent-orange);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.coming-card:hover .coming-icon {
    transform: scale(1.1);
    background: var(--accent-orange);
    color: white;
}

.coming-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.coming-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.hashtag-card {
    background: var(--gradient-warm);
    border-radius: 24px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.hashtag-card::before {
    content: '#';
    position: absolute;
    top: -30px;
    right: -20px;
    font-size: 18rem;
    opacity: 0.1;
    font-weight: 900;
    transform: rotate(15deg);
    color: white;
}

.hashtag-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hashtag-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.hashtag-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.hashtag-content > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hashtag-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hashtag-pill {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.hashtag-pill:hover {
    background: white;
    color: var(--accent-orange);
    transform: scale(1.05);
}

.feature-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature-stat {
    text-align: center;
}

.fs-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.fs-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================
   GUIDELINES SECTION (ENHANCED)
   ================================ */
.guidelines-section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.guideline-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.guideline-card:hover {
    box-shadow: var(--shadow-md);
}

.guideline-card.do {
    border-left: 4px solid var(--accent-green);
}

.guideline-card.dont {
    border-left: 4px solid var(--accent-red);
}

.guideline-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guideline-card.do .guideline-icon {
    color: var(--accent-green);
}

.guideline-card.dont .guideline-icon {
    color: var(--accent-red);
}

.guideline-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.guideline-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guideline-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.guideline-card.do li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.guideline-card.dont li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}

/* ================================
   STATS SECTION
   ================================ */
.stats-section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 3rem;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: var(--border-light);
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-bottom: 0.75rem;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.cta-content {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-pink-10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-pink);
    margin: 0 auto 1.5rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content > p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-warm);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.45);
    color: white;
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--border-medium);
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1199px) {
    .challenges-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coming-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .community-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .community-hero-text {
        order: 2;
    }
    
    .community-hero-illustration {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .community-hero-illustration svg,
    .community-hero-illustration img {
        max-height: 300px;
    }
    
    .community-visual {
        width: 280px;
        height: 280px;
    }
    
    .visual-circle.main {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    
    .visual-circle.orbit {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .visual-ring.ring-1 {
        width: 180px;
        height: 180px;
    }
    
    .visual-ring.ring-2 {
        width: 260px;
        height: 260px;
    }
    
    .hero-meta {
        justify-content: center;
    }
    
    .hero-features-row {
        justify-content: center;
    }
    
    .hero-stats-row {
        justify-content: center;
    }
    
    .community-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-platforms {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item:nth-child(2)::after {
        display: none;
    }
    
    .guidelines-section .row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .guidelines-section .row > div {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .community-hero {
        padding: 4rem 0 3rem;
    }
    
    .community-title {
        font-size: 2.5rem;
    }
    
    .community-visual {
        width: 220px;
        height: 220px;
    }
    
    .visual-circle.main {
        width: 80px;
        height: 80px;
        font-size: 1.75rem;
    }
    
    .visual-circle.orbit {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .visual-ring.ring-1 {
        width: 140px;
        height: 140px;
    }
    
    .visual-ring.ring-2 {
        width: 200px;
        height: 200px;
    }
    
    .hero-stats-row {
        gap: 1.5rem;
    }
    
    .hero-stat .stat-number {
        font-size: 2rem;
    }
    
    .story-title,
    .section-heading {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .challenges-timeline {
        grid-template-columns: 1fr;
    }
    
    .coming-grid {
        grid-template-columns: 1fr;
    }
    
    .hashtag-card {
        padding: 2.5rem 1.5rem;
    }
    
    .hashtag-card::before {
        font-size: 10rem;
    }
    
    .hashtag-content h2 {
        font-size: 1.75rem;
    }
    
    .feature-stats {
        gap: 2rem;
    }
    
    .fs-number {
        font-size: 1.5rem;
    }
    
    .guidelines-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .stat-item::after {
        display: none !important;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .cta-content {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .community-page-wrapper .blob-1,
    .community-page-wrapper .blob-2,
    .community-page-wrapper .blob-3 {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-features-row {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-stats-row {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-stat {
        text-align: center;
    }
    
    .value-card {
        flex-direction: column;
        text-align: center;
    }
    
    .social-platform {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .platform-action {
        margin-top: 0.5rem;
    }
    
    .hashtag-pills {
        flex-direction: column;
        align-items: center;
    }
    
    .community-visual {
        width: 180px;
        height: 180px;
    }
    
    .visual-circle.main {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
    
    .visual-circle.orbit {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .visual-ring.ring-1 {
        width: 110px;
        height: 110px;
    }
    
    .visual-ring.ring-2 {
        width: 160px;
        height: 160px;
    }
}
