/* ==========================================
   GRIDBOUND 2.0
   Early Toybox Theme
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Trebuchet MS, Arial, sans-serif;
}

body{

    background:linear-gradient(#8fd3ff,#dff5ff);

    overflow:hidden;

    color:#222;

}

/* ===========================
   TOP BAR
=========================== */

#topBar{

    height:70px;

    background:white;

    border-bottom:4px solid #3aa9ff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 30px;

    box-shadow:0 3px 10px rgba(0,0,0,.15);

}

#topBar h1{

    font-size:42px;

    color:#ff4444;

    letter-spacing:2px;

}

#tokenDisplay{

    font-size:22px;

    font-weight:bold;

    color:#3aa9ff;

}

/* ===========================
   MAIN
=========================== */

#mainContainer{

    display:flex;

    justify-content:space-around;

    align-items:flex-start;

    padding:35px;

}

/* ===========================
   PANELS
=========================== */

#leftPanel,
#centrePanel,
#rightPanel{

    width:280px;

    background:white;

    border-radius:18px;

    padding:20px;

    box-shadow:0 8px 25px rgba(0,0,0,.15);

}

#centrePanel{

    width:420px;

    text-align:center;

}

h2{

    color:#ff4444;

    margin-bottom:20px;

}

/* ===========================
   BUTTONS
=========================== */

button{

    width:100%;

    padding:15px;

    margin-top:12px;

    border:none;

    border-radius:12px;

    background:#4ab8ff;

    color:white;

    font-size:18px;

    cursor:pointer;

    transition:.2s;

}

button:hover{

    transform:translateY(-2px);

    background:#2ea6f7;

}

/* PLAY */

#playButton{

    background:#3bd16f;

    font-size:28px;

    font-weight:bold;

    margin-top:25px;

}

#playButton:hover{

    background:#32b85f;

}

/* ===========================
   AVATAR
=========================== */

#avatarPreview{

    width:220px;

    height:260px;

    margin:auto;

    border-radius:16px;

    background:#f3f3f3;

    border:4px dashed #ccc;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#888;

}

/* ===========================
   LOADING
=========================== */

#loadingScreen{

    display:none;

    position:fixed;

    inset:0;

    background:#8fd3ff;

    color:white;

    font-size:42px;

    justify-content:center;

    align-items:center;

    z-index:9999;

}