@font-face {
    font-family: 'SquidGame';
    src: url('/assets/fonts/Game Of Squids.ttf') format('truetype');
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    /* background-color: black; */
    /* background: linear-gradient(to right, #890737, black); */
    background: linear-gradient(to left, #E51B50, #000);
    text-align: center;
    color: white;
    overflow-x: hidden;
   
}

.profile_flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.span_color{
    color: #E51B50;
}

.center{
    display: flex;
    justify-content: center;
}

a{
    text-decoration: none;
    color: white;
}
/* 
h1 {
    font-family: 'SquidGame', sans-serif;
    font-size: 60px;
    letter-spacing: 5px;
    text-transform: uppercase;
}
p {
    font-family: 'SquidGame', sans-serif;
    font-size: 60px;
    letter-spacing: 5px;
    text-transform: uppercase;
    
} */

.out_header{
    width: 100%;
    background-color: purple;
    display: flex;
    justify-content: center;
}

.in_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 1500px;
    padding: 10px 20px;
    position: relative;
}

.logo{
    width: 150px;
    height: 100px;
}

.title_text{
    font-family: 'SquidGame', sans-serif;
}

.title_btn{
    margin-top: 1.2rem;
    font-family: 'SquidGame', sans-serif;
    background: linear-gradient( rgba(229, 27, 80, 1), rgba(0, 0, 0, 1) 30%);
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.5s;
}

.title_btn:hover{
    color: saddlebrown;

}

.landing_page{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.landing_logo{
    
    position: relative;
    margin-top: 270px;
    width: 500px;
}

.body_bg{
    position: relative;
        background: linear-gradient(to top, rgba(229, 27, 80, 1), rgba(229, 27, 80, 0) 30%), 
                    url('./img/bg.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100vh;
}

.landing_page div p{
    width: 350px;
    margin-bottom: 8%;
}

@media (max-width: 480px) {
    .body_bg{
            position: relative;
            background: url('./img/mobilebg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            height: 100vh;
    }

    .landing_logo{
    
        position: relative;
        margin-top: 5vh;
        width: 100%;
    }

    .landing_page div{
        position: absolute;
        bottom: 20px;
        border-radius: 16px;
        padding: 20px 10px;
        background-color: rgba(128, 128, 128,.3);
        width: 90%;
        margin-bottom: 1rem;
    }
    .landing_page div p{
        max-width: 350px;
        width: 100%;
        margin-bottom: 20px;
    }
    .title_btn{
        margin-top: 10px;
        font-family: 'SquidGame', sans-serif;
        background: linear-gradient( rgba(229, 27, 80, 1), rgba(0, 0, 0, 1) 30%);
        padding: 10px 20px;
        border-radius: 5px;
        transition: 0.5s;
    }
}

/* ============================= */

.dashboard-container {
    display: flex;
    height: 100vh;
    max-width: 1700px;
    width: 100%;
}

.sidebar {
    position: fixed;
    width: 250px;
    background: transparent;
    color: white;
    padding: 20px;
    text-align: start;
    font-family: 'SquidGame', sans-serif;
    
}

.sidebar h2 {
    margin-bottom: 20px;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin: 10px 0;
}

.sidebar ul li .navs {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: 0.5s;
    background: transparent;
    border: none;
    width: 100%;
    text-align: start;
    font-family: 'SquidGame', sans-serif;

}

.sidebar ul li .navs:hover {
    background: #E51B50; 
    text-shadow: 0px 0px 5px black;
}



.content {
    width: 100%;
    margin-left: 250px;
    padding: 20px;
}

.header_one {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-radius: 5px;
    width: 100%;
}

.coins{
    display: flex;
    align-items: center;
    gap: .5rem;
}

.coins img{
    width: 40px;
}

.coins p{
    font-size: 1.5rem;
}

.profile_one {
    /* background: #3498db;
    color: white;
    padding: 10px 15px;
    border-radius: 5px; */
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    color: white;
}
.profile_one .user_details{
    text-align: end;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.profile_one img{
    width: 50px;
    border: 2px solid #1B4D3E;
    border-radius: 5px;
    box-shadow: 0px 0px 5px black;
}

/* ============================ */

.post-container h2{
    font-family: 'SquidGame';
}

.post-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Main Post Container */
.post-container {
    color: white;

    flex: 2; /* Takes more space */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Main Post Image */
.post-image {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.post-header{
    display: flex;
    text-align: center;
    justify-content: space-between;
}

.post-header a{
    color: white;
    font-size: 24px;
}

/* More Posts Sidebar */
.related-posts {
    flex: 1; /* Takes less space */
    background: #E51B50;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.related-posts h3 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
    font-family: 'SquidGame';

}

.related-post h4{
    font-family: 'SquidGame';
    text-align: start;
    color: white;
}
/* Individual Related Post */
.related-post {
    background-color: #000;
    margin-bottom: 15px;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.related-post:hover {
    transform: scale(1.05);
}

/* Related Post Image */
.related-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    transition: 0.3s;
}

.related-image:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .post-wrapper {
        flex-direction: column;
        gap: 30px;
        background-color: #000;
    }

    .post-container,
    .related-posts {
        width: 100%;
    }

    .post-image {

        height: 250px;
    }

    .related-image {
     
        height: 150px;
    }
}

/* ============================ */
.ranking-container {
    width: 100%;
    margin: 50px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Top 3 Styling */
.top-three {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.surprise{
    width: 350px;
    position: absolute;
    
    right: -200px;
    bottom: 0;
    z-index: -1;
}

.surprise2{
    width: 350px;
    position: absolute;
    
    left: -200px;
    bottom: 0;
    z-index: -1;
}

.rank {
    width: 250px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 5px solid #1B4D3E;
    text-shadow: 0px 0px 5px black;
}

.rank img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 10px;
    font-size: 21px;
}


.user-info p{
    font-size: 18px;
}
.position {
    font-size: 18px;
    font-weight: bold;
    display: block;
}

/* Specific Colors for Top 3 */
.first {
    background: #ffd700;
}

.second {
    margin-top: 2.5rem;
    background: silver;
}

.third {
    margin-top: 4rem;
    background: #cd7f32;
}

/* Other Rankings */
.other-rankings {
    
    width: 70%;
    background: #E51B50;
    border: 5px solid #12776D;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.other-rankings ul {
    list-style: none;
    padding: 0;
}

.other-rankings li {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
}

.other-rankings li:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 600px) {
    .top-three {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        margin-bottom: 0;
    }


    .second{
        order: 1;
    }
    .third{
        order: 3;
    }
    .rank {
        width: 100%;
    }

    .rank img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin: 10px;
        font-size: 21px;
    }
    .user-info{
        display: flex;
        align-items: center;
    }

    .user-data{
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .user-info p{
        font-size: 24px;
    }

    .points{
        font-size: 12px;
    }

    .surprise{
        display: none;
        width: 50px;
        position: absolute;
        
        right: 00px;
        bottom: 0;
        z-index: -1;
    }
    
    .surprise2{
        display: none;
        width: 50px;
        position: absolute;
        
        left: 0px;
        bottom: 0;
        z-index: -1;
    }
    
}

.main-content {
    margin-top: 20px;
    padding: 20px;
    border-radius: 5px;
}


.countdown-section {
    position: relative;
    margin-top: 20px;
    padding: 20px;
    /* background: url('./img/time_bg.jpg'); */
    background-color: black;
    background-size: cover;
    text-align: center;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.countdown-section .countdown_text{
    margin-top: 35px;
    font-family: 'SquidGame', sans-serif;
    font-size: 3rem;
}

.countdown-section h2 span{
    color: #E51B50;
}

.countdown-section .timer{
    display: flex;
    flex-direction: column;
    background-color: rgba(51, 51, 51,0.5);
    padding: 20px;
    border-radius: 10px;
    width: 150px;
    color: white;
}
.countdown-section span{
    font-family: 'SquidGame', sans-serif;

}
.countdown {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #E51B50; /* Squid Game theme color */
}

.logo_one{
    display: none;
}

.bottom-nav{
    display: none;
}

.technodium{
    display: none;
}
.countdown-section .countdown_text_p{
    display: none;
}
@media (max-width: 768px) {
    .bottom-nav {
        position: fixed;
        z-index: 99;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #12060A; /* Dark background */
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 15px 0;
        box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .nav-item {
        color: rgba(255, 255, 255, 0.5);
        font-size: 24px;
        text-decoration: none;
        position: relative;
        transition: 0.3s;
    }
    
    .nav-item.active {
        color: white;
        background: radial-gradient(circle, rgba(255,255,255,0.2) 30%, transparent 70%);
        padding: 10px;
        border-radius: 50%;
    }
    
    body{
        background: black;
        overflow-x: hidden;

    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 10px;
        border-radius: 5px;
        
    }
    
    .coins{
        display: none;
    }

    .logo_one{
        display:inline;
        object-fit: cover;
        width: 75px;
        height: 75px;
        margin-top: -.5rem;
    }
    .sidebar {
        display: none;
    }




    .countdown-section .countdown_text{
        font-size: 2rem;
        color: transparent;
    }
    .countdown-section .countdown_text span{
        font-size: 1.5rem;
        color: transparent;
    }

    .countdown-section .countdown_text_p{
        display: block;
        position: absolute;
        text-align: start;
        left: 40px;
        font-weight: bold;
        text-shadow: 0px 0px 5px #000;
    }


    .content{
        margin: 0;
        padding: 0;
    }

    .countdown {
        margin-top: 2rem;
        display: flex;
        justify-content: center;
        gap: .5rem;
        font-size: 1.5rem;
        font-weight: bold;
        color: #E51B50; /* Squid Game theme color */
    }
    
    .countdown-section {
     background: url('./img/bg1.png'); 
     background-position: center;
     background-size: cover;
        width: 100%;
        border-radius: 0;
        margin-top: 0;
    }

    .countdown-section .timer{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 70px;
        font-size: 15px;
        text-align: center;
        background-color: #000;
        box-shadow: 0px 0px 5px #E51B50;
    }

    .countdown-section .timer span{
        font-family: 'SquidGame', sans-serif;
        font-size: 15px;
    }

    .technodium{
        display: block;
        position: absolute;
        width:  250px;
        left: -15px;
    }
    /* .countdown-section .timer{
        display: flex;
        flex-direction: column;
        background-color: rgba(51, 51, 51,0.5);
        padding: 20px;
        border-radius: 10px;
        width: 150px;
        color: white;
    } */
    

}


.game-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.game-grid-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-position: center;
    background-size: cover;
}

.game-grid-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    transition: filter 0.3s ease;
}

.game-grid-item:hover{
    box-shadow: 0px 0px 5px gold;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark grey with 50% opacity */
}

.game-grid-item h3 {
    position: absolute;
    z-index: 1;
    font-size: 2rem;
    font-weight: bold;
    padding: 20px;
    font-family: 'SquidGame', sans-serif;
    text-shadow: 0px 0px 5px #000;
}

.game-grid-item:hover::before {
    filter: brightness(0.9);
}

@media screen and (max-width: 768px) {
    .game-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-grid-item {

        height: 200px;

    }
    .game-grid-item h3 {
        font-size: 1rem;
    }
    
}

/* Responsive for Mobile */
@media screen and (max-width: 480px) {
    .game-grid-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.time-section {
    margin-top: 20px;
    padding: 15px;
    background: #f2f2f2;
    text-align: center;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.time-section h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}
#current-time {
    font-size: 1.2rem;
    font-weight: bold;
    color: #E51B50; /* Squid Game theme color */
}

.cta{
    position: relative;
    margin: 120px 0 10px 0;
    background-color: #12776D;
    width: 100%;
    height: 10px;
}
.cta .cta_about{
    position: absolute;
    padding: 10px 30px;
    top: -50px;
    background-color: #12776D;
    font-size: 1.2rem;
    border-top-left-radius: 3rem;
}

.cta .dalgona{
    position: absolute;
    padding: 10px 30px;
    top: -50px;
    background-color: #12776D;
    font-size: 1.2rem;
    border-top-left-radius: 3rem;
    right: 0;
}
/* ====================================== */
.about_section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0px;
    padding: 20px;
    /* background: url('./img/time_bg.jpg'); */
    background-color: black;
    background-size: cover;
    text-align: center;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    gap: 3rem;
}

.about_left img{
    width: 250px;
}


.about_right_content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: justify;
    gap: 5rem;
}

.about_right_content > * {
    flex: 1; /* Ensures both children take up equal space */
    max-width: 50%; /* Optional: Prevents exceeding half of the container */
}

.about_right_content_right h1{
    font-family: 'SquidGame';
    text-shadow: 0px 0px 5px #E51B50;
}

.about_right_content_left h1{
    font-family: 'SquidGame';
    text-shadow: 0px 0px 5px #E51B50;
    transition: .5s;
}

.register_btn{
    font-family: 'SquidGame';

    background-color: #E51B50;
    padding: 15px 40px;
    border-radius: 16px;
    border: 2px solid teal;

}


.register_btn:hover{
    box-shadow: 0px 0px 5px gold;
}

.extend{
    display: none;
}
@media (max-width: 768px) {
    .extend{
        display: block;
    }
    .about_section{

        flex-direction: column;
    }

    .about_right_content{
        flex-direction: column;
        gap: 0rem;
    }

    .about_right_content > * {
        max-width: 100%; /* Optional: Prevents exceeding half of the container */
        padding: 2rem;
    }
}
.dalgona_section{

   display: flex;
   align-items: center;
   justify-content: center;
    flex-direction: column;
    position: relative;
    margin-top: 0px;
    padding: 20px;
    /* background: linear-gradient(
        rgba(255, 105, 180, 0.7) 0%,   
        rgba(0, 0, 0, 0.7) 10%,  
        rgba(0, 0, 0, 0.7) 20%,      
        rgba(0, 0, 0, 0.7) 90%,  
        rgba(255, 105, 180, 0.7) 100%  
      ), 
      url('./img/dalgona.png');
     */
    background: transparent;
    background-size: cover;
    background-position: center;
    

    height: 60vh;
    text-align: center;
    border-radius: 8px;
}

.dalgona_title{
    text-align: start;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-shadow: 0px 0px 5px black;
}
.dalgona_container_main{
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 20px;
}

.dalgona_container{
    border: 1px solid gold;
    background: black;
    width: 300px;
    height: 250px;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
}

.dalgona_coin{
    position: absolute;
    width: 250px;
    z-index: -1;
    bottom: -20%;
    left: -10%;
    transform: rotate(-40deg);      
      
}

.dalgona_coin1{
    position: absolute;
    width: 250px;
    z-index: -1;
    top: 5%;
    right: -10%;
    transform: rotate(40deg);      
      
}

.dalgona_container p{
    margin-top: 1rem;
    text-align: justify;
}

@media (max-width: 768px) {
    .dalgona_section{

        margin-top: 18rem;
    }
    .dalgona_container_main{
        display: grid;
        grid-template-columns: repeat(1, 1fr); /* 3 equal columns */
        gap: 20px;
    }


    .dalgona_coin{
        position: absolute;
        width: 50px;
        z-index: -1;
        bottom: 10px;
        left: 10px;
        transform: rotate(-40deg);      
          
    }
    
    .dalgona_coin1{
        position: absolute;
        width: 50px;
        z-index: -1;
        top: 40px;
        right: 20px;
        transform: rotate(40deg);      
          
    }
    
}
/* ================= */
.login-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: 20px;
    background-color: black;
    background-size: cover;
    text-align: center;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.login-container, .image-container {
    flex: 1;
    max-width: 50%;
}

.login-container {
    padding: 40px 100px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.login-container h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.login-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-container label {
    font-weight: 600;
    text-align: left;
    display: block;
    margin-bottom: 5px;
    font-family: 'SquidGame', sans-serif;

    color: white;
}

.login-container input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: border 0.3s;
    color: #12776D;
}

.login-container input:focus {
    border-color: green;
    outline: none;
}

.login-container button {
    background: linear-gradient(to right, #E51B50, #000);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.5s;
    font-family: 'SquidGame', sans-serif;

}

.login-container button:hover {
    background: linear-gradient(to right, #000, #E51B50);
    transform: scale(1.05);
}

.login-container span{
    font-family: 'SquidGame', sans-serif;
    color: white;
    text-shadow: 0px 0px 5px #E51B50;
}

.login-container a{
    text-align: start;
}


.image-container img {
    width: 100%;
    height: 500px;
    margin-top: -2rem;
    object-fit: cover;
}

.login-container select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: white;
    color: black;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: border 0.3s, box-shadow 0.3s;
    cursor: pointer;
    appearance: none; /* Removes default dropdown styling */
}

.login-container select:focus {
    border-color: green;
    outline: none;
    box-shadow: 0 0 5px green;
}

.login-container option {
    background-color: #000;
    color: white;
    font-size: 16px;
}

.login-container select::-ms-expand {
    display: none; /* Removes the default dropdown arrow in IE */
}

@media (max-width: 768px) {
    .login-section {
        flex-direction: column; /* Stack items vertically */
        padding: 15px;
    }

    .login-container, .image-container {
        max-width: 100%; /* Full width */
        flex: none;
    }

    .login-container {
        padding: 20px; /* Reduce padding */
    }

    .image-container img {
        height: 350px; /* Adjust image height */
        margin-top: 0; /* Remove negative margin */
    }
}

/* For screens smaller than 480px (Phones) */
@media (max-width: 480px) {
    .login-container {
        padding: 15px; /* Less padding */
    }

    .login-container h2 {
        font-size: 20px; /* Smaller heading */
    }

    .login-container input {
        padding: 8px; /* Smaller input fields */
        font-size: 14px;
    }

    .login-container button {
        font-size: 14px;
        padding: 10px; /* Smaller button */
    }

    .image-container img {
        height: 250px; /* Adjust image height */
    }

    .span_color{
        font-size: .9rem;
    }
}

.shop-container {
    max-width: 1200px;
    margin: 0 auto;
}
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}
.shop-item {
    background: radial-gradient(circle at bottom, #555050, #0d0d0d);    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.shop-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}
.shop-item h2 {
    font-size: 18px;
    margin: 10px 0;
    text-align: start;
}
.shop-item p {
    font-size: 16px;
    color: green;
}
.out-of-stock {
    color: red;
}
.shop-button {
    width: 100%;
    display: inline-block;
    padding: 10px 15px;
    background: #E51B50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    border: 2px solid white;
    font-family: 'SquidGame';
}
.shop-button.disabled {
    background: gray;
    cursor: not-allowed;
}

.profile_image{
    background-color: pink;
    box-shadow: 0px 0px 5px white;
}

.rank_section{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'SquidGame';
    font-size: 2rem;
}

@media (max-width: 480px) {
    .shop-grid {
        margin: 2rem;
        grid-template-columns: repeat(2, 1fr);
    }
    .shop-button {

    }

    .shop-item {
        background: radial-gradient(circle at bottom, #555050, #0d0d0d);    border: 1px solid #ddd;
        border-radius: 8px;
        padding: 5px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    }

    .shop-item img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        object-position: center;
        border-radius: 5px;
    }

    .shop-item h2 {
        font-size: 13px;
        margin: 10px 0;
        text-align: start;
    }

    .shop-button {
        padding: 5px 15px;
        margin-top: 0px;
        font-family: 'SquidGame';
        font-size: .6rem;
    }
}