/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0a0f29;
    color: #ffffff;
    line-height: 1.6;
}

/* Hero Section */
.faq-hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #0a0f29 0%, #1a2342 100%);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(112, 0, 255, 0.1) 0%, transparent 50%);
    animation: gradient-shift 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ffea, #7000ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Search Container */
.search-container {
    position: relative;
    max-width: 600px;
    margin: 2rem auto;
}

.search-container input {
    width: 100%;
    padding: 1.2rem 3rem 1.2rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-container input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 255, 234, 0.2);
}

.search-container i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #00ffea;
}

/* Quick Filters */
.quick-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(45deg, #00ffea, #7000ff);
    transform: translateY(-2px);
}

/* Category Grid */
.faq-categories {
    padding: 4rem 2rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(0, 255, 234, 0.1), rgba(112, 0, 255, 0.1));
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(0, 255, 234, 0.2), rgba(112, 0, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: #00ffea;
}

.question-count {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Accordion Styles */
.faq-accordion {
    padding: 4rem 2rem;
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-group {
    margin-bottom: 3rem;
}

.faq-group h2 {
    margin-bottom: 2rem;
    color: #00ffea;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.1);
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 1.5rem;
    max-height: 1000px;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin: 1rem 0;
}

.investment-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.investment-table th,
.investment-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.investment-table th {
    background: rgba(255, 255, 255, 0.1);
    color: #00ffea;
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.feature-item i {
    font-size: 2rem;
    color: #00ffea;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0f29 0%, #1a2342 100%);
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(0, 255, 234, 0.1), rgba(112, 0, 255, 0.1));
}

.contact-card i {
    font-size: 2rem;
    color: #00ffea;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes gradient-shift {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .quick-filters {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }

    .accordion-header {
        padding: 1rem;
    }
}







/* Statistics & Testimonials Section */
.stats-testimonials {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0f29 0%, #1a2342 100%);
    position: relative;
    overflow: hidden;
}

.stats-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 255, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(112, 0, 255, 0.1) 0%, transparent 50%);
    animation: gradient-shift 8s ease-in-out infinite;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Platform Statistics */
.platform-stats {
    margin-bottom: 4rem;
}

.platform-stats h2,
.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00ffea, #7000ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(0, 255, 234, 0.1), rgba(112, 0, 255, 0.1));
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, rgba(0, 255, 234, 0.2), rgba(112, 0, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stat-icon i {
    font-size: 1.8rem;
    color: #00ffea;
}

.stat-counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffea;
    margin-bottom: 1rem;
}

.stat-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-top: 1rem;
    overflow: hidden;
}

.stat-progress .progress-bar {
    height: 100%;
    background: linear-gradient(45deg, #00ffea, #7000ff);
    border-radius: 3px;
    transition: width 1.5s ease-in-out;
}

/* Testimonials */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    min-width: calc(50% - 1rem);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(0, 255, 234, 0.1), rgba(112, 0, 255, 0.1));
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.profile-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(0, 255, 234, 0.2), rgba(112, 0, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image i {
    font-size: 2rem;
    color: #00ffea;
}

.user-info h4 {
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.user-info span {
    color: #b8b8b8;
    font-size: 0.9rem;
}

.rating {
    margin-left: auto;
}

.rating i {
    color: #00ffea;
    margin-left: 0.2rem;
}

.testimonial-text {
    color: #ffffff;
    font-style: italic;
    line-height: 1.6;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-btn,
.next-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover,
.next-btn:hover {
    background: linear-gradient(45deg, #00ffea, #7000ff);
    transform: scale(1.1);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .testimonial-card {
        min-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .stats-testimonials {
        padding: 4rem 1rem;
    }

    .platform-stats h2,
    .testimonials h2 {
        font-size: 2rem;
    }

    .stat-counter {
        font-size: 2rem;
    }
}



/* another sections */
/* Knowledge Hub Styles */
.knowledge-hub {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0f29 0%, #1a2342 100%);
    position: relative;
    overflow: hidden;
}

.knowledge-hub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(112, 0, 255, 0.1) 0%, transparent 50%);
    animation: gradient-shift 8s ease-in-out infinite;
}

.hub-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hub-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hub-header h2 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #00ffea, #7000ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

/* Knowledge Map */
.knowledge-map {
    position: relative;
    padding: 4rem 0;
}

.map-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.center-node {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, rgba(0, 255, 234, 0.2), rgba(112, 0, 255, 0.2));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.center-node i {
    font-size: 2.5rem;
    color: #00ffea;
}

.center-node span {
    font-size: 0.9rem;
    color: #ffffff;
    text-align: center;
}

.node-connections {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.connection-line {
    position: absolute;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 255, 234, 0.5), rgba(112, 0, 255, 0.5));
    transform-origin: left center;
}

.connection-line:nth-child(1) { transform: rotate(45deg); }
.connection-line:nth-child(2) { transform: rotate(135deg); }
.connection-line:nth-child(3) { transform: rotate(225deg); }
.connection-line:nth-child(4) { transform: rotate(315deg); }

.map-nodes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    padding: 2rem;
}

.knowledge-node {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.knowledge-node:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(0, 255, 234, 0.1), rgba(112, 0, 255, 0.1));
}

.node-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(0, 255, 234, 0.2), rgba(112, 0, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.node-icon i {
    font-size: 1.5rem;
    color: #00ffea;
}

.node-content {
    margin-top: 1.5rem;
}

/* Path List */
.path-list {
    list-style: none;
}

.path-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.path-list li:last-child {
    border-bottom: none;
}

/* Resource Grid */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1rem;
}

.resource-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-align: center;
    color: #00ffea;
    font-size: 0.9rem;
}

/* Community Stats */
.community-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat {
    text-align: center;
}

.stat .number {
    font-size: 1.8rem;
    color: #00ffea;
    display: block;
    margin-bottom: 0.5rem;
}

.stat .label {
    color: #b8b8b8;
    font-size: 0.9rem;
}

/* Analysis Preview */
.analysis-preview {
    position: relative;
}

.chart-placeholder {
    height: 100px;
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, #00ffea, #7000ff);
    width: 100%;
    animation: chartLine 3s infinite;
}

.chart-line:nth-child(1) {
    top: 30%;
    animation-delay: -1.5s;
}

.chart-line:nth-child(2) {
    top: 60%;
    animation-delay: -0.5s;
}

.update-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 255, 234, 0.2);
    color: #00ffea;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.update-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #00ffea;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Interactive Features */
.interactive-features {
    margin-top: 4rem;
}

.feature-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.feature-tab {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-tab.active {
    background: linear-gradient(45deg, #00ffea, #7000ff);
}

.feature-tab i {
    font-size: 1.2rem;
}

.feature-content {
    display: none;
}

.feature-content.active {
    display: block;
}

/* Guide Cards */
.guide-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(0, 255, 234, 0.1), rgba(112, 0, 255, 0.1));
}

.card-progress {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.circular-progress {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00ffea;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Animations */
@keyframes chartLine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .map-nodes {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .center-node {
        width: 100px;
        height: 100px;
    }

    .connection-line {
        width: 100px;
    }
}

@media screen and (max-width: 768px) {
    .feature-tabs {
        flex-direction: column;
    }

    .feature-tab {
        width: 100%;
        justify-content: center;
    }

    .hub-header h2 {
        font-size: 2rem;
    }
}





/* ===ANOTHER SECTION==== */
/* Add these styles to your existing CSS file */

/* Knowledge Hub Section */
.kh_x8j2m9_section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
}

.kh_p4n7v5_container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.kh_t6k9d2_header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.kh_w3b8m5_progress {
    position: relative;
    width: 120px;
    height: 120px;
}

.kh_l9f2k7_circular-progress {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.kh_m5c8p3_progress-path {
    stroke-linecap: round;
    transition: stroke-dasharray 1s ease;
}

.kh_r2x6v9_progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.kh_n8q4w7_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Interactive Cards */
.kh_b5j7h2_card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease;
}

.kh_b5j7h2_card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(0, 255, 234, 0.1), rgba(112, 0, 255, 0.1));
}

.kh_f9m3k6_card-inner {
    padding: 2rem;
}

.kh_s4x8v2_icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(0, 255, 234, 0.2), rgba(112, 0, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.kh_s4x8v2_icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.kh_h7p2n4_stats {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.kh_t5g9b3_stat,
.kh_v8k4m1_stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.kh_c6y9x4_progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 1rem;
}

.kh_l2w7q8_progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: width 1s ease;
}

/* Timeline */
.kh_z7x4c9_timeline {
    position: relative;
    padding: 2rem;
}

.kh_z7x4c9_timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.kh_k5m8b2_timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.kh_d3f6h9_marker {
    position: absolute;
    left: -5px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
}

.kh_g7n2p5_content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.kh_g7n2p5_content:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, rgba(0, 255, 234, 0.1), rgba(112, 0, 255, 0.1));
}

.kh_w4j8v5_badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.kh_q9r5m2_badge,
.kh_f3h7k9_badge {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

/* Chart */
.kh_m3p7v4_chart-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
}

.kh_b8n5x2_chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.kh_t4k7h9_controls {
    display: flex;
    gap: 0.5rem;
}

.kh_y6m2b9_control-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.kh_y6m2b9_control-btn:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.kh_r7j4n2_chart {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.kh_h5k9m3_chart-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 100%;
    animation: chartAnimation 3s infinite;
}

.kh_h5k9m3_chart-line:nth-child(1) {
    top: 30%;
    animation-delay: -1s;
}

.kh_h5k9m3_chart-line:nth-child(2) {
    top: 50%;
    animation-delay: -2s;
}

.kh_h5k9m3_chart-line:nth-child(3) {
    top: 70%;
    animation-delay: -3s;
}

@keyframes chartAnimation {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .kh_x8j2m9_section {
        padding: 4rem 1rem;
    }

    .kh_n8q4w7_grid {
        grid-template-columns: 1fr;
    }

    .kh_t6k9d2_header {
        margin-bottom: 2rem;
    }
}


/* another section */
/* Community & Gamification Styles */
.cmty_x9k4v7_section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
}

.cmty_h8m2p5_container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cmty_t5n9b3_header {
    text-align: center;
    margin-bottom: 4rem;
}

.cmty_t5n9b3_header h2 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

/* Achievement Card */
.cmty_w4j7r2_achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.cmty_q6k9n4_achievement-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cmty_b3x8m5_badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.cmty_b3x8m5_badge i {
    font-size: 2rem;
    color: var(--text-light);
}

.cmty_l7p4v9_glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(20px);
    opacity: 0.5;
    animation: glowPulse 2s infinite;
}

.cmty_f2k8h5_progress {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    height: 8px;
    margin: 1.5rem 0;
    position: relative;
}

.cmty_y9n4m7_bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: inherit;
    transition: width 1s ease;
}

.cmty_z5x2c8_stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.cmty_k7m4b9_stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

/* Leaderboard */
.cmty_v6h9m2_leaderboard {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.cmty_r4k7b9_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.cmty_s8n5x4_filters {
    display: flex;
    gap: 1rem;
}

.cmty_p2m7v4_filter {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cmty_p2m7v4_filter.active {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.cmty_m5b8h2_item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.cmty_m5b8h2_item:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, rgba(0, 255, 234, 0.1), rgba(112, 0, 255, 0.1));
}

.cmty_j4p7v2_rank {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    min-width: 40px;
    text-align: center;
}

.cmty_g8k3n6_user {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cmty_x4m7b9_avatar {
    position: relative;
    width: 50px;
    height: 50px;
}

.cmty_q2n7v4_status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #00ff00;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
}

/* Activity Feed */
.cmty_b9n4m7_feed {
    margin-top: 4rem;
}

.cmty_k5h8v2_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.cmty_x7j4n2_controls {
    display: flex;
    gap: 1rem;
}

.cmty_t6m9b4_control {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cmty_t6m9b4_control:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.cmty_m2n7b4_activity {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 1rem;
}

.cmty_f7k9n4_icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, rgba(0, 255, 234, 0.2), rgba(112, 0, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmty_f7k9n4_icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.cmty_l5k8m2_content {
    flex: 1;
}

.cmty_r9n4k7_time {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cmty_y5m2n7_btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cmty_y5m2n7_btn:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

/* Challenge Section */
.cmty_t4k7m9_challenges {
    margin-top: 4rem;
}

.cmty_w8n5b2_challenge-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.cmty_q7k4v9_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.cmty_x5m8n2_timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
}

.cmty_k8m4v7_progress {
    margin: 2rem 0;
}

.cmty_p5n2b8_bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.cmty_h7k4m9_fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: inherit;
    transition: width 1s ease;
}

.cmty_f9k4n7_reward {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--primary-color);
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .cmty_x9k4v7_section {
        padding: 4rem 1rem;
    }

    .cmty_t5n9b3_header h2 {
        font-size: 2rem;
    }

    .cmty_w4j7r2_achievements {
        grid-template-columns: 1fr;
    }

    .cmty_r4k7b9_header {
        flex-direction: column;
        gap: 1rem;
    }
}