/* ============================================
   MODERN LAYOUT STYLES - Cyberpunk Theme
   Full-width Hero, Bento Grid, Feature Cards
   ============================================ */

/* ====== HERO MODERN SECTION ====== */
.hero-modern {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 40px;
}

.hero-modern__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-modern__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 212, 255, 0.25), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(188, 19, 254, 0.25), transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 0, 255, 0.15), transparent 60%),
        linear-gradient(180deg, rgba(10, 10, 15, 0.3) 0%, rgba(10, 10, 15, 0.9) 100%);
}

.hero-modern__particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 80% 40%, rgba(188, 19, 254, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 0, 255, 0.3) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: particles-float 20s linear infinite;
}

@keyframes particles-float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100px);
    }
}

.hero-modern__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 60px 0;
}

.hero-modern__content .container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: center;
}

.hero-modern__main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Hero Text */
.hero-modern__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-modern__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(188, 19, 254, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 100px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-modern__badge i {
    color: #ffd700;
}

.hero-modern__title {
    font-size: clamp(2rem, 4vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #bc13fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-modern__desc {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    line-height: 1.6;
}

.hero-modern__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero--primary {
    background: linear-gradient(135deg, #00d4ff, #bc13fe);
    color: white;
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}

.btn-hero--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.5);
    color: white;
}

.btn-hero--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    color: #00d4ff;
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-modern__stats {
    display: flex;
    gap: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-card__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(188, 19, 254, 0.2));
    border-radius: 12px;
    color: #00d4ff;
    font-size: 2rem;
}

.stat-card__info {
    display: flex;
    flex-direction: column;
}

.stat-card__value {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
}

.stat-card__label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Sidebar - Top Depositors */
.hero-modern__sidebar {
    display: flex;
    align-items: flex-start;
}

.top-depositors-card {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(26, 26, 46, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.top-depositors-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-depositors-card__header i {
    font-size: 1.6rem;
}

.top-depositors-card__list {
    padding: 15px 20px;
}

.top-depositor-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-depositor-item:last-child {
    border-bottom: none;
}

.top-depositor-item__rank {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
}

.top-depositor-item__rank.rank-1 {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #1a1a2e;
}

.top-depositor-item__rank.rank-2 {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    color: #1a1a2e;
}

.top-depositor-item__rank.rank-3 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.top-depositor-item__info {
    flex: 1;
}

.top-depositor-item__name {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.top-depositor-item__amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #39ff14;
}

.top-depositors-card__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px;
    color: rgba(255, 255, 255, 0.5);
}

.top-depositors-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #00d4ff, #bc13fe);
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.top-depositors-card__btn:hover {
    background: linear-gradient(135deg, #00a8cc, #9510cc);
    color: white;
}

/* ====== LIVE TICKER ====== */
.live-ticker {
    margin-bottom: 50px;
}

.live-ticker__wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 25px;
    border-radius: 16px;
    overflow: hidden;
}

.live-ticker__label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 51, 102, 0.2);
    border: 1px solid rgba(255, 51, 102, 0.4);
    border-radius: 8px;
    color: #ff3366;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}

.live-ticker__dot {
    width: 8px;
    height: 8px;
    background: #ff3366;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.live-ticker__content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.live-ticker__track {
    display: flex;
    gap: 40px;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.live-ticker__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
}

.live-ticker__user {
    font-weight: 600;
    color: #bc13fe;
}

.live-ticker__action {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.live-ticker__action--deposit {
    background: rgba(57, 255, 20, 0.2);
    color: #39ff14;
}

.live-ticker__action--purchase {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
}

.live-ticker__action--withdraw {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.live-ticker__action--refund {
    background: rgba(255, 51, 102, 0.2);
    color: #ff3366;
}

.live-ticker__amount {
    font-weight: 700;
    color: #39ff14;
}

.live-ticker__time {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
}

/* ====== BENTO GRID SECTION ====== */
.bento-section {
    margin-bottom: 60px;
}

/* Hide on mobile */
@media (max-width: 768px) {
    .bento-section {
        display: none;
    }
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.section-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #bc13fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title i {
    color: #00d4ff;
    -webkit-text-fill-color: #00d4ff;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.section-link:hover {
    color: #00d4ff;
}

.section-link i {
    transition: transform 0.3s ease;
}

.section-link:hover i {
    transform: translateX(5px);
}

/* Bento Grid - 3 Column Layout: Large Left (2 rows), 4 Small Right (2x2) */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 180px 180px;
    grid-template-areas:
        "large small1 small2"
        "large small3 small4";
    gap: 20px;
}

.bento-card--large {
    grid-area: large;
}

.bento-card--medium:nth-of-type(2) {
    grid-area: small1;
}

.bento-card--medium:nth-of-type(3) {
    grid-area: small2;
}

.bento-card--medium:nth-of-type(4) {
    grid-area: small3;
}

.bento-card--medium:nth-of-type(5) {
    grid-area: small4;
}

.bento-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(26, 26, 46, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.bento-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(188, 19, 254, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-card:hover .bento-card__bg {
    opacity: 1;
}

.bento-card__content {
    position: relative;
    z-index: 1;
    padding: 25px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bento-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 2.4rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.1));
    color: #00d4ff;
    margin-bottom: 10px;
}

.bento-card__icon--purple {
    background: linear-gradient(135deg, rgba(188, 19, 254, 0.2), rgba(188, 19, 254, 0.1));
    color: #bc13fe;
}

.bento-card__icon--pink {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(255, 0, 255, 0.1));
    color: #ff00ff;
}

.bento-card__icon--gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    color: #ffd700;
}

.bento-card__icon--green {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.2), rgba(57, 255, 20, 0.1));
    color: #39ff14;
}

.bento-card__title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bento-card__desc {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bento-card__arrow {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.bento-card:hover .bento-card__arrow {
    background: #00d4ff;
    color: #1a1a2e;
}

.bento-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #ff3366, #ff00ff);
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    animation: pulse 2s infinite;
}

/* Bento Card Sizes */
.bento-card--large {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-card--medium {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-card--wide {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-card--wide .bento-card__content {
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.bento-card--wide .bento-card__text {
    flex: 1;
}

.bento-card--small {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-card--full {
    grid-column: 1 / -1;
    grid-row: span 1;
}

.bento-card--full .bento-card__content {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.bento-card--primary {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(188, 19, 254, 0.15));
    border-color: rgba(0, 212, 255, 0.3);
}

.bento-card--gradient {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 102, 0, 0.1));
    border-color: rgba(255, 215, 0, 0.2);
}

.bento-card--gradient-green {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.1), rgba(0, 200, 0, 0.1));
    border-color: rgba(57, 255, 20, 0.2);
}

/* ====== FEATURE CARDS SECTION ====== */
.feature-section {
    margin-bottom: 60px;
}

.feature-section--last {
    margin-bottom: 80px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 212, 255, 0.15);
}

.feature-card__image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.feature-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-card__image img {
    transform: scale(1.08);
}

.feature-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 15, 26, 0.3) 0%, transparent 40%);
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0.5;
    /* Độ mờ mặc định rất thấp */
}

.feature-card:hover .feature-card__overlay {
    opacity: 0.3;
    /* Khi hover thậm chí còn sáng hơn hoặc giữ nguyên */
}

.feature-card__overlay--gradient {
    background: linear-gradient(to top, rgba(15, 15, 26, 0.4) 0%, rgba(188, 19, 254, 0.02) 100%);
}

.feature-card__overlay--green {
    background: linear-gradient(to top, rgba(15, 15, 26, 0.4) 0%, rgba(57, 255, 20, 0.02) 100%);
}

.feature-card__overlay--gold {
    background: linear-gradient(to top, rgba(15, 15, 26, 0.4) 0%, rgba(255, 215, 0, 0.02) 100%);
}

.feature-card__badge-top {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    background: linear-gradient(135deg, #00d4ff, #bc13fe);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.feature-card__badge-top--green {
    background: linear-gradient(135deg, #39ff14, #00cc00);
}

.feature-card__badge-top--gold {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.feature-card__content {
    position: relative;
    padding: 15px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1;
    background: rgba(26, 26, 46, 0.4);
    backdrop-filter: blur(5px);
    flex: 1;
}

.feature-card__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-card__title {
    color: #00d4ff;
}

.feature-card__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 5px;
    width: 100%;
}

.feature-card__stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.feature-card__stat i {
    font-size: 14px;
    color: rgba(0, 212, 255, 0.8);
}

.feature-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.feature-card:hover .feature-card__btn {
    background: linear-gradient(135deg, #00d4ff, #bc13fe);
    border-color: transparent;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.feature-card__btn--purple:hover,
.feature-card:hover .feature-card__btn--purple {
    background: linear-gradient(135deg, #bc13fe, #ff00ff);
}

.feature-card__btn--green:hover,
.feature-card:hover .feature-card__btn--green {
    background: linear-gradient(135deg, #39ff14, #00cc00);
}

.feature-card__btn--gold:hover,
.feature-card:hover .feature-card__btn--gold {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #1a1a2e;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1200px) {
    .hero-modern__content .container {
        grid-template-columns: 1fr 300px;
    }

    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bento-card--large {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .hero-modern {
        min-height: auto;
    }

    .hero-modern__content .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-modern__sidebar {
        order: -1;
    }

    .top-depositors-card {
        max-width: 100%;
    }

    .hero-modern__stats {
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 140px;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-card--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .bento-card--wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-modern__title {
        font-size: 2.8rem;
    }

    .hero-modern__buttons {
        flex-direction: column;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .hero-modern__stats {
        flex-direction: column;
    }

    .stat-card {
        width: 100%;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "large large"
            "small1 small2"
            "small3 small4";
    }

    .bento-card--large {
        grid-row: span 1;
    }

    .bento-card--wide .bento-card__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .live-ticker__wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .live-ticker__label {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-modern__content {
        padding: 40px 0;
    }

    .hero-modern__main {
        gap: 25px;
    }

    .hero-modern__badge {
        font-size: 1.1rem;
        padding: 6px 14px;
    }

    .hero-modern__title {
        font-size: 2.2rem;
        white-space: normal;
        line-height: 1.3;
        overflow: visible;
        text-overflow: unset;
    }

    .hero-modern__desc {
        font-size: 1.4rem;
        margin-top: -10px;
    }

    .btn-hero {
        padding: 12px 20px;
        font-size: 1.3rem;
        gap: 8px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .top-depositors-card__header {
        font-size: 1.1rem;
        padding: 15px;
    }

    .top-depositors-card__btn {
        padding: 12px;
        font-size: 1.2rem;
    }

    .bento-card__icon {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .bento-card__title {
        font-size: 1.5rem;
    }
}

/* ============================================
   MOBILE CARD RECHARGE WIDGET
   Only visible on mobile devices (< 768px)
   ============================================ */

.mobile-recharge-widget {
    display: none;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin: 20px auto;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.recharge-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.recharge-tab {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.recharge-tab:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    color: #00d4ff;
}

.recharge-tab.active {
    background: linear-gradient(135deg, #0066ff 0%, #0099ff 100%);
    border-color: #00d4ff;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.recharge-tab-content {
    display: none;
}

.recharge-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.recharge-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recharge-form .form-select,
.recharge-form .form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.recharge-form .form-select:focus,
.recharge-form .form-input:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.recharge-form .form-select option {
    background: #1a1a2e;
    color: white;
}

.captcha-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.captcha-input {
    flex: 1;
}

.captcha-display {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
}

.captcha-text {
    font-size: 18px;
    font-weight: 700;
    color: #00d4ff;
    letter-spacing: 4px;
    font-family: "Courier New", monospace;
}

.captcha-refresh {
    background: none;
    border: none;
    color: #00d4ff;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.captcha-refresh:hover {
    transform: rotate(180deg);
}

.btn-recharge {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0066ff 0%, #0099ff 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

.btn-recharge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.6);
}

.btn-recharge:active {
    transform: translateY(0);
}

.top-recharge-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.top-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(5px);
}

.top-item.top-1 {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.3);
}

.top-item.top-2 {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, rgba(192, 192, 192, 0.05) 100%);
    border-color: rgba(192, 192, 192, 0.3);
}

.top-item.top-3 {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1) 0%, rgba(205, 127, 50, 0.05) 100%);
    border-color: rgba(205, 127, 50, 0.3);
}

.top-item .rank {
    width: 40px;
    text-align: center;
    font-size: 24px;
}

.top-item .rank-number {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

.top-item .user-info {
    flex: 1;
}

.top-item .username {
    font-weight: 600;
    color: white;
    font-size: 14px;
}

.top-item .amount {
    text-align: right;
}

.top-item .value {
    font-weight: 700;
    font-size: 15px;
    color: #39ff14;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.3;
}

.empty-state p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 767px) {
    .mobile-recharge-widget {
        display: block;
    }
}

@media (min-width: 768px) {
    .mobile-recharge-widget {
        display: none !important;
    }
}