@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&display=swap');


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0C0C0C;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.gradient-text {
    background: linear-gradient(135deg, #05FFD2, #7C5CFC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    background: transparent; 
    backdrop-filter: blur(20px); 
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent !important;
}

.nav-logo h1 {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #05FFD2, #7C5CFC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-logo {
    cursor: pointer;
    transition: all 0.3s ease;
}
.nav-logo a {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}


.nav-logo:hover h1 {
    transform: scale(1.50);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.get-started-btn {
    background: transparent;
    color: #ffffff; 
    padding: 0.8rem 1.8rem;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid;
    border-image: linear-gradient(135deg, #05FFD2, #7C5CFC) 1;
    cursor: pointer;
}


.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(5, 255, 210, 0.3);
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 0.5rem;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Full Screen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.98), rgba(124, 92, 252, 0.1));
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    text-align: center;
    position: relative;
}

.close-btn {
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #05FFD2;
}

.menu-links {
    list-style: none;
    margin-bottom: 3rem;
}

.menu-links li {
    margin: 2rem 0;
}

.menu-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.menu-links a:hover {
    color: #05FFD2;
    transform: translateX(20px);
}

.menu-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.menu-social a {
    color: #ffffff;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.menu-social a:hover {
    color: #05FFD2;
    transform: scale(1.2);
}

/* Hero Section */
.hero {
    /* min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(5, 255, 210, 0.05), rgba(124, 92, 252, 0.05));
    padding: 120px 0 80px; */
    min-height: 100vh;
    background: linear-gradient(rgba(12, 12, 12, 0.7), rgba(124, 92, 252, 0.3)), url('hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

} 

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(124, 92, 252, 0.1) 0%, rgba(12, 12, 12, 1) 70%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #05FFD2, #7C5CFC);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}
.floating-shapes {
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    z-index: 2;
    position: relative;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem); 
    font-weight: 500; 
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem); 
    font-weight: 200;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/* Countdown Timer */
.countdown-container {
    margin: 3rem 0;
}

.countdown-container h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #05FFD2;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.time-unit {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    min-width: 100px;
    backdrop-filter: blur(10px);
}

.time-unit span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #05FFD2;
    font-family: 'Space Grotesk', sans-serif;
}

.time-unit label {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
    border: 1px solid;
    border-image: linear-gradient(135deg, #05FFD2, #7C5CFC) 1;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
    border: 1px solid;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #05FFD2, #7C5CFC);
    color: #0C0C0C;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(5, 255, 210, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #05FFD2;
    transform: translateY(-3px);
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0C0C0C 0%, rgba(124, 92, 252, 0.05) 100%);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #05FFD2, #7C5CFC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #05FFD2;
    box-shadow: 0 20px 40px rgba(5, 255, 210, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #05FFD2, #7C5CFC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0C0C0C;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Airdrop Launch Section */
.airdrop-launch {
    min-height: 100vh;
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(124, 92, 252, 0.05), rgba(5, 255, 210, 0.05));
    display: flex;
    align-items: center;
}

.launch-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    text-align: center;
}

/* Stats Section */
.stats {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0.02);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    text-align: center;
}

.stat-item {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: rgba(5, 255, 210, 0.5);
    background: rgba(5, 255, 210, 0.05);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #05FFD2;
    margin-bottom: 1rem;
    display: block;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-weight: 500;
}

/* How It Works Section */
.how-it-works {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(5, 255, 210, 0.02), rgba(124, 92, 252, 0.02));
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.step-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    transform: translateY(-10px);
    border-color: rgba(5, 255, 210, 0.5);
    background: rgba(5, 255, 210, 0.05);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #05FFD2, #7C5CFC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0C0C0C;
    font-size: 1.2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 2rem auto 2rem;
    background: rgba(5, 255, 210, 0.1);
    border: 2px solid rgba(5, 255, 210, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #05FFD2;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Roadmap Section */
.roadmap {
    padding: 8rem 0;
    background: rgba(124, 92, 252, 0.03);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #05FFD2, #7C5CFC);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 3px solid #0C0C0C;
}

.timeline-marker.completed {
    background: #05FFD2;
}

.timeline-marker.active {
    background: #7C5CFC;
    box-shadow: 0 0 20px rgba(124, 92, 252, 0.5);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: rgba(5, 255, 210, 0.5);
    background: rgba(5, 255, 210, 0.05);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.timeline-status {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.timeline-status.completed {
    background: rgba(5, 255, 210, 0.2);
    color: #05FFD2;
}

.timeline-status.active {
    background: rgba(124, 92, 252, 0.2);
    color: #7C5CFC;
}

.timeline-status:not(.completed):not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(5, 255, 210, 0.02), #0C0C0C);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(5, 255, 210, 0.5);
}

.faq-item.active {
    border-color: #05FFD2;
    box-shadow: 0 5px 20px rgba(5, 255, 210, 0.2);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(5, 255, 210, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 500;
}

.faq-icon {
    font-size: 1.5rem;
    color: #05FFD2;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Footer */
.footer {
    background: #000000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #05FFD2, #7C5CFC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    opacity: 0.7;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: #05FFD2;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #05FFD2;
}

.footer-social h4 {
    margin-bottom: 1.5rem;
    color: #05FFD2;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #05FFD2;
    color: #0C0C0C;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .nav-logo h1 {
        font-size: 1.8rem;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .get-started-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: clamp(3rem, 10vw, 5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .menu-links a {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-card {
        max-width: 100%;
    }
    
    .steps-grid {
        flex-direction: column;
        gap: 3rem;
    }
    
    .step-card {
        max-width: 100%;
    }
    
    .roadmap-timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 5px;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 0.8rem 0.3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 0.8s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* About section */

.about-hero {
    min-height: 100vh;
    background: linear-gradient(rgba(12, 12, 12, 0.7), rgba(124, 92, 252, 0.3)), url('https://images.unsplash.com/photo-1639762681485-074b7f938ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-content {
    padding: 8rem 0;
}

.story-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 4rem;
    margin: 4rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.mission-card, .vision-card {
    background: linear-gradient(135deg, rgba(5, 255, 210, 0.1), rgba(124, 92, 252, 0.1));
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
}

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

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: #05FFD2;
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #05FFD2, #7C5CFC);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0C0C0C;
    font-weight: bold;
}

@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .story-section {
        padding: 2rem;
    }
    
    .about-hero {
        background-attachment: scroll;
    }
}

/* Claim Section */

.claim-hero {
    min-height: 100vh;
    background: linear-gradient(rgba(12, 12, 12, 0.7), rgba(124, 92, 252, 0.3)), url('https://images.unsplash.com/photo-1639762681485-074b7f938ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.claim-content {
    padding: 4rem 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}
.step-card h3 {
    margin-bottom: 12px;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #05FFD2;
    box-shadow: 0 10px 30px rgba(5, 255, 210, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #05FFD2, #7C5CFC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #0C0C0C;
    font-size: 1.2rem;
}

.wallet-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 4rem;
    margin: 4rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.wallet-section h2 {
    margin-bottom: 12px;
}

.wallet-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.wallet-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wallet-btn:hover {
    border-color: #05FFD2;
    background: rgba(5, 255, 210, 0.1);
    transform: translateY(-3px);
}

.wallet-btn i {
    font-size: 1.5rem;
}

.eligibility-checker {
    background: linear-gradient(135deg, rgba(124, 92, 252, 0.1), rgba(5, 255, 210, 0.1));
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #05FFD2;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #05FFD2;
    box-shadow: 0 0 0 2px rgba(5, 255, 210, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.requirements-list {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
}

.requirements-list ul {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.requirements-list li i {
    color: #05FFD2;
    font-size: 1.2rem;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 10px;
    margin: 2rem 0;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #05FFD2, #7C5CFC);
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
}

.status-message {
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
    font-weight: 500;
}

.status-success {
    background: rgba(5, 255, 210, 0.2);
    border: 1px solid #05FFD2;
    color: #05FFD2;
}

.status-error {
    background: rgba(255, 71, 87, 0.2);
    border: 1px solid #ff4757;
    color: #ff4757;
}

.status-warning {
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid #ffc107;
    color: #ffc107;
}

@media (max-width: 768px) {
    .wallet-section {
        padding: 2rem;
    }
    
    .eligibility-checker {
        padding: 2rem;
    }
    
    .wallet-options {
        grid-template-columns: 1fr;
    }
}


/* Tokenomic section */
.tokenomics-hero {
    min-height:70vh;
    background: linear-gradient(135deg, rgba(124, 92, 252, 0.1), rgba(5, 255, 210, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.tokenomics-content {
    padding: 4rem 0;
}

.token-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.token-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.token-stat:hover {
    transform: translateY(-5px);
    border-color: #05FFD2;
    box-shadow: 0 10px 30px rgba(5, 255, 210, 0.2);
}

.token-stat h3 {
    font-size: 2.5rem;
    color: #05FFD2;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.token-stat p {
    opacity: 0.8;
    font-size: 1.1rem;
}

.distribution-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 4rem;
    margin: 4rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pie-chart-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.pie-chart {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: conic-gradient(
        #05FFD2 0deg 108deg,
        #7C5CFC 108deg 180deg,
        #FF6B6B 180deg 252deg,
        #4ECDC4 252deg 288deg,
        #45B7D1 288deg 324deg,
        #96CEB4 324deg 360deg
    );
    position: relative;
    animation: rotateChart 2s ease-in-out;
}

.pie-chart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: #0C0C0C;
    border-radius: 50%;
}

.pie-chart::after {
    content: 'DRPM\ATokens';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #05FFD2;
    font-weight: bold;
    text-align: center;
    font-size: 1.2rem;
    white-space: pre;
}

@keyframes rotateChart {
    from {
        transform: rotate(-90deg);
    }
    to {
        transform: rotate(0deg);
    }
}

.chart-legend {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-item span {
    font-weight: 500;
}

.legend-item small {
    opacity: 0.7;
    margin-left: auto;
}

.vesting-schedule {
    margin: 4rem 0;
}

.vesting-timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #05FFD2, #7C5CFC);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    width: 45%;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #05FFD2;
    border-radius: 50%;
    border: 4px solid #0C0C0C;
    z-index: 2;
}

.utility-section {
    margin: 4rem 0;
}

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

.utility-card {
    background: linear-gradient(135deg, rgba(5, 255, 210, 0.1), rgba(124, 92, 252, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.utility-card h3 {
    margin-bottom: 12px;
}

.utility-card:hover {
    transform: translateY(-5px);
    border-color: #05FFD2;
}

.roadmap-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 4rem;
    margin: 4rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.roadmap-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #05FFD2, #7C5CFC);
}

.roadmap-quarter {
    color: #05FFD2;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .pie-chart-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .pie-chart {
        width: 250px;
        height: 250px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-content {
        width: 90%;
        margin: 1rem 0;
    }
    
    .timeline-line {
        display: none;
    }
    
    .distribution-section {
        padding: 2rem;
    }
}

/* FAQ section */
.faq-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, rgba(5, 255, 210, 0.1), rgba(124, 92, 252, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.faq-content {
    padding: 4rem 0;
}

.faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.category-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background: rgba(5, 255, 210, 0.1);
    border-color: #05FFD2;
    color: #05FFD2;
}

.accordion-container {
    max-width: 800px;
    margin: 4rem auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(5, 255, 210, 0.5);
}

.accordion-item.active {
    border-color: #05FFD2;
    box-shadow: 0 5px 20px rgba(5, 255, 210, 0.2);
}

.accordion-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header:hover {
    background: rgba(5, 255, 210, 0.05);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
}

.accordion-icon {
    font-size: 1.5rem;
    color: #05FFD2;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content-inner {
    padding: 0 2rem 2rem 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.search-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 1rem 2rem;
    width: 100%;
    max-width: 500px;
    margin: 2rem auto;
    display: block;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box:focus {
    outline: none;
    border-color: #05FFD2;
    box-shadow: 0 0 0 2px rgba(5, 255, 210, 0.2);
}

.search-box::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-container {
    position: relative;
    max-width: 500px;
    margin: 2rem auto;
}

.search-icon {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.6);
    display: none;
}

.quick-links {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.quick-link-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    border-color: #05FFD2;
    background: rgba(5, 255, 210, 0.1);
}

.quick-link-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #05FFD2, #7C5CFC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #0C0C0C;
}

.contact-support {
    background: linear-gradient(135deg, rgba(124, 92, 252, 0.1), rgba(5, 255, 210, 0.1));
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .accordion-header {
        padding: 1rem 1.5rem;
    }
    
    .accordion-content-inner {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .quick-links {
        padding: 2rem;
    }
    
    .contact-support {
        padding: 2rem;
    }
}