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

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

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00FF88, #8B00FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: #00FF88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00FF88;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.nav-link.active {
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8px 16px;
    border-radius: 20px;
}

.app-link {
    background: linear-gradient(45deg, #00FF88, #8B00FF);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: none;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    color: #0A0A0A;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.app-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.6);
    color: #0A0A0A;
    background: linear-gradient(45deg, #00FF88, #8B00FF);
}

/* Falling Cubes Animation */
.falling-cubes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
}

.cube {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #00FF88, #8B00FF);
    border: 1px solid #00FF88;
    box-shadow: 
        0 0 10px rgba(0, 255, 136, 0.5),
        inset 0 0 10px rgba(139, 0, 255, 0.3);
    animation: fall linear infinite;
    opacity: 0.7;
}

.cube:nth-child(odd) {
    background: linear-gradient(45deg, #8B00FF, #FFD700);
    border-color: #8B00FF;
    box-shadow: 
        0 0 10px rgba(139, 0, 255, 0.5),
        inset 0 0 10px rgba(255, 215, 0, 0.3);
}

.cube:nth-child(3n) {
    background: linear-gradient(45deg, #FFD700, #00FF88);
    border-color: #FFD700;
    box-shadow: 
        0 0 10px rgba(255, 215, 0, 0.5),
        inset 0 0 10px rgba(0, 255, 136, 0.3);
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.cube.glow {
    animation: fall linear infinite, glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% {
        box-shadow: 
            0 0 10px rgba(0, 255, 136, 0.5),
            inset 0 0 10px rgba(139, 0, 255, 0.3);
    }
    100% {
        box-shadow: 
            0 0 20px rgba(0, 255, 136, 0.8),
            inset 0 0 15px rgba(139, 0, 255, 0.6);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, rgba(139, 0, 255, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 0, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-headline {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00FF88, #FFD700, #8B00FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cccccc;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-primary {
    background: linear-gradient(45deg, #00FF88, #8B00FF);
    color: #0A0A0A;
    border: 2px solid transparent;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.6);
}

.cta-secondary {
    background: transparent;
    color: #00FF88;
    border: 2px solid #00FF88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.cta-secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trading-animation {
    position: relative;
    width: 300px;
    height: 300px;
}

.trading-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 120px;
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid #00FF88;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00FF88, #8B00FF, #FFD700);
    border-radius: 15px;
    z-index: -1;
    filter: blur(5px);
    opacity: 0.7;
}

.trade-symbol {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.trade-amount {
    font-size: 1.2rem;
    color: #00FF88;
    font-weight: 600;
}

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

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 1) 0%, rgba(139, 0, 255, 0.05) 50%, rgba(10, 10, 10, 1) 100%);
    position: relative;
    z-index: 2;
}

.dual-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.flow-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #00FF88;
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00FF88, #8B00FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0A0A0A;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.step-content p {
    color: #cccccc;
    font-size: 0.95rem;
}

/* Participating Tokens Section */
.participating-tokens {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 1);
    position: relative;
    z-index: 2;
}

/* Tokens CTA */
.tokens-cta {
    text-align: center;
    margin: 3rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(139, 0, 255, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.tokens-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00FF88, #8B00FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-join {
    background: linear-gradient(45deg, #00FF88, #8B00FF);
    color: #0A0A0A;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.cta-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.6);
}

/* Projects Ticker */
.projects-ticker {
    margin: 3rem 0;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    padding: 1rem 2rem;
    color: #00FF88;
    font-weight: 500;
    font-size: 1.1rem;
    margin-right: 3rem;
    display: inline-block;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.tokens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.token-card {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.token-card:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.2);
}

.token-logo {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.token-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
}

.token-logo:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.5));
}

.token-name {
    font-weight: 600;
    color: #ffffff;
}

.disclaimer {
    text-align: center;
    color: #888888;
    font-style: italic;
    margin-top: 2rem;
}

/* Points System Section */
.points-system {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 1) 0%, rgba(139, 0, 255, 0.05) 50%, rgba(10, 10, 10, 1) 100%);
}

.points-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.points-conversion h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #00FF88;
}

.conversion-visual {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 2rem;
}

.conversion-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.volume {
    color: #FFD700;
}

.arrow {
    color: #8B00FF;
    font-size: 1.5rem;
}

.points {
    color: #00FF88;
}

.reward-types h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #00FF88;
}

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

.reward-type {
    background: rgba(139, 0, 255, 0.05);
    border: 1px solid rgba(139, 0, 255, 0.2);
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.reward-type:hover {
    background: rgba(139, 0, 255, 0.1);
    border-color: rgba(139, 0, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 0, 255, 0.2);
}

.reward-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.reward-type h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.reward-type p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Project Value Section */
.project-value {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 1);
}

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

.value-item {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.value-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Social Proof Section */
.social-proof {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 1) 0%, rgba(0, 255, 136, 0.05) 50%, rgba(10, 10, 10, 1) 100%);
}

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

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

.stat:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.2);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00FF88;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.stat-label {
    color: #cccccc;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: rgba(139, 0, 255, 0.05);
    border: 1px solid rgba(139, 0, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #ffffff;
    font-style: italic;
}

.testimonial cite {
    color: #8B00FF;
    font-weight: 600;
    font-style: normal;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 30px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Application Form Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 255, 136, 0.2);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    background: linear-gradient(45deg, #00FF88, #8B00FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.close-modal {
    font-size: 2rem;
    color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-modal:hover {
    color: #00FF88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.application-form {
    padding: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #00FF88;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00FF88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    background: rgba(30, 30, 30, 0.9);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.btn-cancel,
.btn-submit,
.btn-close {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-submit {
    background: linear-gradient(45deg, #00FF88, #8B00FF);
    color: #0A0A0A;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.5);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    padding: 3rem 2rem;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #00FF88;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.form-success h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00FF88;
}

.form-success p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-close {
    background: linear-gradient(45deg, #00FF88, #8B00FF);
    color: #0A0A0A;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.btn-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.5);
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Loading state for form submission */
.btn-submit.loading {
    position: relative;
    color: transparent;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #0A0A0A;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Mobile Responsive for Application Form */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 2.5vh auto;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .application-form {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-cancel,
    .btn-submit,
    .btn-close {
        width: 100%;
        padding: 1rem;
    }
    
    .form-success {
        padding: 2rem 1.5rem;
    }
    
    .success-icon {
        font-size: 3rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .dual-flow {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .points-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .token-logo {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-headline {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .tokens-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .token-card {
        padding: 1rem;
    }
    
    .token-logo {
        width: 36px;
        height: 36px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .tokens-cta {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .cta-title {
        font-size: 1.2rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
    
    .projects-ticker {
        font-size: 0.8rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .app-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}