:root {
    --black: #000000;
    --brown-e-dark: #292010;
    --thumb-brown: #413319;
    --dark-gold: #2f2818;
    --brown: #b1893f;
    --brown-dark: #5f5440;
    --brown-pale: #755c2a;
    --brown-link: #e6be6f;
    --brown-light: #f1d7a1;
    --brown-e-light: #dfd3bd;
}

* {
    font-family: 'Times New Roman', Times, serif;
    box-sizing: border-box;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
}

.navbar {
    margin: 0;
    padding: 0;
    display: flex;
    column-gap: 10px;
}

.link {
    color: var(--brown-link);
    font-weight: 600;
}

.title {
    margin: 0;
    color: var(--brown);
}

.alt-t {
    margin: 0;
    font-weight: 100;
    color: var(--brown-e-light);
}

.alt-title {
    margin: 0;
    color: var(--brown-pale);
}

.paragraph {
    margin: 0;
    color: var(--brown-pale);
}

.container {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

hr {
    width: 100%;
    min-height: 1px;
    max-height: 1px;
    background-color: var(--brown-dark);
    border: none;
}

.img-con {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}

.img-con img {
    max-width: calc(100% / 7);
    filter: grayscale(0.3) sepia(0.2) contrast(0.9) brightness(0.85);
}

.inp {
    margin-top: 3px;
    padding: 5px;
    color: var(--brown);
    border: 1px solid var(--brown);
    background-color: var(--dark-gold);
}

.inp:focus {
    outline: none;
}

.enter-btn {
    background-color: var(--brown);
    color: var(--brown-light);
    border: none;
    padding: 5px;
    font-size: 15px;
    padding: 5px 10px;
    transition: 0.3s;
}

.enter-btn:hover {
    background-color: var(--brown-pale);
}

.profile-con {
    display: flex;
    align-items: start;
    justify-content: center;
    column-gap: 20px;
}

.p-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.p-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.p-top-row {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: start;
    column-gap: 10px;
}

#buttons {
    column-gap: 0;
}

#buttons img {
    width: calc(100% / 7);
}

.p-right .p-top-row .p-canvas {
    min-width: 100px;
    max-width: 100px;
    min-height: 100px;
    max-height: 100px;
    border: 1px dashed var(--brown);
}

.p-right .p-top-row .p-canvas img {
    width: 100%;
}

.pixel-box {
    min-height: 100px;
    width: 50%;
    padding: 10px;
    border-radius: 5px;
    border: 1px dashed var(--brown-pale);
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 10px;
}

.pixel-box:nth-child(2) {
    justify-content: center;
}

.pixel-box h3 {
    font-size: 15px;
}

.clock {
    margin: 7px 0 0 0;
    padding: 0;
    text-align: center;
    font-family: 'LCD', sans-serif;
    color: var(--brown-light);
    font-size: 35px;
}

.marquee-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--brown-dark);
    border-bottom: 1px solid var(--brown-dark);
    background: rgba(47, 40, 24, 0.3);
    padding: 15px 0;
    margin: 15px 0;
    cursor: pointer;
}

.marquee-content {
    position: absolute;
    display: inline-block;
    white-space: nowrap;
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    color: var(--brown-e-light);
    text-transform: uppercase;
    animation: marquee 20s linear infinite;
}

.marquee-content .highlight {
    color: var(--brown-light);
    font-style: italic;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
    color: var(--brown-link);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.system-card {
    width: 100%;
    background-color: #0c0c0c;
    border: 1px solid var(--brown-dark);
    font-family: 'Courier New', Courier, monospace;
    /* Terminal tipi font */
    margin-top: 15px;
}

.card-header {
    background-color: var(--brown-dark);
    color: var(--black);
    padding: 2px 10px;
    font-size: 12px;
    font-weight: bold;
}

.card-body {
    padding: 10px;
    font-size: 13px;
}

.label {
    color: var(--brown-pale);
}

.value {
    color: var(--brown-light);
    font-style: normal;
}

.cpu-bar-container {
    width: 100%;
    height: 5px;
    background: #1a1a1a;
    margin-top: 5px;
    border: 1px solid #333;
}

.cpu-bar {
    height: 100%;
    background: var(--brown);
    transition: width 0.5s ease;
}

ul {
    padding: 0 20px;
}

li {
    margin: 0;
    list-style-type: numeric;
}

li::marker {
    color: var(--brown);
}

.footer {
    width: 100%;
    padding: 20px;
    text-align: center;
}

.chat-container {
    width: 100%;
    border: 1px dashed var(--dark-gold);
    max-height: 400px;
}

.chat-area {
    height: 200px;
    overflow-y: scroll;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.mes-con {
    max-width: 80%;
    border: 1px dashed var(--brown);
    padding: 5px;
    flex-wrap: wrap;
    text-wrap: wrap;
    word-wrap: break-word;
    margin: 5px 0;
}

.mes-con i {
    width: 100%;
    font-size: 12px;
}

#message {
    font-size: 15px;
}

.chat-container .paragraph {
    font-size: 13px;
}

.chat-title {
    padding: 0 0 0 5px;
    margin: 0;
    color: var(--brown-pale);
    font-size: 13px;
    background-color: var(--dark-gold);
}

.input-area {
    display: flex;
    column-gap: 10px;
    padding: 10px;
}

.chat-container input {
    color: var(--brown-e-light);
    padding: 5px;
    width: 80%;
    background-color: var(--black);
    border: 1px solid var(--dark-gold);
}

.chat-container input:nth-child(1) {
    width: 20%;
}

.chat-container input:nth-child(2) {
    width: 60%;
}

.chat-container input:focus {
    outline: none;
}

.chat-container button {
    padding: 5px;
    width: 20%;
    background-color: var(--brown);
    color: white;
    border: none;
    transition: 0.3s;
    cursor: pointer;
}

.chat-container button:hover {
    background-color: var(--brown-pale);
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--brown-dark);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--thumb-brown);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--brown-e-dark);
}

.ardabg {
    filter: brightness(0.5);
    position: absolute;
    left: 0;
    bottom: 0;
    height: 90%;
}

@media screen and (max-width: 1500px) {
    .ardabg {
        width: 40%;
        height: auto;
    }
}

@media screen and (max-width: 600px) {
    .ardabg {
        width: 80%;
        height: auto;
    }

    .profile-con {
        flex-direction: column-reverse;
    }

    .bayrak {
        display: none;
    }

    .p-left {
        width: 100%;
    }

    .p-right {
        width: 100%;
    }

    #current_info {
        flex-direction: column;
        row-gap: 10px;
    }

    #current_info .pixel-box {
        width: 100%;
    }

    .p-right .p-top-row .p-canvas {
        min-width: 70px;
        max-width: 70px;
        min-height: 70px;
        max-height: 70px;
    }

    .profile-con .p-left:first-child .paragraph {
        margin-top: 10px;
    }

    #radio-sticker {
        width: 100%;
        margin-top: 10px;
    }

    .navbar {
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: space-between;
    }

    .navbar a {
        font-size: 13px;
    }
}