/* Index Page - Premium Landing Styles */

/* ========================================
   Hero Buttons
   ======================================== */
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.875rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.875rem;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.5);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: rgba(51, 65, 85, 0.6);
    border-color: rgba(71, 85, 105, 0.6);
}

/* ========================================
   Stats Ticker
   ======================================== */
.ticker-container {
    overflow: hidden;
    width: 100%;
}

.ticker-content {
    display: flex;
    gap: 3rem;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.875rem;
}

/* ========================================
   Feature Cards
   ======================================== */
.feature-card {
    position: relative;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(51, 65, 85, 0.4);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.05));
    color: #f97316;
}

.feature-icon.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
    color: #3b82f6;
}

.feature-icon.purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.05));
    color: #a855f7;
}

.feature-icon.green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05));
    color: #22c55e;
}

.feature-icon.cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.05));
    color: #06b6d4;
}

.feature-icon.pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.05));
    color: #ec4899;
}

.feature-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(51, 65, 85, 0.3);
}

/* ========================================
   DApp Cards (Ecosystem)
   ======================================== */
.dapp-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.4);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.dapp-card:hover {
    transform: translateY(-4px);
}

.dapp-card.orange:hover {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.dapp-card.blue:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.dapp-card.purple:hover {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.15);
}

.dapp-card.indigo:hover {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.dapp-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.dapp-card:hover .dapp-icon {
    transform: scale(1.1) rotate(3deg);
}

.dapp-card.orange .dapp-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
}

.dapp-card.blue .dapp-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.dapp-card.purple .dapp-icon {
    background: linear-gradient(135deg, #a855f7, #9333ea);
    color: white;
}

.dapp-card.indigo .dapp-icon {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
}

.dapp-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dapp-badge.live {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.dapp-badge.new {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .dapp-card {
        padding: 1.5rem 1rem;
    }

    .dapp-icon {
        width: 56px;
        height: 56px;
    }

    .ticker-item {
        font-size: 0.75rem;
    }
}