:root {
    --primary-color: #9d4edd;
    --secondary-color: #ff00ff;
    --bg-dark: #1a1033;
    --bg-lighter: #2d1b4e;
    --text-light: rgba(255, 255, 255, 0.9);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --bg-dots-size: 2px;
    --bg-grid-size: 30px;
    --glow-color: rgba(157, 78, 221, 0.15);
    --card-gradient: linear-gradient(145deg, rgba(157, 78, 221, 0.1) 0%, rgba(255, 0, 255, 0.05) 100%);
    --hover-gradient: linear-gradient(145deg, rgba(157, 78, 221, 0.15) 0%, rgba(255, 0, 255, 0.1) 100%);
    --card-border: 1px solid rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 20px rgba(157, 78, 221, 0.5);
    --card-blur: blur(10px);
    --gradient-animation: 8s linear infinite;
}

body {
    background: linear-gradient(145deg, var(--bg-dark) 0%, var(--bg-lighter) 100%);
    background-attachment: fixed;
    color: white;
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        radial-gradient(var(--bg-dots-size) var(--bg-dots-size) at 50% 50%, 
        rgba(157, 78, 221, 0.15) 98%, 
        transparent 100%);
    background-size: var(--bg-grid-size) var(--bg-grid-size);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Hero Section */
.vision-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem;
    overflow: hidden;
    background: 
        radial-gradient(circle at 0% 0%, rgba(157, 78, 221, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 0, 255, 0.15) 0%, transparent 50%);
}

.vision-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/grid.svg') center/cover;
    opacity: 0.1;
    pointer-events: none;
}

.vision-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(157, 78, 221, 0.1) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(157, 78, 221, 0.1) 50%, transparent 52%);
    background-size: var(--bg-grid-size) var(--bg-grid-size);
    opacity: 0.4;
    pointer-events: none;
}

.gradient-text {
    display: block;
    background: linear-gradient(45deg, #ff00ff, #9d4edd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 5rem;
    text-shadow: 0 0 30px rgba(157, 78, 221, 0.5);
    animation: gradientFlow var(--gradient-animation);
    background-size: 200% auto;
    background-image: linear-gradient(
        45deg, 
        #ff00ff 0%, 
        #9d4edd 50%, 
        #ff00ff 100%
    );
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Team Section */
.team-section {
    padding: 8rem 0;
    background: 
        linear-gradient(to bottom, 
            rgba(26, 16, 37, 0.7), 
            rgba(45, 27, 78, 0.7)
        ),
        radial-gradient(
            circle at center,
            var(--glow-color) 0%,
            transparent 70%
        );
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, transparent 0%, var(--glow-color) 50%, transparent 100%);
    opacity: 0.1;
    transform: skewY(-5deg);
    pointer-events: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    background: var(--card-gradient);
    border: var(--card-border);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-member:hover {
    transform: translateY(-10px) scale(1.02);
    background: var(--hover-gradient);
    box-shadow: 
        0 20px 40px rgba(157, 78, 221, 0.2),
        0 0 0 1px rgba(157, 78, 221, 0.3);
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color)) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    margin-bottom: 2rem;
}

.member-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
    position: relative;
}

.member-photo::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: inherit;
    opacity: 0.3;
    filter: blur(15px);
    transition: opacity 0.3s ease;
}

.team-member:hover .member-photo::before {
    opacity: 0.5;
}

.role-icon {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(157, 78, 221, 0.5));
}

/* Vision Cards */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    perspective: 1000px;
}

.vision-card {
    background: linear-gradient(
        145deg,
        rgba(157, 78, 221, 0.1) 0%,
        rgba(255, 0, 255, 0.05) 100%
    );
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(157, 78, 221, 0.15) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s;
}

.vision-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 100% 100%,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%
    );
    opacity: 0.5;
    pointer-events: none;
}

.vision-card:hover::before {
    opacity: 1;
}

.vision-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(157, 78, 221, 0.2);
}

.vision-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(157, 78, 221, 0.5));
}

/* Philosophy Section */
.philosophy-section {
    padding: 8rem 0;
    background: 
        linear-gradient(to bottom,
            transparent,
            rgba(157, 78, 221, 0.1)
        ),
        radial-gradient(
            circle at 30% 50%,
            var(--glow-color) 0%,
            transparent 60%
        );
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 20px,
            rgba(157, 78, 221, 0.03) 20px,
            rgba(157, 78, 221, 0.03) 40px
        );
    pointer-events: none;
}

.philosophy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.point {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.point:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(157, 78, 221, 0.2);
    border-color: rgba(157, 78, 221, 0.3);
}

/* CTA Section */
.join-section {
    padding: 6rem 0;
    text-align: center;
        background: 
        radial-gradient(
            circle at center,
            rgba(157, 78, 221, 0.2) 0%,
            transparent 70%
        ),
        linear-gradient(
            45deg,
            transparent 0%,
            rgba(255, 0, 255, 0.1) 100%
        );
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-btn {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: white;
}

.secondary-btn {
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.3);
    color: white;
}


/* Modal Styles */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(26, 16, 37, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: linear-gradient(145deg, 
        rgba(157, 78, 221, 0.1) 0%,
        rgba(255, 0, 255, 0.05) 100%
    );
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transform-origin: 0%;
    z-index: 1001;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }



    .gradient-text {
        font-size: 3rem;
    }

    .team-grid, .vision-grid, .philosophy-points, .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-card, .point {
        padding: 2rem;
    }

    .profile-img {
        width: 150px;
        height: 150px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vision-card:hover {
        transform: translateY(-5px);
    }
    
    body::before {
        animation: none;
    }
}

/* Add to the bottom of the file */
/* Custom Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.glow-effect {
    animation: glow 4s ease-in-out infinite;
}

.vision-main {
    background: linear-gradient(145deg, #1a1033 0%, #2d1b4e 100%);
    min-height: 100vh;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('../assets/images/grid.svg') center/50px 50px;
    opacity: 0.1;
    animation: fade 3s ease-in-out infinite;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    z-index: 2;
    max-width: 1200px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: var(--card-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--neon-glow);
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.2;
    margin-bottom: 3rem;
}

.highlight-text {
    display: block;
    color: white;
    font-size: 0.8em;
    margin-top: 0.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff00ff, #9d4edd);
    margin: 1rem auto;
    border-radius: 2px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    position: relative;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(157, 78, 221, 0.2);
}

.icon-container {
    width: 60px;
    height: 60px;
    background: rgba(157, 78, 221, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(157, 78, 221, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #9d4edd;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid rgba(157, 78, 221, 0.3);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 0;
    }
    
    .timeline-marker {
        left: 0;
        transform: none;
    }
    
    .timeline-content {
        margin-left: 2rem;
    }
}

.about-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, rgba(157, 78, 221, 0.1), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-text {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.team-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-role-card {
    background: rgba(157, 78, 221, 0.08);
    border: 1px solid rgba(157, 78, 221, 0.15);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.team-role-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(157, 78, 221, 0.15),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-role-card:hover {
    transform: translateY(-8px);
    border-color: rgba(157, 78, 221, 0.3);
    box-shadow: 
        0 20px 40px rgba(157, 78, 221, 0.2),
        0 0 0 1px rgba(157, 78, 221, 0.2);
}

.team-role-card:hover::before {
    opacity: 1;
}

.role-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.role-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(255, 0, 255, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    position: relative;
}

.role-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.5), rgba(255, 0, 255, 0.5));
    border-radius: inherit;
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.team-role-card:hover .role-icon-wrapper::after {
    opacity: 0.5;
}

.role-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(157, 78, 221, 0.15);
    border-radius: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.role-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.role-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.8);
}

.role-features i {
    color: #50fa7b;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .team-showcase {
        grid-template-columns: 1fr;
    }
}

.team-showcase {
    display: grid;
    gap: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(157, 78, 221, 0.2);
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) border-box;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: white;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 1;
}

.join-section {
    text-align: center;
    padding: 6rem 0;
    background: radial-gradient(circle at center, rgba(157, 78, 221, 0.2), transparent 70%);
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.community-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-btn.discord {
    background: #5865F2;
}

.community-btn.telegram {
    background: #0088cc;
}

.community-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .community-links {
        flex-direction: column;
    }
    
    .community-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Add new section styles */
.vision-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(157, 78, 221, 0.3), 
        transparent
    );
    margin: 4rem 0;
    position: relative;
}

.vision-divider::before {
    content: '✧';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-dark);
    padding: 0 2rem;
    color: rgba(157, 78, 221, 0.5);
    font-size: 1.5rem;
}

/* Enhanced animations */
@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .floating, .gradient-text {
        animation: none;
    }
}

/* Expertise Section */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.expertise-card {
    background: rgba(157, 78, 221, 0.08);
    border: 1px solid rgba(157, 78, 221, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(157, 78, 221, 0.05);
    backdrop-filter: var(--card-blur);
    border: 1px solid rgba(157, 78, 221, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.expertise-card.featured {
    background: rgba(157, 78, 221, 0.12);
    border-color: rgba(157, 78, 221, 0.3);
}

.expertise-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    border-color: rgba(157, 78, 221, 0.3);
    box-shadow: 
        0 20px 40px rgba(157, 78, 221, 0.2),
        0 0 0 1px rgba(157, 78, 221, 0.1);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(255, 0, 255, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
    transform: translateZ(20px);
    box-shadow: var(--neon-glow);
}

.icon-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(157, 78, 221, 0.4), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-card:hover .icon-glow {
    opacity: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(157, 78, 221, 0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    background: rgba(157, 78, 221, 0.03);
    backdrop-filter: var(--card-blur);
    border: 1px solid rgba(157, 78, 221, 0.05);
    transform-origin: left;
}

.feature-list li:hover {
    transform: translateX(8px);
    background: rgba(157, 78, 221, 0.12);
    transform: scale(1.02) translateX(10px);
    background: rgba(157, 78, 221, 0.08);
    border-color: rgba(157, 78, 221, 0.2);
}

.feature-icon {
    font-size: 1.2rem;
}

/* New fancy scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(157, 78, 221, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        to bottom,
        rgba(157, 78, 221, 0.3),
        rgba(255, 0, 255, 0.3)
    );
    border-radius: 6px;
    border: 3px solid rgba(0, 0, 0, 0.1);
}

/* Add smooth transitions */
.expertise-card, .feature-list li {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    .expertise-card:hover {
        transform: translateY(-5px) rotateX(0);
    }
    
    .feature-list li:hover {
        transform: translateX(5px);
    }
    
    .hero-content {
        padding: 0 1rem;
    }
}

/* Improved accessibility */
@media (prefers-reduced-motion: reduce) {
    .expertise-card, .feature-list li, .gradient-text, .hero-badge {
        animation: none;
        transition: all 0.1s ease;
    }
}

/* Vision Section */
.vision-section {
    padding: 8rem 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(157, 78, 221, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.08) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    perspective: 1000px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(157, 78, 221, 0.15),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(157, 78, 221, 0.2);
    box-shadow: 
        0 20px 40px rgba(157, 78, 221, 0.2),
        0 0 0 1px rgba(157, 78, 221, 0.1);
}

.pillar-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.pillar-icon::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.2), transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar-card:hover .pillar-icon::after {
    opacity: 1;
}

.pillar-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pillar-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
}

.join-section {
    padding: 6rem 0;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(157, 78, 221, 0.1)
    );
    text-align: center;
}

.join-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.join-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff00ff, #9d4edd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.community-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.community-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.community-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.community-btn:hover::before {
    transform: translateY(0);
}

.community-btn.discord {
    background: #5865F2;
}

.community-btn.telegram {
    background: #0088cc;
}

.community-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .community-links {
        flex-direction: column;
    }
    
    .pillar-card {
        padding: 2rem;
    }
    
    .join-content {
        padding: 2rem;
    }
}

/* Add new section styles */
.social-icon.x {
    background: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.social-icon.x .icon-wrapper {
    font-size: 1.2rem; /* Ajuster la taille si nécessaire */
}

.social-icon.x:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-icon.x {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon.x:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-icon.discord:hover {
    background: #5865F2;
    border-color: #5865F2;
}

.social-icon.telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
}

.social-icon .icon-label {
    font-size: 0.9rem;
    font-weight: 500;
}