/* ==================== VARIABLES & RESET ==================== */
:root {
    --primary-color: #6c5ce7;
    --primary-dark: #5b4cdb;
    --secondary-color: #00b894;
    --danger-color: #d63031;
    --warning-color: #fdcb6e;
    --bg-dark: #1a1a2e;
    --bg-darker: #16213e;
    --bg-light: #0f3460;
    --text-light: #eee;
    --text-muted: #aaa;
    --border-color: #333;
    --gold: #f1c40f;
    --hp-color: #e74c3c;
    --hp-bg: #4a1a1a;
}

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

body {
    font-family: 'Press Start 2P', cursive;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

/* ==================== SCREENS ==================== */
.screen {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.screen.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==================== LOADING SCREEN ==================== */
#loadingScreen {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    flex-direction: column;
}

.loading-content {
    text-align: center;
}

.game-title {
    font-size: 24px;
    color: var(--gold);
    text-shadow: 3px 3px 0 #000, -1px -1px 0 #000;
    margin-bottom: 40px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.loading-bar {
    width: 300px;
    height: 20px;
    background: var(--bg-light);
    border: 3px solid var(--border-color);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto 20px;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 0%;
    animation: load 2s ease-out forwards;
}

@keyframes load {
    to { width: 100%; }
}

.loading-text {
    font-size: 10px;
    color: var(--text-muted);
}

/* ==================== LOGIN SCREEN ==================== */
#loginScreen {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.login-container {
    background: var(--bg-darker);
    border: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.3);
}

.tab-container {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    font-family: inherit;
    font-size: 10px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-dark);
    color: white;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 8px;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-group input {
    width: 100%;
    padding: 12px;
    font-family: inherit;
    font-size: 10px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    color: white;
    border-radius: 4px;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-primary {
    width: 100%;
    padding: 15px;
    font-family: inherit;
    font-size: 10px;
    background: var(--primary-color);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-primary:disabled {
    background: var(--border-color);
    cursor: not-allowed;
    transform: none;
}

.error-message {
    color: var(--danger-color);
    font-size: 8px;
    margin-top: 15px;
    text-align: center;
}

/* ==================== CHARACTER CREATION ==================== */
#characterScreen {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    overflow-y: auto;
    padding: 20px;
}

.character-creator {
    max-width: 900px;
    width: 100%;
}

.character-creator h1 {
    text-align: center;
    color: var(--gold);
    margin-bottom: 40px;
    font-size: 20px;
}

.creator-section {
    background: var(--bg-darker);
    border: 3px solid var(--primary-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
}

.creator-section h2 {
    font-size: 12px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.avatar-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.avatar-option {
    text-align: center;
    cursor: pointer;
    padding: 15px;
    border: 3px solid transparent;
    border-radius: 8px;
    transition: all 0.3s;
}

.avatar-option:hover {
    border-color: var(--primary-color);
    background: rgba(108, 92, 231, 0.1);
}

.avatar-option.selected {
    border-color: var(--gold);
    background: rgba(241, 196, 15, 0.1);
}

.avatar-preview {
    width: 64px;
    height: 64px;
    image-rendering: pixelated;
    margin-bottom: 10px;
}

.avatar-option span {
    font-size: 8px;
    color: var(--text-muted);
}

#characterName {
    width: 100%;
    padding: 15px;
    font-family: inherit;
    font-size: 12px;
    background: var(--bg-light);
    border: 3px solid var(--border-color);
    color: white;
    border-radius: 4px;
    text-align: center;
}

#characterName:focus {
    outline: none;
    border-color: var(--primary-color);
}

.class-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.class-option {
    background: var(--bg-light);
    border: 3px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.class-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.class-option.selected {
    border-color: var(--gold);
    background: rgba(241, 196, 15, 0.1);
}

.class-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.class-option h3 {
    font-size: 12px;
    margin-bottom: 10px;
    color: var(--gold);
}

.class-option p {
    font-size: 8px;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
}

.class-stats {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.class-stats span {
    font-size: 7px;
    color: var(--text-light);
}

.btn-large {
    padding: 20px 40px;
    font-size: 14px;
    margin-top: 20px;
}

/* ==================== GAME SCREEN ==================== */
#gameScreen {
    display: none;
    position: relative;
}

#gameScreen.active {
    display: block;
}

#gameCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    image-rendering: pixelated;
}

/* ==================== LEFT PANEL ==================== */
#leftPanel {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.panel-btn {
    width: 50px;
    height: 50px;
    background: var(--bg-darker);
    border: 3px solid var(--primary-color);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 20px;
}

.panel-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* ==================== TOP BAR ==================== */
#topBar {
    position: fixed;
    top: 10px;
    left: 80px;
    right: 220px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.stat-container {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hp-bar {
    width: 200px;
    height: 25px;
    background: var(--hp-bg);
    border: 3px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.hp-fill {
    height: 100%;
    background: linear-gradient(180deg, #e74c3c 0%, #c0392b 100%);
    width: 100%;
    transition: width 0.3s;
}

.hp-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    text-shadow: 1px 1px 2px #000;
}

.coins-display {
    background: var(--bg-darker);
    border: 3px solid var(--gold);
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zone-display {
    background: var(--bg-darker);
    border: 3px solid var(--primary-color);
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 9px;
    display: flex;
    gap: 20px;
}

/* ==================== MINIMAP ==================== */
#minimap {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 200px;
    height: 200px;
    background: var(--bg-darker);
    border: 3px solid var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
    z-index: 100;
}

#minimapCanvas {
    width: 100%;
    height: 100%;
}

/* ==================== CHAT ==================== */
#chatContainer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

#chatInput {
    width: 400px;
    padding: 12px 20px;
    font-family: inherit;
    font-size: 10px;
    background: rgba(26, 26, 46, 0.9);
    border: 3px solid var(--primary-color);
    color: white;
    border-radius: 20px;
    text-align: center;
}

#chatInput:focus {
    outline: none;
    border-color: var(--gold);
}

/* ==================== MODALS ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-darker);
    border: 4px solid var(--primary-color);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--bg-light);
    border-bottom: 3px solid var(--border-color);
}

.modal-header h2 {
    font-size: 12px;
    color: var(--gold);
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--danger-color);
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
}

.modal-footer {
    padding: 15px 20px;
    border-top: 3px solid var(--border-color);
    text-align: center;
}

/* ==================== MENU MODAL ==================== */
.menu-tabs, .phone-tabs, .admin-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.menu-tab, .phone-tab, .admin-tab {
    flex: 1;
    padding: 10px;
    font-family: inherit;
    font-size: 8px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
}

.menu-tab.active, .phone-tab.active, .admin-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-dark);
    color: white;
}

.menu-content, .phone-content, .admin-content {
    min-height: 200px;
}

.menu-content.hidden, .phone-content.hidden, .admin-content.hidden {
    display: none;
}

.leaderboard-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.lb-tab {
    padding: 8px 12px;
    font-family: inherit;
    font-size: 7px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    cursor: pointer;
}

.lb-tab.active {
    background: var(--secondary-color);
    border-color: #00a884;
    color: white;
}

.leaderboard-list {
    background: var(--bg-light);
    border-radius: 4px;
    padding: 10px;
}

.leaderboard-item {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    border-bottom: 1px solid var(--border-color);
    font-size: 8px;
}

.leaderboard-item:last-child {
    border-bottom: none;
}

.leaderboard-rank {
    color: var(--gold);
    width: 30px;
}

.leaderboard-name {
    flex: 1;
}

.leaderboard-value {
    color: var(--secondary-color);
}

.setting-item {
    margin-bottom: 20px;
}

.setting-item label {
    display: block;
    font-size: 8px;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.setting-item input[type="range"] {
    width: 100%;
}

.setting-item select {
    width: 100%;
    padding: 10px;
    font-family: inherit;
    font-size: 8px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    color: white;
    border-radius: 4px;
}

.help-section {
    margin-bottom: 20px;
}

.help-section h3 {
    font-size: 10px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.help-section p {
    font-size: 8px;
    line-height: 2;
    color: var(--text-muted);
}

.btn-danger {
    padding: 12px 30px;
    font-family: inherit;
    font-size: 10px;
    background: var(--danger-color);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

/* ==================== PHONE MODAL ==================== */
.friends-list, .messages-list, .search-results {
    background: var(--bg-light);
    border-radius: 4px;
    padding: 10px;
    min-height: 150px;
    max-height: 300px;
    overflow-y: auto;
}

.friend-item, .message-item, .search-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
    font-size: 8px;
}

.friend-item:last-child, .message-item:last-child, .search-item:last-child {
    border-bottom: none;
}

.friend-name, .search-name {
    color: var(--text-light);
}

.friend-class {
    color: var(--text-muted);
    font-size: 7px;
}

.friend-actions button, .search-item button {
    padding: 5px 10px;
    font-family: inherit;
    font-size: 7px;
    background: var(--primary-color);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 3px;
}

.message-compose {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.message-compose select {
    flex: 1;
    padding: 10px;
    font-family: inherit;
    font-size: 8px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    color: white;
    border-radius: 4px;
}

.message-compose input {
    flex: 2;
    padding: 10px;
    font-family: inherit;
    font-size: 8px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    color: white;
    border-radius: 4px;
}

.message-compose button {
    padding: 10px 15px;
    font-size: 8px;
}

#playerSearch {
    width: 100%;
    padding: 10px;
    font-family: inherit;
    font-size: 8px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    color: white;
    border-radius: 4px;
    margin-bottom: 15px;
}

.pending-requests {
    margin-top: 15px;
}

.pending-requests h4 {
    font-size: 8px;
    color: var(--warning-color);
    margin-bottom: 10px;
}

/* ==================== INVENTORY MODAL ==================== */
.inventory-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.inventory-slot {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 4px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    padding: 5px;
}

.inventory-slot:hover {
    border-color: var(--primary-color);
}

.inventory-slot .item-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.inventory-slot .item-name {
    font-size: 6px;
    text-align: center;
    color: var(--text-muted);
}

.inventory-slot .item-qty {
    font-size: 8px;
    color: var(--gold);
}

/* ==================== CHARACTER MODAL ==================== */
.character-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.char-avatar {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border: 3px solid var(--gold);
    border-radius: 8px;
}

.char-details h3 {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 5px;
}

.char-details p {
    font-size: 10px;
    color: var(--primary-color);
}

.character-stats {
    background: var(--bg-light);
    border-radius: 4px;
    padding: 15px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 9px;
}

.stat-row:last-child {
    border-bottom: none;
}

/* ==================== EQUIPMENT MODAL ==================== */
.equipment-slots {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.equipment-slot {
    text-align: center;
}

.slot-label {
    font-size: 8px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
}

.slot-item {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border: 3px solid var(--primary-color);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
}

.equipment-stats {
    background: var(--bg-light);
    border-radius: 4px;
    padding: 15px;
    text-align: center;
}

.equipment-stats p {
    font-size: 10px;
    margin: 10px 0;
}

/* ==================== GUILD MODAL ==================== */
.guild-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.guild-actions input {
    flex: 1;
    padding: 10px;
    font-family: inherit;
    font-size: 8px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    color: white;
    border-radius: 4px;
}

.guild-actions button {
    padding: 10px 15px;
    font-size: 8px;
}

#guildInfo h3 {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 10px;
}

#guildInfo p {
    font-size: 8px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.guild-members {
    background: var(--bg-light);
    border-radius: 4px;
    padding: 10px;
}

.guild-member {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    border-bottom: 1px solid var(--border-color);
    font-size: 8px;
}

/* ==================== MAP MODAL ==================== */
.map-modal {
    max-width: 700px;
}

#worldMapCanvas {
    width: 100%;
    border: 3px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 15px;
}

.map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 8px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 3px;
}

.legend-color.safe { background: #27ae60; }
.legend-color.forest { background: #2ecc71; }
.legend-color.desert { background: #f39c12; }
.legend-color.ice { background: #3498db; }
.legend-color.water { background: #2980b9; }
.legend-color.dungeon { background: #9b59b6; }

/* ==================== SHOP MODAL ==================== */
.shop-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.shop-item {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.shop-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.shop-item-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.shop-item-name {
    font-size: 9px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.shop-item-desc {
    font-size: 7px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 10px;
}

.shop-item-price {
    font-size: 10px;
    color: var(--gold);
}

/* ==================== ADMIN MODAL ==================== */
.admin-modal {
    max-width: 800px;
}

.admin-list {
    background: var(--bg-light);
    border-radius: 4px;
    padding: 10px;
    max-height: 400px;
    overflow-y: auto;
}

.admin-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
    font-size: 8px;
}

.admin-item:last-child {
    border-bottom: none;
}

.admin-item-info {
    flex: 1;
}

.admin-item-actions {
    display: flex;
    gap: 5px;
}

.admin-item-actions button {
    padding: 5px 10px;
    font-family: inherit;
    font-size: 7px;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

.admin-item-actions .btn-edit {
    background: var(--primary-color);
    color: white;
}

.admin-item-actions .btn-delete {
    background: var(--danger-color);
    color: white;
}

.admin-item-actions .btn-tp {
    background: var(--secondary-color);
    color: white;
}

.config-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.config-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.config-item label {
    flex: 1;
    font-size: 8px;
    color: var(--text-muted);
}

.config-item input {
    width: 100px;
    padding: 8px;
    font-family: inherit;
    font-size: 8px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    color: white;
    border-radius: 4px;
}

.config-item button {
    padding: 8px 15px;
    font-family: inherit;
    font-size: 7px;
    background: var(--secondary-color);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 3px;
}

/* ==================== ADMIN BUTTON ==================== */
.admin-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    font-family: inherit;
    font-size: 10px;
    background: var(--gold);
    border: 3px solid #d4a106;
    color: var(--bg-dark);
    cursor: pointer;
    border-radius: 8px;
    z-index: 100;
    transition: all 0.3s;
}

.admin-btn:hover {
    transform: scale(1.05);
}

.admin-btn.hidden {
    display: none;
}

/* ==================== NOTIFICATIONS ==================== */
#notifications {
    position: fixed;
    top: 60px;
    right: 220px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background: var(--bg-darker);
    border: 3px solid var(--primary-color);
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 9px;
    animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s forwards;
    max-width: 300px;
}

.notification.success {
    border-color: var(--secondary-color);
}

.notification.error {
    border-color: var(--danger-color);
}

.notification.warning {
    border-color: var(--warning-color);
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    to { opacity: 0; transform: translateX(100%); }
}

/* ==================== HIDDEN CLASS ==================== */
.hidden {
    display: none !important;
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
