*{
    margin: 0; padding: 0; box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    width: 100%; min-height: 100vh; background: #0a0014;
}

/* HEADER - FIXED */
header{
    background: transparent;
    top: 0; left: 0; width: 100%;
    max-width: 100vw;
    display: flex; flex-direction: row;
    justify-content: space-between;
    padding: 0.5rem 4rem; align-items: center;
    color: #fff; z-index: 9999;
    height: 10vh; position: fixed; padding-top: 1rem;
}

.header-main-info{
    display: flex; flex-direction: row;
    align-items: center; gap: 10px;
}

header img{
    cursor: pointer; width: 2.5rem;
    height: auto; object-fit: cover;
}

header i{
    font-size: 26px;
}

.logo-links{
    display: flex; flex-direction: row; 
    align-items: center; gap: 1rem;
}

a{
    text-decoration: none; color: #fff;
}

.logo-links a:hover{
    border-bottom: 1px solid #fff;
}

header button{
    background: transparent; 
    border: 1px solid #fff;
    border-radius: 16px; outline: none;
    transition: all 0.3s; text-align: center;
    padding: 5px 18px; color: #fff;
    cursor: pointer;
}

header button:hover{
    transform: scale(1.05);
    background: #fff; color: #000;
    box-shadow: 0 0 16px #fff;
}

/* SECTION - HOME */
section{
    width: 100%; min-height: 100vh;
    max-width: 100vw;
}

.home{
    background-image: url(images/background.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    position: relative;
}


.home-info{
    padding: 7rem 5rem; 
}

.home-info h1{
    font-size: 42px;
}

.home-info span{
    color: #ff960b;
}

.home-info p{
    font-size: 16px; padding-top: 12px;
    padding-bottom: 12px; 
    max-width: 30vw;
}

.home-info button{
    border: none; outline: none;
    border-radius: 12px; font-size: 12px;
    padding: 8px 20px; cursor: pointer;
    transition: all 0.3s; font-weight: 700;
    background: #ff960b; color: #fff;
}

.home-info button:hover{
    transform: scale(1.05);
    box-shadow: 0 0 16px #ff960b;
}


.home-crypto-info{
    display: flex; flex-direction: row;
    gap: 1rem; align-items: center;
    position: absolute; right: 10%;
    padding-top: 2rem; 
}

.home-crypto-box{
    display: flex; gap: 8px; cursor: pointer;
    border-radius: 8px; padding: 20px 30px;
    border: 1px solid #fff;
}

.home-crypto-box:hover{
    box-shadow: 0 0 12px #fff;
}

.home-crypto-box-text{
    display: flex; flex-direction: column;
    gap: 2px;
}

.home-crypto-box-text p{
    font-size: 16px; font-weight: 800;
}

.home-crypto-box-text span{
    font-size: 14px; font-weight: 500;
}

.home-crypto-box img{
    width: 2.5rem; height: auto;
}

/* INFO SECTION */

.info{
    display: flex; flex-direction: column;
    align-items: center; 
    background: linear-gradient(180deg, #0a0014 0%, #1a0a2e 50%, #2d1b4e 100%);
    color: #fff;
}

.info-top-text{
    text-align: center; padding-top: 2rem;
}

.info-top-text p{
    padding-top: 14px;
}

.info-top-text span{
    color: #ff960b;
}

.info-boxes{
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    max-width: 700px; gap: 1rem; margin-bottom: 1rem;
}

.info-box{
    border-radius: 12px; padding: 1.5rem;
    color: #fff;
    background: rgba(26, 26, 46, 0.5);
}

.info-box:hover{
    border: 1px solid #ff960b;
}

.info-box-icon{
    display: flex; align-items: center;
    justify-content: center;
    background: #ff960b;
    width: 50px; height: 50px;
    border-radius: 12px; margin-bottom: 10px;
}

.info-box i{
    color: #fff; 
}

.info-box p{
    opacity: 0.8; font-size: 14px; 
    line-height: 1.6;
}

.info-states{
    max-width: 500px; display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem; margin-top: 1.5rem; margin-bottom: 5rem; 
}

.info-state{
    background: rgba(26, 26, 46, 0.5);
    border-radius: 12px;
    padding: 1rem 0.5rem; border: 1px solid #ff960b;
    text-align: center; font-size: 14px;
    cursor: pointer;
}

.info-state p{
    padding-top: 6px;
}

.info-field{
    border-radius: 16px;
    padding: 1rem 4rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #ff960b;
    margin-bottom: 2.5rem; text-align: center;
}

.info-field span{
    color: #ff960b;
}

.info-field p{ padding-top: 10px; }

.info-field button{
    margin-top: 14px; margin-bottom: 6px;
    padding: 8px 20px; background: #ff960b;
    border: none; outline: none;
    cursor: pointer; color: #fff;
    transition: all 0.3s; border-radius: 14px;
}

.info-field button:hover{
    transform: scale(1.05);
    box-shadow: 0 0 16px #ff960b;
}

/* TRADING | SHOP SECTION */
.shop{
    color: #fff; display: flex; flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, #0a0014, #1a0a2e);
}

span{
    color: #ff960b;
}

.shop-logo{
    text-align: center; padding-top: 2.5rem;
}

.shop-logo p{
    opacity: 0.8; font-size: 14px;
    padding-top: 10px;
}

.shop-search-box{
    border-radius: 12px;
    padding: 2rem; margin-top: 2rem;
    background: linear-gradient(to bottom right, #1a1a2e, #0f0f1e);
}

.search-field{
    display: flex; flex-direction: row;
    width: 100%; gap: 12px;
    width: 400px; 
}

.shop-search-box h4{
    text-align: center; padding-bottom: 1.5rem;
    font-size: 22px;
}

.search-field input{
    background: #0a0014; border-radius: 12px;
    padding: 14px; width: 70%; outline: none;
    border: 1px solid #374151; /* gray-700 */
    color: #fff;
}

.search-field input::placeholder{
    color: #fff; font-size: 10px;
}

.search-box{
    display: flex; flex-direction: row;
    align-items: center; justify-content: center;
    gap: 6px; color: #fff; background: #ff960b;
    border-radius: 12px; padding: 0.5rem 1rem;
    cursor: pointer; transition: all 0.3s;
}

.search-box:hover{
    transform: scale(1.05); 
    box-shadow: 0 0 8px #ff960b
}

/* CRYPTO TRADING */
.trading-logo{
    text-align: center; padding-top: 3rem;
    font-size: 22px;
}

.shop-crypto-boxes{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    width: 900px; gap: 15px; padding-top: 2.5rem;
    margin-bottom: 2rem;
}

.shop-crypto-box{
    border-radius: 8px;
    background: rgba(26, 26, 46, 0.5);
    padding: 1rem; padding-right: 3rem; display: flex; flex-direction: column;
    align-items: flex-start;
}

.shop-crypto-box-top{
    display: flex; flex-direction: row;
    align-items: flex-start; gap: 8px
}

.crypto-name{
    display: flex; flex-direction: column;
    gap: 6px;
}

.crypto-name p{
    opacity: 0.7;
}

.crypto-price{
    padding-top: 18px;
}

.crypto-price h6{
    font-size: 19px; font-weight: 700;
    padding-top: 8px;
}

.shop-login{
    border-radius: 16px;
    padding: 1rem 4rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #ff960b;
    margin-bottom: 4.5rem; text-align: center;
    margin-top: 0.5rem;
}

.shop-login p{
    opacity: 0.8; line-height: 1.4;
    padding-top: 8px;
    text-align: center;
}

.login-buttons{
    padding-top: 12px; display: flex;
    justify-content: center; gap: 14px;
}


.login-buttons button{
    margin-top: 14px; margin-bottom: 6px;
    padding: 10px 24px; background: #ff960b;
    border: none; outline: none;
    cursor: pointer; color: #fff;
    transition: all 0.3s; border-radius: 14px;
}

.login-buttons button:nth-child(2){
    background: transparent;
    border: 1px solid #ff960b;
    padding: 10px 2.5rem;
}

.login-buttons button:hover{
    transform: scale(1.05);
    box-shadow: 0 0 16px #ff960b;
}

/* FOOTER */
footer{
    color: #fff; width: 100%; min-height: 30vh;
    background: #000;
    padding-top: 2rem; padding-bottom: 1.5rem;
}

.footer-info{
    display: grid; gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding-bottom: 2rem;
    border-bottom: 1px solid #2d1b4e;
    max-width: 900px; margin: 0 auto;   
}

.footer-info-el{
    display: flex; flex-direction: column;
    gap: 4px;
}

.footer-logo{
    display: flex; flex-direction: row;
    align-items: center; gap: 4px; padding-bottom: 5px;
}

.footer-logo i{
    font-size: 28px;
}

footer h6{
    font-size: 20px; padding-bottom: 6px;
}

footer a, p{
    opacity: 0.8; 
}

footer a:hover{
    color: #ff960b;
}

.footer-bottom{
    text-align: center; padding-top: 1.5rem; padding-bottom: 0.5rem;
}

/* POP-UP BOX */
.searched-crypto-box.windowManage {
    display: block;
}

/* .bodyBlur{
    
} */

.searched-crypto-box{
    display: none; 
    border-radius: 12px; border: 1px solid #ff960b;
    padding: 1rem; position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(#1a1a2e, #0f0f1e);
    box-shadow: 0 0 8px #ff960b;
}

.searched-box-logo{
    display: flex; flex-direction: row;
    align-items: center; justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #2d1b4e;
}

.searched-box-logo i{ cursor: pointer; transition: all 0.3s;}

.searched-box-logo h4{
    font-weight: 700; color: #ff960b;
}

.searched-box-main{
    display: flex; flex-direction: column;
    justify-content: center; gap: 4px;
    padding-top: 10px; align-items: center;
}

.searched-box-main h2{color: #ff960b; font-weight: 800; font-size: 28px; padding-top: 6px}
.searched-crypto-box p{font-size: 13px; opacity: 0.8;}
.crypto-count-box h3{padding-top: 6px; color: #ff960b; font-size: 22px;}

.searched-crypto-info{
    width: 100%; padding: 1rem;
    text-align: center; margin-top: 1rem; margin-bottom: 0.5rem;
    background: linear-gradient(to right, #0a0014, #1a0a2e);
    border-radius: 8px;
}

.crypto-count-box{
    border-radius: 8px; width: 100%;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    background: #0a0014; padding: 1rem;
}

.crypto-count-main{padding-bottom: 14px; margin-bottom: 10px; border-bottom: 1px solid #2d1b4e;}

.crypto-count-field{
    display: flex; flex-direction: row;
    align-items: center; justify-content: center;
    gap: 8px; padding-top: 10px;
}

.crypto-count-field input{
    text-align: center; height: auto;
    border-radius: 8px; border: none; outline: none;
    max-width: 30%; padding: 2px 6px;
    background: linear-gradient(to bottom right, #1a1a2e, #0f0f1e);
    color: #fff; 
}

input[type=number]{
    -moz-appearance: textfield;
}

.searched-box-button{width: 100%;}

.searched-box-button button{
    margin-top: 14px; margin-bottom: 6px;
    padding: 8px 20px; background: #ff960b;
    border: none; outline: none; width: 100%;
    cursor: pointer; color: #fff;
    transition: all 0.3s; border-radius: 10px;
}

.searched-box-button button:hover{
    transform: scale(1.03);
    box-shadow: 0 0 16px #ff960b;
}