.hero-section {
    background: #000;
    min-height: 100vh;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background gradient effects */
.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(138, 87, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(138, 87, 255, 0.8) 20%, rgba(138, 87, 255, 0.8) 80%, transparent 100%);
    filter: blur(8px);
    z-index: 1;
}

/* Large arc border */
.hero-arc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    border: 1px solid rgba(138, 87, 255, 0.2);
    border-radius: 50%;
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    margin-bottom: 80px;
}

.hero-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-tab {
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.hero-tab.active {
    background: linear-gradient(135deg, #8A57FF 0%, #6B3FE8 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(138, 87, 255, 0.4);
}

.hero-tab:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    color: #999;
    border-color: rgba(255, 255, 255, 0.1);
}

.hero-tab:not(.active):hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    color: #999;
    margin-bottom: 40px;
}

.hero-subtitle span {
    color: #8A57FF;
}

.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #8A57FF 0%, #6B3FE8 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 6px 25px rgba(138, 87, 255, 0.4);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(138, 87, 255, 0.5);
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    perspective: 1000px;
}

.hero-card {
    background: linear-gradient(135deg, rgba(138, 87, 255, 0.1) 0%, rgba(107, 63, 232, 0.05) 100%);
    border: 1px solid rgba(138, 87, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.hero-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    border-color: rgba(138, 87, 255, 0.4);
    box-shadow: 0 20px 40px rgba(138, 87, 255, 0.2);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(138, 87, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* Left card - Crypto Rewards */
.hero-card.crypto-rewards {
    transform: rotate(-3deg);
}

.hero-card.crypto-rewards:hover {
    transform: rotate(0deg) translateY(-8px);
}

.crypto-rewards-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.crypto-rewards-header p {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
    margin-bottom: 20px;
}

.crypto-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.crypto-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s;
}

.crypto-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.crypto-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.crypto-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.crypto-details h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.crypto-details p {
    font-size: 12px;
    color: #4CAF50;
}

.crypto-price {
    text-align: right;
}

.crypto-price .amount {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.crypto-price .change {
    font-size: 11px;
    color: #4CAF50;
}

.crypto-arrow {
    color: #8A57FF;
    font-size: 16px;
}

/* Center card - Staking Metrics */
.hero-card.staking-metrics {
    transform: scale(1.05);
    z-index: 2;
}

.staking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.staking-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.staking-icons {
    display: flex;
    gap: 12px;
}

.staking-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
}

.staking-icon:hover {
    background: rgba(138, 87, 255, 0.2);
    color: #fff;
}

.staking-crypto {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.staking-crypto-icon {
    width: 48px;
    height: 48px;
    background: #F7931A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.staking-crypto-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.staking-crypto-info .apy {
    font-size: 14px;
    color: #4CAF50;
}

.staking-crypto-info .volume {
    font-size: 12px;
    color: #666;
    margin-left: 8px;
}

.staking-value {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.staking-chart {
    position: relative;
    height: 120px;
    margin-top: 20px;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.chart-line {
    stroke: #4CAF50;
    stroke-width: 2;
    fill: none;
}

.chart-area {
    fill: url(#chartGradient);
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 11px;
    color: #666;
}

.chart-point {
    position: absolute;
    top: 20px;
    right: 80px;
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
    border-radius: 50%;
    width: 12px;
    height: 12px;
}

.chart-tooltip {
    position: absolute;
    top: -30px;
    right: -20px;
    background: rgba(0, 0, 0, 0.9);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    color: #4CAF50;
    white-space: nowrap;
}

/* Right card - Staking Assets */
.hero-card.staking-assets {
    transform: rotate(3deg);
}

.hero-card.staking-assets:hover {
    transform: rotate(0deg) translateY(-8px);
}

.staking-assets-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.asset-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.asset-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, rgba(138, 87, 255, 0.4), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.asset-icon:hover::before {
    opacity: 1;
}

.asset-icon:hover {
    transform: scale(1.1) translateY(-4px);
}

@media (max-width: 1200px) {
    .hero-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-card {
        transform: none !important;
    }

    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .assets-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}