body {
    background: #0f1115;
    font-family: Arial, sans-serif;
    color: #e8eefa;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 780px;
    margin: 50px auto;
}

h1 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 10px;
    color: #4da3ff;
}

.subtitle {
    text-align: center;
    opacity: 0.75;
    margin-bottom: 30px;
}

/* INPUTS */
.input-block {
    margin-bottom: 20px;
}

.input-block label {
    font-size: 0.9rem;
    color: #b5c3d6;
}

.input-block input,
.competitor {
    width: 100%;
    padding: 12px;
    background: #1b1f27;
    border: 1px solid #2b3241;
    border-radius: 6px;
    color: #fff;
    margin-top: 5px;
    margin-bottom: 10px;
}

.toggle-btn {
    background: #1c212b;
    border: 1px solid #2b3241;
    color: #4da3ff;
    padding: 10px;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 10px;
}

.toggle-btn:hover {
    background: #222834;
}

/* BUTTON */
button#analyzeBtn,
#angleBtn {
    background: #4da3ff;
    border: none;
    color: #000;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 15px;
}

button:hover {
    background: #70bbff;
}

/* RESULTS */
.result {
    background: #151920;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.result h2 {
    color: #4da3ff;
}

/* LOADING */
.loading {
    margin-top: 20px;
    font-size: 1rem;
    text-align: center;
}

.hidden {
    display: none !important;
}

/* COLLAPSIBLES */
.collapsible {
    background-color: #1c212b;
    color: #e8eefa;
    cursor: pointer;
    padding: 14px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #333b4c;
    text-align: left;
    outline: none;
    font-size: 1.1rem;
    transition: 0.2s;
}

.collapsible.active {
    background-color: #4da3ff;
    color: #000;
}

.collapse-content {
    display: none;
    padding: 15px;
    background: #10131a;
    border-left: 2px solid #4da3ff;
    margin-bottom: 10px;
}

.toolButtons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.toolButtons button {
    flex: 1;
    background: #1b2634;
    border: 1px solid #4da3ff;
    color: #4da3ff;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
}

.toolButtons button:hover {
    background: #4da3ff;
    color: #000;
}

.token-info {
    opacity: 0.6;
    margin-top: 20px;
    font-size: 0.9rem;
}
