.page-wrapper {
    background: #000;
    position: relative;
    min-height: 100vh;
    padding-top: 20px;
    /* Balanced point */
    overflow-x: hidden;
}

.bg-glow-effect {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 60%;
    background: radial-gradient(circle at 50% 0%, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Regular Hero */
.regular-hero {
    text-align: center;
    padding: 20px 5% 60px;
    position: relative;
    z-index: 10;
}

.badge-wrapper {
    margin-bottom: 25px;
}

.badge-demon {
    font-family: 'Outfit', sans-serif;
    background: rgba(108, 99, 255, 0.05);
    color: #6c63ff;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 4px;
    border: 1px solid rgba(108, 99, 255, 0.2);
    text-transform: uppercase;
}

.regular-title {
    font-family: 'Syncopate', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 0px;
    line-height: 1;
}

.layer-1 {
    font-size: 2.22rem;
    font-weight: 400;
    color: #fff;
    opacity: 0.4;
    letter-spacing: 25px;
    text-transform: uppercase;
    margin-bottom: -15px;
}

.layer-2 {
    font-size: 8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -5px;
    background: linear-gradient(180deg, #fff 0%, #444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 40px rgba(108, 99, 255, 0.15));
    text-transform: uppercase;
}

.title-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6c63ff, transparent);
    margin: 40px auto;
}

.regular-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto;
    font-weight: 300;
}

/* Grid System */
.regular-sponsors-section {
    padding: 0 5% 120px;
    max-width: 1700px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.regular-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    justify-content: center;
}

/* Sponsor Card */
.regular-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    width: 100%;
}

.regular-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(180deg, transparent, var(--card-glow, #6c63ff), 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.2;
    transition: opacity 0.5s ease;
}

.regular-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--card-glow, #6c63ff);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(108, 99, 255, 0.05);
}

.regular-card:hover::after {
    opacity: 1;
}

.card-logo {
    height: 75px;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

.card-bonus-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.bonus-box-top {
    font-family: 'Outfit', sans-serif;
    background: var(--card-glow, #6c63ff);
    color: #fff;
    padding: 12px 10px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

.bonus-box-main {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 25px 15px;
    backdrop-filter: blur(5px);
}

.main-amount {
    font-family: 'Syncopate', sans-serif;
    display: block;
    font-size: 2.22rem;
    font-weight: 700;
    color: #fff;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
    letter-spacing: -1px;
    margin-bottom: 2px;
}

.bottom-text {
    font-family: 'Outfit', sans-serif;
    display: block;
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.7;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Animations */
.animate-up {
    animation: fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1400px) {
    .regular-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1100px) {
    .regular-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .regular-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 8px !important;
    }

    .regular-card {
        padding: 4px 2px !important;
        min-height: 90px !important;
        height: 90px !important;
        gap: 3px !important;
        border-radius: 8px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .main-amount {
        font-size: 0.75rem !important;
    }

    .layer-2 {
        font-size: 4rem;
    }

    .layer-1 {
        font-size: 1.5rem;
        letter-spacing: 12px;
    }

    .regular-desc {
        font-size: 1rem;
    }

    .card-logo {
        height: 18px !important;
        width: auto !important;
        max-width: 90% !important;
        margin-bottom: 2px !important;
    }

    .card-bonus-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
        width: 100% !important;
    }

    .bonus-box-top {
        font-size: 0.35rem !important;
        padding: 2px 0 !important;
        border-radius: 4px !important;
        letter-spacing: 0 !important;
        width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
    }

    .bonus-box-main {
        padding: 3px 0 !important;
        border-radius: 6px !important;
        gap: 0 !important;
        width: 100% !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .main-amount {
        font-size: 0.65rem !important;
        line-height: 1.1 !important;
        margin: 0 !important;
    }

    .bottom-text {
        font-size: 0.35rem !important;
        letter-spacing: 0 !important;
        opacity: 0.6 !important;
    }
}