/* Predefined */
@font-face {
    font-family: Oswald;
    src: url('assets/Oswald-VariableFont_wght.ttf');
}
@font-face {
    font-family: BebasNeue;
    src: url('assets/BebasNeue-Regular.ttf');
}

/* Global Styles */

body {
    margin: 0; /* Prevents weird scroll bars */
    overflow: hidden; /* Prevents weird scroll bars too */
    background: #080808 /*#000111*/; 
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
}

/* Top Bar Styles */

div#top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(#000000dd, #222222dd /*#001122*/);
    z-index: 100;
    backdrop-filter: blur(5px);
}

div#top-bar:hover {
    box-shadow: 0 0 5px #aaa;
}

div#round-number {
    font-size: 40px;
    padding: 30px;
    text-align: center;
    font-family: Oswald;
}

div#game-logo {
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 150px;
    background-image: url('images/logo.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

div#studio-logo {
    position: absolute;
    top: 0;
    right: 20px;
    height: 100%;
    width: 100px;
    background-image: url('images/studio_logo.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

/* Game Content Styles */

div#game-content {
    position: absolute;
    height: 100%;
    width: 100%;
}

div#game-rounds-icon {
    background-image: url('images/game_rounds_icon.jpeg');
}

/* Control Bar Styles */

div#control-bar {
    display: flex;
    position: absolute;
    bottom: 50px;
    left: 70px;
    height: 300px;
    width: calc(100% - 140px);
    z-index: 50;
}

div#action-btns {
    width: fit-content;
    border: 1px solid #444 /*#003344*/;
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

div.label-text {
    text-align: center;
    font-size: 20px;
    font-family: Oswald;
    text-shadow: 0 0 3px #ffffff;
}

button.action-btn {
    width: 200px;
    padding: 10px;
    padding-top: 11px;
    font-size: 17px;
    background: #fff1 /*#002233*/;
    border: 1px solid #aaa /*#00aacc*/;
    border-radius: 10px;
    box-shadow: 0 0 6px #aaa /*#00aacc*/;
    color: #ffffff;
}

button.action-btn:hover {
    background: #fff2 /*#003344*/;
    box-shadow: 0 0 10px #aaa /*#00aacc*/;
}

button.action-btn:active {
    background: #fff4 /*#005577*/;
    box-shadow: 0 0 15px #aaa /*#00aacc*/;
}

div.action-btn-spacer {
    height: 10px;
}

div#item-container {
    position: absolute;
    top: 50px;
    right: 0;
    display: flex;
    width: 350px;
    height: 200px;
    padding: 20px;
    background: #ffffff0b /*#002233*/;
    border: 1px solid #aaa /*#00aacc*/;
    border-radius: 10px;
    box-shadow: 0 0 10px #aaa /*#00aacc*/;
    backdrop-filter: blur(5px);
}

div#item-container:hover {
    background: #ffffff15;
    box-shadow: 0 0 15px #aaa /*#00aacc*/;
}

div.item-icon {
    height: 100%;
    width: 100%;
    background-size: 75%;
    background-position: center center;
    background-repeat: no-repeat;
}

div#passport-icon {
    background-image: url('images/passport_icon.jpg');
}

div#files-icon {
    background-image: url('images/files_icon.jpg');
}

div#item-label {
    position: absolute;
    top: -55px;
    width: calc(100% - 40px);
    font-size: 25px;
}
