/* Settings Styles - NEW FILE (Safe Addition) */

/* Settings Button */
.settings-btn {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.2), rgba(255, 51, 51, 0.1));
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.settings-btn:hover {
    background: var(--accent);
    color: white;
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-2px);
}

/* Settings Modal Content */
.settings-modal-content {
    max-width: 500px;
    width: 90%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(20, 5, 5, 0.98));
    border: 2px solid var(--accent);
    border-radius: 16px;
    overflow: hidden;
}

.settings-body {
    padding: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

.settings-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 51, 51, 0.2);
}

.settings-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.settings-section h3 {
    font-family: var(--font-punk);
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--accent-glow);
}

.settings-section .form-group {
    margin-bottom: 0.75rem;
}

.settings-section small {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.settings-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.settings-actions-grid button {
    font-size: 0.8rem;
    padding: 0.6rem;
}

.settings-about {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: center;
}

.settings-copyright {
    color: var(--accent);
    font-size: 0.75rem;
}

.settings-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 51, 51, 0.2);
}

/* Toast Notification */
.settings-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, var(--accent), #cc0000);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-punk);
    font-size: 1rem;
    box-shadow: 0 5px 30px rgba(255, 51, 51, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
}

.settings-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Light theme adjustments */
.light-theme .settings-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 245, 245, 0.98));
}

.light-theme .settings-section {
    border-bottom-color: rgba(255, 51, 51, 0.1);
}

.light-theme .settings-footer {
    background: rgba(0, 0, 0, 0.05);
}