@charset "UTF-8";
:root {
    --cws-gold: #b9812c;
    --cws-black: #000;
}
body,html{
    font-size: 1rem;
}
#app-body,#app-end{
    position: relative;
}

#app-head{
    position: fixed;
    width: 100%;
    z-index: 9999;
    background-color: #ffffffd5;
    left:0;
    top:0;
    min-height: 50px;
}
#app-head-panel{
   position: relative;
   margin: 9px 25px;
   display: flex;
   align-items: center;
   gap: 10px;
}
#h-item-1{
 width: auto;
}
#h-item-2{
    width: 90%;
}
#mobile-bar-panel{
    display: none;
}
#mobile-menu-panel{
    display: none;
}
#mob-btn-wrap{
    color: #000; 
    font-size: 2rem;
    text-align: center;    
}
#pc-menu-panel{
    position:absolute;
    top: 5px; 
    right: 10%;
    font-size: 1.2rem;
}
.pc-nav-panel{
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 750;
}
.pc-nav-panel a:hover{
    color: #373741;
}
#pc-bar-panel{
    display: flex;
    align-items: center;
    position:absolute;
    gap: 15px;
    top: -2px; 
    right: 0;
    font-size: 1.6rem;
}
#m-btn-wrap{
    display: none;
}

#app-body{
    margin: auto;
    margin-top: 30px;
    width:85%;
    margin-bottom: 30px;
}
#app-end{
    background-image: linear-gradient(65deg, #5a5a59, #dad9d9 60%);
    min-height: 100px;
    width:100%;
    margin: auto;
}
.cws-brand-panel{
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}
.cws-brand-icon{
    background-image: url("../icon/favicon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    background-position: center;

}
.cws-brand-title{
    font-family: Inter, sans-serif;
    background-image: url("../icon/cws-t-icon.webp");
    background-size: contain;
    background-repeat: no-repeat;
    width: 150px;
    height: 40px;
    background-position: center;

}
h1,h2 {
 font-size: clamp(1.5rem, 5vw, 45px);
  font-weight: 600;
  background: -webkit-linear-gradient(#0a0a0a, #b39302);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#h-intro-panel{
    position: relative;
    min-height: 450px;
    padding-top: 65px;
    background-image: linear-gradient(70deg, #000000, var(--cws-gold) 60%, purple);
}
.coincon{
    width: 150px;
    height: 150px;
    opacity: 0.2;
    position: absolute;
    animation-name: dangle;
    animation-duration: 8s;
    animation-timing-function:ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    z-index: 1;
}
@keyframes dangle {
    from{
        transform: scaleX(1) translateX(-2px);
    }
    to{
       transform: scaleX(-1) translateX(10px);
    }
    
}
.btc{
    left: 45px;
    top: 80px;
}
.ltc{ 
    left: 60%;
    top: 50px;
}
.eth{
    right: 10px;
    top: 80px;
}
.sol{
    left: 50px;
    bottom: 20px;
}
.ada{
    right: 140px;
    bottom: 190px;
}
.ava{
    right: 60px;
    bottom:40px;
}
.matic{
    left: 20%;
    top: 220px;
}
.bnb{
  right: 37%;
  bottom: 20px;  
}
.coin-ico{}
.intro-txt-panel{
    z-index: 2;
    position: absolute;
    left:0;
    top:75px;
    width:100%;
    height: 100%;
    padding:8px;
}
.intro-tx{
    font-size: clamp(2rem, 4vw, 4rem);
    color:#fff;
    font-weight: 800;
    text-shadow: 0 2px 0 #000;
    text-align: center;
}
.text-grad {
  color: #292CCF;
  background-image: linear-gradient(45deg, #292CCF , #D531EB 50%, #E85698 100%);
   background: -webkit-linear-gradient(45deg, #292CCF , #D531EB 50%, #E85698 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.intro-info{text-align: center; font-weight: 800; color:#fff; font-size: 1.2rem;text-shadow: 0 2px 0 #000;}

.lnk-btn{
    text-align: center;
    font-weight: 600;
    padding:15px;
    background-image: linear-gradient(45deg, #000,  var(--cws-gold));
    color: #fff;
    border-radius: 7px;
    border: solid 2px var(--cws-gold);
    display: inline-block;
    
}
.lnk-btn:hover{
    transform: scale(1.05);
    box-shadow: 0 12px 4px #000;
    transition: transform 0.3s ease-in-out;
}
.act-panel{
    text-align: center;
    margin:20px;
}
.launch-countdown{
    margin-bottom: 50px;
    border: 1px solid var(--cws-gold);
    border-radius: 5px;
    box-sizing: border-box;
    padding: 15px 10px 30px 10px;
}
.launch-countdown h1, .launch-countdown h2{
    text-align: center;
    font-weight: 700;
    font-size: clamp(1.5rem, 5vw, 65px);
}
#timer-panel{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

#timer-panel *>span{
    font-size: 1.3rem;
}
#timer-panel div span{
 display: block;
 text-align: center;
}
#timer-panel div span:first-child{
    font-size: 1.7rem;
    font-weight: 700;
}
.center{text-align: center;}
.snapshot{display: flex; justify-content: center;}

.m-bottom-50{ margin-bottom: 50px;}
.snapshot-desc{
    margin: 20px 0;
    font-size: 1.2rem;
    padding: 10px;
    background-color: #d8f1f1;
    font-weight: 400;
    border-radius: 6px;
}
.demo-shop{
}
.abt-cryptowell{
    text-align: center;
    font-size: 1.23rem;
}
.abt-keyword{
    padding: 10px;
    border-radius: 6px;
    background-color: #f8f1e6;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 20px 0;
}
.dev-map{
    margin: 20px 0;
}
.map-canvas{
 position: relative;
 margin: 20px 0;
 background-color: #000;
 border-radius: 6px;
 padding: 36px;
 box-sizing: border-box;
  display: flex;
  justify-content: space-evenly;
  gap: 9px;
  flex-wrap: wrap;
}
.map-shot{
    position: relative;
    border-radius: 6px;
    border: 1px solid #333333;
    background-color: #37374163;
    box-sizing: border-box;
    padding:9px;
}
.map-shot > *:first-child{
    font-weight: 600;
    background: linear-gradient(180deg, #03b41b 0%, #ad0182 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
}
.map-shot > *:nth-child(2){
    color: rgb(110, 110, 110);
    font-size: 0.9rem;
}
.map-shot > *:last-child{
    font-weight: 700;
    color:#373741;
}
.how-it-works{
    border: 1px solid var(--cws-gold);
    box-sizing: border-box;
    padding: 20px;
    border-radius: 6px;
    background-color: transparent;
    box-shadow: 0 13px 42px -17px #706b3c;
    font-size: 1.3rem;
}
.hiw-steps{
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 10px;
    font-size: 1.2rem;
    margin: 15px 0;
    
}
.hiw-steps>div:first-child{
    font-size: 1.2rem;
    font-weight: 700;
}
.tips{
    font-size: 1rem;
    color: silver;
}
.faq h3{
    font-weight: 670;
    color:#f00;
    font-size: 1.45rem;
    background-color: rgb(241, 241, 241);
    padding: 4px 10px;
    cursor: pointer;   
}
.faq h3:active{
    border: 1px solid var(--cws-gold);
}
.faq-item{
    margin: 20px 0;
}
.fans{
    color: rgb(49, 49, 49);
    font-size: 1.190rem;
    background-color: rgb(241, 241, 241);
    padding: 4px 10px;
    border-radius: 4px;
    display: none;
}
.hiw-diag{
text-align: center;
margin: 20px 0;
}
.hiw-diag img{display: inline-block}
.social-net {
    display: flex;
    justify-content: center;
    gap:10px;
    flex-wrap: wrap;
}
.social-net>a{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border: 1px solid silver;
    border-radius: 4px;
    padding: 15px;
}
.social-net a:hover{background-color: #c9c9c9;}
.whatsapp{
    width:96px;
    height: 96px;
    display: block;
    background-image: url("../static/social-icon.webp");
    background-position: 3px ;
    background-repeat: no-repeat;
    
}
.facebook{
    width:96px;
    height: 96px;
    display: block;
    background-image: url("../static/social-icon.webp");
    background-position: -87px ;
    background-repeat: no-repeat;
}
.x{
    width:90px;
    height: 90px;
    display: block;
    background-image: url("../static/social-icon.webp");
    background-position: -173px ;
    background-repeat: no-repeat;
}
.telegram{
    width:96px;
    height: 96px;
    display: block;
    background-image: url("../static/social-icon.webp");
    background-position: -256px ;
    background-repeat: no-repeat;
}
.youtube{
    width:96px;
    height: 96px;
    display: block;
    background-image: url("../static/social-icon.webp");
    background-position: -348px;
    background-repeat: no-repeat;
}
.take-action{

}

.contact-frame{
    display: flex;
    justify-content: space-evenly;
    gap: 55px;
    margin-top: 40px;

} 
.cws-form-item{
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.frm-frame input, .frm-frame button{
    display: inline-block; margin: 10px;
}
.cnt-item1>div{
    margin: 25px;
}
.cnt-item1>div *:last-child{
   color:#0704c4;
}
.cnt-item1>div>*{
    display:block;
    margin: 2px 0;
}
.cnt-tip{
    text-align: center;
    font-weight: 600;
    color: rgb(87, 86, 86);
    font-size: 1.2rem;
}
.app-end-wrap{
    padding: 50px 0 0 0;
}
.blk-title{
    font-weight: 800;
    font-size: 1.6rem;
}
.mailing-list{ 
    background-color: #e3eff8;
    border: solid 1px #cee3fc;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 5px;
}
.mail-list{
    margin: auto;
    width:60%;
    text-align: center;
}
   
.notice-list{}
.site-stats{
    
}
.stats-item{
  display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;  
    gap:10px;
}
.stats-item>div{
    padding:15px;
    box-sizing: border-box;
    border: 1px solid #dddcdc;
    border-radius: 4px;
    background-color: #fffede;
}
.c-hunt{
    background-color: #f0f6f8;
    padding: 25px 9px;
    border-radius: 6px;
    box-sizing: border-box;
    margin: auto;
    width: 80%;
    font-size: 1.4rem;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 8px 20px 1px #000;
}
.legal{
    text-align: center;
}
.copyright{
    text-align: center;
    padding:25px 0;
}

.chat-room{
    background-color: #c9c5acab;
    color: #000;
    padding: 40px;
    box-sizing: border-box;
    border-radius: 5px;
}
.chat-frame{
   margin: 40px auto;
   width: 75%;
}
.chat-window{
 position:relative;
 background-color: #fff;
}
.chat-bar-top{
    background-color: var(--cws-gold);
    position: relative;
    padding:10px;
    display: flex;
    justify-content: space-between;
    color: silver;
}
.chat-canvas{
    max-height: 300px;
    padding: 10px;
    overflow-y: auto;
}
.chat-bar-bottom{
    background-color: rgb(231, 231, 231);
    position: relative;
    padding:10px;
}
.chat-stats{
    display: flex;
    justify-content: space-between;
}
.chat-box-frame{
    border: 1px solid #cccccc;
    margin: 15px 9px;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #fcfcfc;
}
.chat-context{
    font-size: 1.1rem;
    color: #333333;
    text-align: left;
    padding: 10px;
    margin-bottom: 10px;
}
.chat-data{
    box-sizing: border-box;
    border-top:1px solid #cccccc;
    padding: 4px; 
    font-size: .8rem;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
.chat-data-item{}

.chat-form-frame{
    margin-top: 30px;
    background-color: #fff;
    padding: 30px;
}
.chat-live-frame{
    position:relative;
    border-radius: 50px;
    border: 1px solid silver;
    display:flex;
    align-items: center;

}
.chat-live-frm{
    border: transparent;
    outline: transparent;
    border-top-left-radius: 50px;
     border-bottom-left-radius: 50px;
    padding: 5px 28px;
    width: 79%;
    vertical-align: middle;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.chat-live-frm:focus{
    outline: transparent;
    border: transparent;
}
.chat-send-btn{
    background: linear-gradient(45deg, var(--cws-gold), #000);
    border-radius: 50px;
    padding: 12px;
    width: 20%;
    color:#fff;
    border: 1px solid var(--cws-gold);
    font-weight: 700;
    cursor: pointer;
}
.chat-frm-reg{
    margin: 20px 0;

}
.chat-frm-reg input[type=text], .chat-frm-reg input[type=email], .chat-frm-reg button{
    width: 100%;
}
.chat-frm-reg input{
    padding: 9px;
    border: 1px solid silver;
    outline: silver;

}
.frm-elem-duo{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 19px;
}
.frm-elem{
    margin: 19px;
}
.s-item-2,.s-item-3{text-align: center;}

@media screen and (max-width: 760px) {
    
    .cws-brand-panel{
    gap: 0;
    }
    .cws-brand-icon{
        display:none;
    }

    #app-head-panel{
   position: relative;
   margin: 9px;
}

#app-body{
    position: relative;
    width:95%;
}

#mobile-bar-panel{
    display: flex;
    align-items: center;
    position:absolute;
    top: 2px; 
    right: 20%;
    font-size: 1.2rem;
    gap: 15px;
}
#mobile-menu-panel{
    display: none;
    position:fixed;
    width:100%;
    height: 100%;
    top:0;
    left:0;
    z-index: 999999;
    background-color: #fff;
}

.m-nav-panel a{
    display: block;
    margin: 9px;
    padding:5px;
    text-align: center;
    font-weight: 700;
}
.m-nav-panel a:hover{color: #0704c4}

#pc-menu-panel{
    display: none;
}
#pc-bar-panel{
    display: none
}
#m-btn-wrap{
    color: var(--cws-gold); 
    font-size: 2rem;
    position: absolute;
    right: 10px;
    top: -5px;
    cursor: pointer;
    display: block;
}
.intro-tx{
    line-height: 28px;
    margin: 9px 0;
    padding: 6px;

}
.coincon{
    width: 80px;
    height: 80px;
}
.launch-countdown h1, .launch-countdown h2{
    text-align: center;
    line-height: 20px;
}
.c-hunt{
    width: 95%; 
}
.fans{
    text-align: justify;
}
.chat-room{padding: 20px 5px;}
.chat-frame{
    width: 90%;
}
.mail-list{
    width:90%;
}
.contact-frame{
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cnt-item1>div{
    text-align: center;
}
.chat-send-btn{
    border-radius: 50px;
    padding: 13px;
    width: 20%;
}
.frm-elem-duo{
   flex-direction: column;
}
.txt-hi{display: none;}

}