@font-face {
    font-family: GintoDiscord;
    src: url('/src/assets/fonts/ABCGintoDiscord-Medium.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap; 
}


:root {
    --primary-red: #dc2626;
    --bg-main: #282a3d;
    --bg-boxes: #1C1E2D;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --border-color: #2d3748;
    --searchbar-color: #282a3d;
    --searchbar-border: #334155;
    --hoover-color: #282a3d;
}

::-webkit-scrollbar {
    width: 5px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--searchbar-border); 
    border-radius: 4px;  
    transition: background 2s;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red); 
    border-radius: 4px;  
}

* {
    box-sizing: border-box;
    margin: 0; 
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

/* Top Navigation Bar */
header {
    height: 64px;
    background: var(--bg-boxes);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 10;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    flex-shrink: 0;
    letter-spacing: 3px;
}

.brand img {
    height: 50px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #5865F2;
    color: var(--text-main);
    border-radius: 15px;
    padding: 12px 18px;
    font-weight: 600;
    font-size: 17px;
    line-height: 1;
    white-space: nowrap;
    margin-right: 10px;
    flex-shrink: 0;
    font-family: 'GintoDiscord', sans-serif;
    text-decoration: none;
}

.login-button i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.login-button:hover {
    background-color: #4752c4;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0f172a;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

/* Main Container Layout */
.main-container {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Footer bottom text */
.page-footer {
    background: var(--bg-boxes);
    border-top: 1px solid var(--border-color);
    padding: 12px 24px 12px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.footer-links span:nth-child(1) { color: var(--text-main); }