.account-app{
    position: relative;
}
.account-app [data-pagename="home"] .miner-chart{
    width: 100%;
    height: 180px;
    border-radius: 16px;
    background: #19221f;
}
.account-app [data-pagename="home"] img.nav-image{
    width: 42px;
    height: 42px
}
@media screen and (min-width: 576px){
    .account-app [data-pagename="home"] img.nav-image{
        width: 54px;
        height: 54px;
    }
}
@media screen and (min-width: 768px){
    .account-app [data-pagename="home"] img.nav-image{
        width: 58px;
        height: 58px;
    }
}

.account-app [data-pagename="speed_miner"] .slider-container {
    padding: 30px 20px 10px;
}
.account-app [data-pagename="speed_miner"] .slider-wrapper {
    position: relative;
}
.account-app [data-pagename="speed_miner"] .slider-wrapper input[type="range"]{
    -webkit-appearance: none;
    width: 100%;
    height: 20px;
    background: linear-gradient(to right, #373737 0%, #373737 100%);
    background-size: 100% 10px;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    outline: none;
    border-radius: 16px;
}
.account-app [data-pagename="speed_miner"] .slider-wrapper input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance:none;
    width:20px;
    height:20px;
    background: #5eba60;
    position:relative;
    z-index:3;
    box-shadow:0 0 5px 0 rgba(0,0,0,0.3);
    border-radius: 50%;
}

.account-app [data-pagename="speed_miner"] .slider-wrapper input[type="range"]::-webkit-slider-thumb:after{
    content:" ";
    width:160px;
    height:10px;
    position:absolute;
    z-index:1;
    right:20px;
    top:5px;
    background: #ff5b32;
    background: linear-gradient(to right, #f088fc 1%, #AC6CFF 70%);
}
.account-app [data-pagename="speed_miner"] .tooltip-custom {
    position: absolute;
    top: -40px;
    left: 40px;
    transform: translateX(-50%);
    background: #1d1f1e;
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    pointer-events: none;
    transition: left 0.1s;
    box-shadow:0 0 5px 0 rgba(0,0,0,0.3);
    color: #cfcec9;
}

.account-app .prize-day-block{
    text-align: center;
    padding: .5rem .75rem;
    border-radius: 12px;
    border: 1px solid #404040;
    height: 100%;
}
.account-app .prize-day-block.active{
    background: #404040;
    border: 1px solid transparent;
}

.account-app [data-pagename="deposit"] .item-paysys-card,
.account-app [data-pagename="payout"] .item-paysys-card{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
    height: 100%;
    padding: 6px;
    cursor: pointer;
    border: 1px solid #373737;
    background-color: #1d1f1e;
}

.account-app [data-pagename="deposit"] .item-paysys-card.inactive,
.account-app [data-pagename="payout"] .item-paysys-card.inactive{
    pointer-events: none;
    background: #252525;
    opacity: .5;
}

.account-app [data-pagename="deposit"] .item-paysys-card:hover,
.account-app [data-pagename="payout"] .item-paysys-card:hover{
    box-shadow:0 0 5px 0 rgba(0,0,0,0.3);
}

.account-app [data-pagename="deposit"] .item-paysys-card img,
.account-app [data-pagename="payout"] .item-paysys-card img{
    max-width: 32px;
    max-height: 32px;
    width: 100%;
    height: 100%;
}

/* Space Mining Container Styles */
.space-mining-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 0px;
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 50%, #0f1e3d 100%);
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
}

.space-mining-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: stars 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes stars {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.income-display {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
    z-index: 10;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.95), rgba(0, 40, 80, 0.9));
    border: 2px solid rgba(100, 181, 246, 0.4);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 4px 15px rgba(100, 181, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    min-width: 140px;
    transition: all 0.3s ease;
}

.income-display:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.5),
        0 6px 20px rgba(100, 181, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(100, 181, 246, 0.6);
}

.income-label {
    color: rgba(100, 181, 246, 0.9);
    font-size: 12px;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.income-value {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 0 0 12px rgba(100, 181, 246, 0.6);
    line-height: 1.2;
}

.space-station-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0px auto 0px;
    z-index: 5;
}

.orbit-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.orbit-icon.active {
    filter: brightness(1);
}

.orbit-icon.inactive {
    filter: brightness(0.4) grayscale(0.8);
    opacity: 0.6;
}

.orbit-icon.inactive .station-label {
    opacity: 0.5;
}

.icon-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 2px rgba(100, 181, 246, 0.6));
    transition: all 0.3s ease;
}

.orbit-icon.active .icon-circle img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(100, 181, 246, 0.8));
}

.orbit-icon.inactive .icon-circle img {
    filter: drop-shadow(0 0 1px rgba(100, 181, 246, 0.3)) brightness(0.5) grayscale(0.7);
}

/* Station Count Badge */
.station-count {
    position: absolute;
    top: -3px;
    right: -3px;
    background: rgb(100 181 246 / 3%);
    color: #b5b5b5;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    box-shadow: 
        0 2px 6px rgba(100, 181, 246, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 10;
    min-width: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(100, 181, 246, 0.4);
}

.orbit-icon.inactive .station-count {
    background: rgba(120, 120, 120, 0.4);
    border: 1px solid rgba(160, 160, 160, 0.3);
    box-shadow: 
        0 2px 6px rgba(120, 120, 120, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Расположение иконок по кругу с равными расстояниями */
/* Радиус 150px от центра, размер иконки 70px, центрирование -35px */
.orbit-icon-1 { 
    top: calc(50% - 150px - 35px); 
    left: calc(50% - 35px); 
}
.orbit-icon-2 { 
    top: calc(50% - 106px - 35px); 
    left: calc(50% + 106px - 35px); 
}
.orbit-icon-3 { 
    top: calc(50% - 35px); 
    left: calc(50% + 150px - 35px); 
}
.orbit-icon-4 { 
    top: calc(50% + 106px - 35px); 
    left: calc(50% + 106px - 35px); 
}
.orbit-icon-5 { 
    top: calc(50% + 150px - 35px); 
    left: calc(50% - 35px); 
}
.orbit-icon-6 { 
    top: calc(50% + 106px - 35px); 
    left: calc(50% - 106px - 35px); 
}
.orbit-icon-7 { 
    top: calc(50% - 35px); 
    left: calc(50% - 150px - 35px); 
}
.orbit-icon-8 { 
    top: calc(50% - 106px - 35px); 
    left: calc(50% - 106px - 35px); 
}

.space-station-central {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.station-main {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.station-main img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 15px rgba(100, 181, 246, 0.7));
}

.station-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(100, 181, 246, 0.3) 0%, rgba(100, 181, 246, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.station-info {
    text-align: center;
    margin-top: 20px;
    z-index: 10;
    position: relative;
}

.station-name {
    color: #64b5f6;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(100, 181, 246, 0.5);
}

.station-level {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 0 0 20px #64b5f6;
    line-height: 1;
}

/* Cosmic Odometer Styles */
.cosmic-odometer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.odometer-display {
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.95), rgba(0, 30, 60, 0.9));
    border: 2px solid rgba(100, 181, 246, 0.4);
    border-radius: 12px;
    padding: 12px 20px;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 30px rgba(100, 181, 246, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.odometer-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(100, 181, 246, 0.1) 50%, transparent 52%);
    animation: scanline 3s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.odometer-digits {
    display: flex;
    gap: 2px;
    font-family: 'Impact', 'Arial Black', 'Bebas Neue', 'Orbitron', 'Exo 2', monospace;
    font-weight: 900;
    font-size: 24px;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(100, 181, 246, 0.8),
        0 0 20px rgba(100, 181, 246, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.odometer-digit {
    position: relative;
    overflow: hidden;
    height: 32px;
    width: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 40, 80, 0.4), rgba(0, 20, 40, 0.6));
    border: 1px solid rgba(100, 181, 246, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 8px rgba(100, 181, 246, 0.2);
    transition: box-shadow 0.3s ease;
}

.odometer-digit:hover {
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 12px rgba(100, 181, 246, 0.4);
}

.odometer-digit-inner {
    position: relative;
    transition: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(0);
    font-weight: 100;
    color: #6de8f7;
    filter: drop-shadow(0 0 2px rgba(100, 181, 246, 0.8));
}

.odometer-digit.decimal-point {
    width: 8px;
    background: transparent;
    border: none;
    color: rgba(100, 181, 246, 0.9);
    font-size: 24px;
    font-weight: 900;
    text-shadow: 
        0 0 10px rgba(100, 181, 246, 1),
        0 0 20px rgba(100, 181, 246, 0.6);
    animation: pointPulse 2s infinite;
}

@keyframes pointPulse {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.1);
    }
}

.odometer-digit.rolling .odometer-digit-inner {
    animation: digitRoll 0.25s linear;
}

@keyframes digitRoll {
    0% { 
        transform: translateY(0); 
        opacity: 1; 
    }
    40% { 
        transform: translateY(15px); 
        opacity: 0; 
    }
    60% { 
        transform: translateY(-15px); 
        opacity: 0; 
    }
    100% { 
        transform: translateY(0); 
        opacity: 1; 
    }
}

/* Station Labels under each station */
.station-label {
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    color: #b3d1ff;
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    background: rgba(13, 27, 42, 0.8);
    padding: 2px 4px;
    border-radius: 4px;
    border: 1px solid rgba(100, 181, 246, 0.3);
    min-width: 60px;
    box-sizing: border-box;
}

/* Station Statistics */
.station-statistics {
    margin-top: 20px;
    padding: 15px;
    background: rgba(13, 27, 42, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(100, 181, 246, 0.3);
}

.stats-title {
    color: #64b5f6;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(100, 181, 246, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 8px;
    background: rgba(25, 118, 210, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(100, 181, 246, 0.2);
}

.stat-icon {
    font-size: 18px;
    margin-right: 10px;
    min-width: 24px;
    text-align: center;
}

.stat-info {
    flex: 1;
}

.stat-name {
    color: #b3d1ff;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 2px;
}

.stat-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-count {
    color: #64b5f6;
    font-size: 11px;
    font-weight: 600;
}

.stat-income {
    color: #4caf50;
    font-size: 10px;
    font-weight: 500;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 480px) {
    .space-mining-container {
        padding: 10px;
        margin: 0 5px;
        min-height: 320px;
        max-width: calc(100vw - 20px);
        box-sizing: border-box;
    }

    .space-station-wrapper {
        width: 320px;
        height: 320px;
    }

    .orbit-icon {
        width: 55px;
        height: 55px;
    }

    .icon-circle {
        width: 46px;
        height: 46px;
    }

    .station-label {
        top: 60px;
        font-size: 9px;
        padding: 2px 4px;
        min-width: 42px;
    }

    .station-count {
        width: 18px;
        height: 18px;
        font-size: 9px;
        top: -2px;
        right: -2px;
    }

    /* Обновляем позиционирование для мобильных */
    .orbit-icon-1 { 
        top: calc(50% - 113px - 27px); 
        left: calc(50% - 27px); 
    }
    .orbit-icon-2 { 
        top: calc(50% - 80px - 27px); 
        left: calc(50% + 80px - 27px); 
    }
    .orbit-icon-3 { 
        top: calc(50% - 27px); 
        left: calc(50% + 113px - 27px); 
    }
    .orbit-icon-4 { 
        top: calc(50% + 80px - 27px); 
        left: calc(50% + 80px - 27px); 
    }
    .orbit-icon-5 { 
        top: calc(50% + 113px - 27px); 
        left: calc(50% - 27px); 
    }
    .orbit-icon-6 { 
        top: calc(50% + 80px - 27px); 
        left: calc(50% - 80px - 27px); 
    }
    .orbit-icon-7 { 
        top: calc(50% - 27px); 
        left: calc(50% - 113px - 27px); 
    }
    .orbit-icon-8 { 
        top: calc(50% - 80px - 27px); 
        left: calc(50% - 80px - 27px); 
    }

    .space-station-central {
        width: 75px;
        height: 75px;
    }
    
    .station-main img {
        width: 100px;
        height: 100px;
        margin-top: 25px;
    }

    .income-display {
        top: 10px;
        right: 10px;
        padding: 5px 15px;
        min-width: 120px;
    }

    .income-value {
        font-size: 14px;
    }

    .income-label {
        font-size: 11px;
    }

    .station-info {
        margin-top: 12px;
    }

    .station-name {
        font-size: 16px;
    }

    .station-level {
        font-size: 36px;
    }

    .odometer-digits {
        font-size: 20px;
        gap: 1px;
        font-weight: 900;
        letter-spacing: 0.5px;
    }

    .odometer-digit {
        height: 28px;
        width: 18px;
        border-radius: 5px;
    }

    .odometer-digit.decimal-point {
        font-size: 20px;
    }

    .odometer-display {
        padding: 10px 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .stat-item {
        padding: 6px;
    }
    
    .stat-icon {
        font-size: 16px;
        margin-right: 8px;
    }
    
    .stat-name {
        font-size: 11px;
    }
    
    .stat-count, .stat-income {
        font-size: 10px;
    }
}

@media screen and (max-width: 360px) {
    .space-mining-container {
        padding: 8px;
        margin: 0 3px;
        min-height: 300px;
    }

    .space-station-wrapper {
        width: 260px;
        height: 260px;
        margin: 10px auto 8px;
    }

    .orbit-icon {
        width: 48px;
        height: 48px;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
    }

    .station-label {
        top: 52px;
        font-size: 8px;
        padding: 2px 3px;
        min-width: 38px;
    }

    .station-count {
        width: 16px;
        height: 16px;
        font-size: 8px;
        top: -1px;
        right: -1px;
    }

    /* Позиционирование для очень маленьких экранов */
    .orbit-icon-1 { 
        top: calc(50% - 92px - 24px); 
        left: calc(50% - 24px); 
    }
    .orbit-icon-2 { 
        top: calc(50% - 65px - 24px); 
        left: calc(50% + 65px - 24px); 
    }
    .orbit-icon-3 { 
        top: calc(50% - 24px); 
        left: calc(50% + 92px - 24px); 
    }
    .orbit-icon-4 { 
        top: calc(50% + 65px - 24px); 
        left: calc(50% + 65px - 24px); 
    }
    .orbit-icon-5 { 
        top: calc(50% + 92px - 24px); 
        left: calc(50% - 24px); 
    }
    .orbit-icon-6 { 
        top: calc(50% + 65px - 24px); 
        left: calc(50% - 65px - 24px); 
    }
    .orbit-icon-7 { 
        top: calc(50% - 24px); 
        left: calc(50% - 92px - 24px); 
    }
    .orbit-icon-8 { 
        top: calc(50% - 65px - 24px); 
        left: calc(50% - 65px - 24px); 
    }

    .space-station-central {
        width: 60px;
        height: 60px;
    }
    
    .station-main img {
        width: 50px;
        height: 50px;
    }

    .station-name {
        font-size: 14px;
    }

    .station-level {
        font-size: 30px;
    }

    .odometer-digits {
        font-size: 18px;
        gap: 1px;
        font-weight: 900;
        letter-spacing: 0.5px;
    }

    .odometer-digit {
        height: 24px;
        width: 16px;
        border-radius: 4px;
    }

    .odometer-digit.decimal-point {
        font-size: 18px;
    }

    .odometer-display {
        padding: 8px 12px;
        border-radius: 8px;
    }

    .income-display {
        padding: 10px 14px;
        min-width: 100px;
        border-radius: 12px;
    }

    .income-value {
        font-size: 12px;
    }

    .income-label {
        font-size: 10px;
    }
    
    .stats-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .stat-icon {
        font-size: 14px;
        margin-right: 6px;
    }
    
    .stat-name {
        font-size: 10px;
    }
    
    .stat-count, .stat-income {
        font-size: 9px;
    }
}

/* Mining Counter Section */
.mining-counter-section {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mining-counter-card {
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.9), rgba(0, 40, 80, 0.9));
    border: 2px solid rgba(100, 181, 246, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 280px;
}

.counter-label {
    color: rgba(100, 181, 246, 0.8);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.counter-value {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(100, 181, 246, 0.5);
}

.counter-rate {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.collect-button {
    background: linear-gradient(135deg, #1e3c72, #2a5298, #64b5f6);
    border: 2px solid rgba(100, 181, 246, 0.6);
    border-radius: 20px;
    padding: 18px 35px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 
        0 8px 25px rgba(100, 181, 246, 0.3),
        0 4px 15px rgba(30, 60, 114, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    min-width: 220px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.collect-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.collect-button:hover::before {
    left: 100%;
}

.collect-button:hover {
    background: linear-gradient(135deg, #2a5298, #64b5f6, #90caf9);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(100, 181, 246, 0.5),
        0 8px 25px rgba(30, 60, 114, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(144, 202, 249, 0.8);
}

.collect-button:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.collect-icon {
    font-size: 20px;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.collect-text {
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.collect-amount {
    font-size: 12px;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile responsiveness for mining counter */
@media (max-width: 480px) {
    .mining-counter-card {
        min-width: 250px;
        padding: 15px;
    }
    
    .counter-value {
        font-size: 20px;
    }
    
    .collect-button {
        min-width: 200px;
        padding: 10px 28px;
        font-size: 14px;
        gap: 10px;
        margin-top: 10px;
        width: 100%;
    }
    
    .collect-icon {
        font-size: 18px;
    }
    
    .collect-text {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .mining-counter-card {
        min-width: 220px;
        padding: 12px;
    }
    
    .counter-value {
        font-size: 18px;
    }
    
    .collect-button {
        min-width: 180px;
        padding: 12px 20px;
        font-size: 13px;
        gap: 8px;
        border-radius: 15px;
    }
    
    .collect-icon {
        font-size: 16px;
    }
    
    .collect-text {
        font-size: 12px;
    }
}