
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    background: #26273E;
    color: #d3d3de;
}

/* HEADER */
header {
    background: #26273E;
    border-bottom: 1px solid #b7b09E;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo-area {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #8acbff;
    transition: color 0.2s;
}

.logo-area:hover .logo-text {
    color: #dab0ff;
}

.slogan {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #b7b09E;
}

/* SEARCH */
.search-bar {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 8px 40px 8px 12px;
    border: 1px solid #b7b09E;
    background: #26273E;
    color: #d3d3de;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
}

.search-bar input:focus {
    outline: none;
    border-color: #8acbff;
}

.search-hint {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #b7b09E;
    font-family: 'JetBrains Mono', monospace;
}

/* HEADER CONTROLS */
.header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 11px;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}

.picker-dropdown {
    position: relative;
}

.picker-trigger {
    cursor: pointer;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d3d3de;
    transition: background 0.2s;
}

.picker-trigger:hover {
    background: rgba(255,255,255,0.05);
}

.color-bar {
    width: 30px;
    height: 8px;
    border: 1px solid #b7b09E;
    display: block;
}

.arrow {
    font-size: 7px;
    color: #b7b09E;
}

.picker-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #26273E;
    border: 1px solid #ffffff;
    min-width: 150px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
}

.picker-dropdown:hover .picker-menu {
    display: block;
}

.picker-menu a {
    display: block;
    height: 16px;
    margin: 4px 0;
    text-decoration: none;
    transition: opacity 0.2s;
}

.picker-menu a:hover {
    opacity: 0.8;
}

.lang-menu a {
    height: auto;
    padding: 8px 12px;
    color: #d3d3de;
    background: none !important;
}

.lang-menu a:hover {
    background: #dab0ff !important;
    color: #26273E;
}

.nav-link {
    color: #ffda51;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #dab0ff;
}

.btn-primary {
    background: #ffffff;
    color: #26273E;
    padding: 8px 16px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #8acbff;
}

/* PAGE WRAPPER */
.page-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

/* SIDEBAR */
.sidebar {
    width: 250px;
    border-right: 1px solid #b7b09E;
    padding: 30px 25px;
}

.sidebar > div {
    margin-bottom: 40px;
}

.sidebar h3 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #b7b09E;
    border-bottom: 1px solid #8acbff;
    padding-bottom: 8px;
    margin-bottom: 15px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin: 10px 0;
}

.sidebar a {
    color: #d3d3de;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.sidebar a:hover {
    color: #ffda51;
}

.sidebar a.active {
    color: #ffffff;
    border-left: 3px solid #8acbff;
    padding-left: 10px;
    margin-left: -10px;
}

.count {
    font-size: 10px;
    color: #b7b09E;
    font-family: 'JetBrains Mono', monospace;
}

.sell-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid #b7b09E;
    padding: 20px;
    text-align: center;
}

.sell-box p {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #b7b09E;
    margin-bottom: 15px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
}

.btn-secondary {
    width: 100%;
    padding: 10px;
    background: #26273E;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.1em;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #26273E;
}

/* CONTENT */
.content {
    flex: 1;
    padding: 40px 60px;
    min-height: 60vh;
}

/* FORMS */
.form-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid #8acbff;
}

label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background: #26273E;
    border: 1px solid #b7b09E;
    color: #d3d3de;
    font-size: 14px;
    font-family: 'Trebuchet MS', sans-serif;
}

input:focus {
    outline: none;
    border-color: #8acbff;
}

/* FOOTER */
footer {
    background: #26273E;
    border-top: 1px solid #b7b09E;
    padding: 40px 0 20px;
    margin-top: 60px;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

footer h4 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #b7b09E;
    margin-bottom: 15px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
}

footer ul {
    list-style: none;
}

footer li {
    margin: 8px 0;
}

footer a {
    color: #d3d3de;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

footer a:hover {
    color: #ffda51;
}

.footer-bottom {
    border-top: 1px solid #b7b09E;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: #b7b09E;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Typography */
h1 { 
    font-size: 32px; 
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
}

a { color: #ffda51; }
a:hover { color: #dab0ff; }
