


.banner {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.3);
    position: relative;
    overflow: hidden;
    margin: 0 auto 50px auto;
}

.banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.token-section {
    display: flex;
    align-items: center;
    gap: 24px;
}

.token-circle {
    min-width: 120px;
    min-height: 120px;
    width: auto;
    height: auto;
    aspect-ratio: 1;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.token-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.token-count {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    text-align: center;
    word-break: keep-all;
    white-space: nowrap;
}

.token-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.token-info {
    color: white;
}

.token-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    opacity: 0.8;
}

.token-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

.action-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.banner-nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.banner-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.banner-buy-button {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    white-space: nowrap;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
    background: white;
    color: #dc2626;
}

.card-icon {
    width: 20px;
    height: 20px;
}

.promotions-link {
    background: #efefef !important;
    color: #60a5fa !important;
}

.promotions-link:hover {
    background: #e0e0e0 !important;
    color: #3b82f6 !important;
}

.buy-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        padding: 24px 20px;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .token-section {
        flex-direction: column;
        gap: 16px;
    }

    .token-circle {
        min-width: 100px;
        min-height: 100px;
        padding: 16px;
    }

    .token-count {
        font-size: 1.6rem;
    }

    .token-title {
        font-size: 1.5rem;
        justify-content: center;
    }

    .action-section {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .nav-link,
    .buy-button {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .banner {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .token-circle {
        min-width: 80px;
        min-height: 80px;
        padding: 12px;
    }

    .token-count {
        font-size: 1.4rem;
    }

    .token-label {
        font-size: 0.8rem;
    }

    .token-title {
        font-size: 1.3rem;
    }

    .token-subtitle {
        font-size: 0.9rem;
    }

    .nav-link,
    .buy-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Animation */
.banner {
    animation: slideIn 0.8s ease-out;
}

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

.token-circle {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}
