@font-face {
    font-family: 'Outfit';
    src: url('Outfit-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-gradient);
    color: #ffffff;
    height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
}

.app-container {
    height: calc(var(--vh, 1vh) * 100);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
}

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    position: relative;
    z-index: 10;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.settings-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.75rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.settings-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.more-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.75rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.more-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.more-menu {
    position: absolute;
    top: 100%;
    right: 2rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: none;
    z-index: 20;
    min-width: 150px;
}

.more-menu.active {
    display: block;
}

.more-menu ul {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.more-menu li {
    padding: 0.75rem 1.5rem;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.more-menu li:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Chat Container */
.chat-container {
    flex: 1;
    min-height: 0;          /* allow children to shrink for scrolling */
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

.chat-messages {
    flex: 1;
    min-height: 0;          /* ensure proper overflow in flex layout */
    overflow-y: auto;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    scroll-behavior: smooth;
    overscroll-behavior: contain;
}

.message {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.5s ease;
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.welcome-message {
    display: flex;
    gap: 1rem;
    opacity: 0.8;
    justify-content: flex-start;
}

.message-content {
    position: relative;
    flex: 1;
    width: fit-content;
    max-width: min(70%, 600px);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.5;
    min-height: fit-content;
    height: auto;
}

.message-content p {
    margin: 0;
    white-space: pre-wrap;
}

/* Markdown-style formatting */
.message-content strong {
    font-weight: 600;
    color: var(--primary-color);
}

.message-content em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.message-content code {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.2em 0.4em;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9em;
    color: #ffffff;
}

/* Add fade-in text animation */
.fade-in p {
    opacity: 0;
    animation: fadeInText 0.3s ease forwards;
}
@keyframes fadeInText {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Chat Input */
.chat-input-container {
    padding: 2rem 0;
}

.chat-input {
    display: flex;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.chat-input:focus-within {
    border-color: var(--accent-border);
    box-shadow: 0 0 20px var(--accent-glow);
}

.chat-input input {
    flex: 1;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    outline: none;
}

.chat-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.chat-input button {
    background: var(--primary-gradient);
    border: none;
    color: #ffffff;
    padding: 0.75rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chat-input button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-shadow);
}

.chat-input button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-content {
    padding: 2rem;
    max-height: 50vh;
    overflow-y: auto;
}

/* Settings Tabs */
.settings-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    padding: 0.5rem;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.tab-btn.active {
    background: var(--primary-gradient);
    color: #ffffff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-border);
    box-shadow: 0 0 15px var(--accent-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input[type="range"] {
    appearance: none;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    padding: 0;
}

.form-group input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-gradient);
    border-radius: 50%;
    cursor: pointer;
}

.range-value {
    float: right;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Modal Footer */
.modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-shadow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Retry button on AI messages */
.retry-btn {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}
.retry-btn:hover {
    opacity: 1;
}

/* Loading Indicator */
.loading-indicator {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 200;
}

.loading-indicator.active {
    display: block;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Side Menu Styles */
.side-menu {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    transition: left 0.3s ease;
    z-index: 50;
    padding: 2rem 0;
}

.side-menu.active {
    left: 0;
}

.side-menu-content {
    padding: 2rem;
}

.create-character-btn {
    width: 100%;
    background: var(--primary-gradient);
    border: none;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.create-character-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-shadow);
}

/* New "View Created Characters" button styling */
.view-characters-btn {
    width: 100%;
    background: var(--primary-gradient);
    border: none;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.view-characters-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-shadow);
}

/* Adjust closed side-menu-toggle visibility and opacity */
.side-menu-toggle {
    position: fixed;
    /* keep button flush to left, reduce opacity when closed */
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease, opacity 0.2s ease;
    z-index: 60;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}
.side-menu-toggle:hover {
    opacity: 1;
}

.side-menu-toggle.active {
    left: 320px;
}

.side-menu-toggle.active i {
    transform: rotate(180deg);
}

/* Character History in Side Menu */
.side-menu-content .character-history {
    margin-top: 1rem;
}
.side-menu-content .character-history h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.7);
}
.side-menu-content .character-history ul {
    list-style: none;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
}

.side-menu-content .character-history ul li {
    margin-bottom: 0.5rem;
    list-style: none;
}

.side-menu-content .character-history ul li button.history-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary-gradient);
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.side-menu-content .character-history ul li button.history-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 10px var(--accent-shadow);
}

.side-menu-content .character-history ul li button.history-btn:active {
    transform: translateX(2px);
}

/* Character Creator Modal */
.character-creator-modal {
    max-width: 700px;
}

.profile-preview {
    margin-top: 1rem;
    text-align: center;
}

.profile-preview img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-border);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scrollbar Styles */
.chat-messages::-webkit-scrollbar,
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track,
.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb,
.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover,
.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Mobile Compatibility */
@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }
    
    .chat-container {
        padding: 0 1rem;
        height: calc(100vh - 80px); /* Account for header height */
        overflow: hidden;
        min-height: 0;       /* allow scrolling child */
    }
    
    .chat-messages {
        -webkit-overflow-scrolling: touch; /* Smooth iOS scrolling */
        overflow-y: auto;
        overscroll-behavior: contain;       /* Prevent rubber band effect */
        height: 100%;
        padding: 1rem 0;
        min-height: 0;       /* ensure scroll works */
    }
    
    .chat-input-container {
        padding: 1rem 0;
        position: sticky;
        bottom: 0;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .modal {
        width: 95%;
        margin: 1rem;
        max-height: 90vh;
    }
    
    .modal-content {
        padding: 1.5rem;
        max-height: 60vh;
        -webkit-overflow-scrolling: touch;
        overflow-y: auto;
    }
    
    .settings-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        text-align: left;
    }
    
    .side-menu {
        width: 280px;
        left: -280px;
    }
    
    .side-menu-toggle.active {
        left: 300px;
    }
    
    /* Mobile-specific touch improvements */
    .message-content {
        max-width: 85%;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .chat-input input {
        font-size: 16px; /* Prevent zoom on iOS */
        -webkit-appearance: none;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevent zoom on iOS */
        -webkit-appearance: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }
    
    .chat-container {
        padding: 0 1rem;
        height: calc(100vh - 80px); /* Account for header height */
        overflow: hidden;
        min-height: 0;       /* allow scrolling child */
    }
    
    .chat-messages {
        -webkit-overflow-scrolling: touch; /* Smooth iOS scrolling */
        overflow-y: auto;
        overscroll-behavior: contain;       /* Prevent rubber band effect */
        height: 100%;
        padding: 1rem 0;
        min-height: 0;       /* ensure scroll works */
    }
    
    .chat-input-container {
        padding: 1rem 0;
        position: sticky;
        bottom: 0;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .modal {
        width: 95%;
        margin: 1rem;
        max-height: 90vh;
    }
    
    .modal-content {
        padding: 1.5rem;
        max-height: 60vh;
        -webkit-overflow-scrolling: touch;
        overflow-y: auto;
    }
    
    .settings-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        text-align: left;
    }
    
    .side-menu {
        width: 280px;
        left: -280px;
    }
    
    .side-menu-toggle.active {
        left: 300px;
    }
    
    /* Mobile-specific touch improvements */
    .message-content {
        max-width: 85%;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .chat-input input {
        font-size: 16px; /* Prevent zoom on iOS */
        -webkit-appearance: none;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevent zoom on iOS */
        -webkit-appearance: none;
    }
}

/* Theme Variables */
:root {
    --primary-color: #ff6b6b;
    --primary-gradient: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    --bg-gradient: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    --accent-color: rgba(255, 107, 107, 0.1);
    --accent-border: rgba(255, 107, 107, 0.2);
    --accent-shadow: rgba(255, 107, 107, 0.3);
    --accent-glow: rgba(255, 107, 107, 0.2);
}

[data-theme="acid"] {
    --primary-color: #39ff14;
    --primary-gradient: linear-gradient(135deg, #39ff14 0%, #00ff41 100%);
    --bg-gradient: linear-gradient(135deg, #000000 0%, #0a1a0a 50%, #000000 100%);
    --accent-color: rgba(57, 255, 20, 0.1);
    --accent-border: rgba(57, 255, 20, 0.2);
    --accent-shadow: rgba(57, 255, 20, 0.3);
    --accent-glow: rgba(57, 255, 20, 0.2);
}

[data-theme="dark-purple"] {
    --primary-color: #9d4edd;
    --primary-gradient: linear-gradient(135deg, #9d4edd 0%, #7209b7 100%);
    --bg-gradient: linear-gradient(135deg, #000000 0%, #1a0a1a 50%, #000000 100%);
    --accent-color: rgba(157, 78, 221, 0.1);
    --accent-border: rgba(157, 78, 221, 0.2);
    --accent-shadow: rgba(157, 78, 221, 0.3);
    --accent-glow: rgba(157, 78, 221, 0.2);
}

[data-theme="ocean-blue"] {
    --primary-color: #0077be;
    --primary-gradient: linear-gradient(135deg, #0077be 0%, #00a8ff 100%);
    --bg-gradient: linear-gradient(135deg, #000000 0%, #0a1520 50%, #000000 100%);
    --accent-color: rgba(0, 119, 190, 0.1);
    --accent-border: rgba(0, 119, 190, 0.2);
    --accent-shadow: rgba(0, 119, 190, 0.3);
    --accent-glow: rgba(0, 119, 190, 0.2);
}

[data-theme="sunset-orange"] {
    --primary-color: #ff7f00;
    --primary-gradient: linear-gradient(135deg, #ff7f00 0%, #ff4500 100%);
    --bg-gradient: linear-gradient(135deg, #000000 0%, #1a0f0a 50%, #000000 100%);
    --accent-color: rgba(255, 127, 0, 0.1);
    --accent-border: rgba(255, 127, 0, 0.2);
    --accent-shadow: rgba(255, 127, 0, 0.3);
    --accent-glow: rgba(255, 127, 0, 0.2);
}

[data-theme="cyberpunk-pink"] {
    --primary-color: #ff00ff;
    --primary-gradient: linear-gradient(135deg, #ff00ff 0%, #ff1493 100%);
    --bg-gradient: linear-gradient(135deg, #000000 0%, #1a0a1a 50%, #000000 100%);
    --accent-color: rgba(255, 0, 255, 0.1);
    --accent-border: rgba(255, 0, 255, 0.2);
    --accent-shadow: rgba(255, 0, 255, 0.3);
    --accent-glow: rgba(255, 0, 255, 0.2);
}

[data-theme="cappuccino"] {
    --primary-color: #8B4513;
    --primary-gradient: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    --bg-gradient: linear-gradient(135deg, #1a1410 0%, #2d1f1a 50%, #1a1410 100%);
    --accent-color: rgba(139, 69, 19, 0.1);
    --accent-border: rgba(139, 69, 19, 0.2);
    --accent-shadow: rgba(139, 69, 19, 0.3);
    --accent-glow: rgba(139, 69, 19, 0.2);
}