﻿:root {
    --discord-bg: #1e1f22;
    --discord-sidebar: #2b2d31;
    --discord-accent: #da373c; /* Red */
    --discord-accent-hover: #a92b2f;
    --discord-text: #dbdee1;
    --discord-text-muted: #949ba4;
    --discord-input-bg: #1e1f22;
    --discord-card: #313338;
}

body {
    font-family: 'gg sans', 'Noto Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--discord-bg);
    color: var(--discord-text);
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 1000px;
    width: 100%;
    background-color: var(--discord-card);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

h1 {
    color: var(--discord-accent);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.subtitle {
    text-align: center;
    color: var(--discord-text-muted);
    margin-bottom: 30px;
    font-size: 0.9em;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--discord-sidebar);
    padding-bottom: 10px;
}

.tab {
    padding: 8px 16px;
    cursor: pointer;
    background: transparent;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
    color: var(--discord-text-muted);
}

.tab:hover {
    background-color: rgba(255,255,255,0.05);
    color: var(--discord-text);
}

.tab.active {
    background-color: var(--discord-accent);
    color: white;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.category {
    background-color: var(--discord-sidebar);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.category h2 {
    color: var(--discord-accent);
    font-size: 1.1em;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5px;
    text-transform: uppercase;
}

.field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.field:last-child {
    border-bottom: none;
}

.field label {
    font-size: 0.95em;
    color: var(--discord-text);
    flex: 1;
}

.field input, .field select {
    background-color: var(--discord-input-bg);
    border: 1px solid #1e1f22;
    color: var(--discord-text);
    padding: 8px 12px;
    border-radius: 4px;
    width: 250px;
    outline: none;
    transition: border-color 0.2s;
}

.field input:focus, .field select:focus {
    border-color: var(--discord-accent);
}

button[name="download"] {
    background-color: var(--discord-accent);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1em;
    width: 100%;
    transition: background-color 0.2s;
    margin-top: 10px;
}

button[name="download"]:hover {
    background-color: var(--discord-accent-hover);
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--discord-bg);
}
::-webkit-scrollbar-thumb {
    background: #111;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #000;
}
