* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #98eef9;
    color: #050000;
}

.unique-menu {
    width: 100%;
    background: linear-gradient(90deg, #060606, #050606);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.unique-menu h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.unique-menu .menu-right a {
    margin-left: 25px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 12px;
    transition: all 0.3s;
}

.unique-menu .menu-right a:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.unique-menu .menu-right .signout {
    background: #ff6f61;
    color: #fff;
    font-weight: bold;
}

.unique-menu .menu-right .signout:hover {
    background: #ff3b2f;
}


@media (max-width: 768px) {
    .unique-menu {
        display: none; 
    }

    .proceed-shop-container {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .proceed-shop-container {
        margin-top: 80px; 
    }
}




.proceed-shop-container {
    text-align: center;
    margin-top: 150px;
    margin-bottom: 50px;
}

.proceed-shop-btn {
    background: linear-gradient(135deg, #ff6f61, #facc15, #22d3ee);
    background-size: 300% 300%;
    padding: 18px 45px;
    border: none;
    border-radius: 30px;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    cursor: pointer;
    transition: all 0.5s;
    animation: gradientShift 4s ease infinite;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.proceed-shop-btn:hover {
    transform: scale(1.1) rotate(-1deg);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

@keyframes gradientShift {
    0% { background-position: 0% 25%; }
    50% { background-position: 50% 75%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
    .proceed-shop-container {
        margin-top: 260px; 
    }
}

@media (max-width: 780px) {
    .proceed-shop-container {
        margin-top: 300px;
    }
}

.home-container {
    padding: 20px 40px;
    max-width: 1300px;
}

.deposit-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
    margin: 50px 0;
}

.deposit-btn {
    background-color: #121212;
    box-sizing: 1px;
    border-color: linear-gradient(90deg, #6366f1, #22d3ee);
    padding: 10px 15px;
    font-size: 10px;
    cursor: pointer;
    color: rgb(163, 165, 165);
    transition: transform 0.2s;
    min-width: 150px;
    text-align: center;
}

.deposit-btn:hover {
    transform: scale(1.05);
}



.info-section {
    padding: 0 15px;
}

.info-box.full-info {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    
}

@media (max-width: 768px) {
    .info-section {
        padding: 0 10px;
    }

    .info-box.full-info {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 0; 
    }

    .info-box.full-info {
        width: 100vw;              
        max-width: 100vw;
        margin-left: calc(-50vw + 50%); 
        margin-right: calc(-50vw + 50%);
        border-radius: 0;          
        padding: 18px;
    }
}

@media (max-width: 1024px) {
   
    .deposit-section {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .charts-section, .deposit-section {
        grid-template-columns: 2fr;
    }
    .proceed-shop-container {
        margin-top: 80px;
    }
}
