/* H1DEOUT Player Panel V2 - Post-Apocalyptic Military Theme */
/* 3-Column Layout: Characters | Tabs | Details */

/* Panel Overlay */
.panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.92), rgba(13, 14, 15, 0.98));
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Rajdhani', sans-serif;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Close Button V2 - Now inside container */
.panel-close-btn-v2 {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: linear-gradient(145deg, rgba(139, 26, 26, 0.8), rgba(106, 20, 20, 0.8));
    color: #d4cfc6;
    border: 1px solid rgba(139, 26, 26, 0.4);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10002;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.panel-close-btn-v2:hover {
    background: linear-gradient(145deg, #a52020, #8b1a1a);
    box-shadow: 0 0 15px rgba(139, 26, 26, 0.6);
    transform: rotate(90deg) scale(1.1);
}

/* Main Container */
.panel-container {
    position: relative; /* Added to anchor absolute children like the close button */
    display: grid;
    grid-template-columns: 400px 0 0;
    gap: 0;
    max-width: 400px;
    width: 100%;
    height: 85vh;
    background: linear-gradient(135deg, rgba(13, 14, 15, 0.95), rgba(20, 22, 24, 0.95));
    border: 1px solid rgba(92, 122, 74, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 
                0 0 80px rgba(92, 122, 74, 0.15);
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.panel-container.closing {
    animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.panel-container.character-selected {
    grid-template-columns: 300px 240px 1fr;
    max-width: 1600px;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(40px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from { 
        opacity: 1;
        transform: translateY(0);
    }
    to { 
        opacity: 0;
        transform: translateY(40px);
    }
}

/* Column Headers */
.column-header {
    background: linear-gradient(145deg, rgba(92, 122, 74, 0.3), rgba(92, 122, 74, 0.2));
    color: #d4cfc6;
    padding: 18px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(92, 122, 74, 0.4);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    overflow: hidden;
}

/* ===== LEFT COLUMN - CHARACTER LIST ===== */
.character-list-column {
    background: rgba(13, 14, 15, 0.9);
    border-right: 1px solid rgba(92, 122, 74, 0.3);
    display: flex;
    flex-direction: column;
}

.character-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.character-item {
    background: linear-gradient(135deg, rgba(20, 22, 24, 0.8), rgba(25, 27, 29, 0.8));
    border: 1px solid rgba(92, 122, 74, 0.2);
    border-left: 3px solid transparent;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.character-item:hover {
    background: linear-gradient(135deg, rgba(30, 32, 34, 0.9), rgba(35, 37, 39, 0.9));
    border-left-color: rgba(92, 122, 74, 0.6);
    transform: translateX(6px) scale(1.02);
    box-shadow: 0 4px 16px rgba(92, 122, 74, 0.15);
}

.tabs-column.hidden,
.details-column.hidden {
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.character-item.active {
    background: linear-gradient(135deg, rgba(92, 122, 74, 0.2), rgba(92, 122, 74, 0.15));
    border-left-color: #5c7a4a;
    border-color: rgba(92, 122, 74, 0.5);
    box-shadow: 0 4px 16px rgba(92, 122, 74, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.char-name {
    color: #d4cfc6;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.char-job {
    color: rgba(212, 207, 198, 0.6);
    font-size: 13px;
    margin-bottom: 4px;
}

.char-level {
    color: #8fbc6f;
    font-size: 12px;
    font-weight: 600;
}

.column-footer {
    padding: 15px;
    border-top: 1px solid rgba(92, 122, 74, 0.3);
    background: rgba(13, 14, 15, 0.5);
}

.logout-btn-v2 {
    width: 100%;
    background: linear-gradient(145deg, #8b1a1a, #6a1414);
    color: #d4cfc6;
    border: 1px solid rgba(139, 26, 26, 0.3);
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logout-btn-v2:hover {
    background: linear-gradient(145deg, #a52020, #8b1a1a);
    box-shadow: 0 0 15px rgba(139, 26, 26, 0.5);
    transform: translateY(-2px);
}

.logout-btn-v2 i {
    font-size: 16px;
}

/* ===== MIDDLE COLUMN - TABS ===== */
.tabs-column {
    background: rgba(18, 20, 22, 0.9);
    border-right: 1px solid rgba(92, 122, 74, 0.3);
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
    overflow: hidden;
}

.tabs-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.tab-item {
    background: linear-gradient(135deg, rgba(20, 22, 24, 0.6), rgba(25, 27, 29, 0.6));
    border: 1px solid rgba(92, 122, 74, 0.2);
    border-left: 3px solid transparent;
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(212, 207, 198, 0.7);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.tab-item:hover {
    background: linear-gradient(135deg, rgba(30, 32, 34, 0.8), rgba(35, 37, 39, 0.8));
    border-left-color: rgba(92, 122, 74, 0.6);
    color: rgba(212, 207, 198, 0.95);
    box-shadow: 0 4px 12px rgba(92, 122, 74, 0.12);
}

.tab-item.active {
    background: linear-gradient(135deg, rgba(92, 122, 74, 0.25), rgba(92, 122, 74, 0.18));
    border-left-color: #5c7a4a;
    border-color: rgba(92, 122, 74, 0.5);
    color: #d4cfc6;
    box-shadow: 0 4px 12px rgba(92, 122, 74, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tab-icon {
    font-size: 18px;
}

.tab-label {
    flex: 1;
}

/* ===== RIGHT COLUMN - DETAILS ===== */
.details-column {
    background: rgba(13, 14, 15, 0.8);
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
    overflow: hidden;
}

.details-header {
    background: linear-gradient(145deg, rgba(92, 122, 74, 0.2), rgba(92, 122, 74, 0.1));
    border-bottom: 2px solid rgba(92, 122, 74, 0.4);
    padding: 24px 32px;
}

.details-header h2 {
    color: #d4cfc6;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.details-header .subtitle {
    color: rgba(212, 207, 198, 0.6);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.details-content {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
}

/* ===== OVERVIEW TAB ===== */
.overview-tab h3 {
    color: #5c7a4a;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(92, 122, 74, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.stat-box {
    background: linear-gradient(135deg, rgba(20, 22, 24, 0.7), rgba(25, 27, 29, 0.6));
    border: 1px solid rgba(92, 122, 74, 0.3);
    border-left: 3px solid #5c7a4a;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat-box.skill-box {
    border-left-color: #3498db;
}

.stat-box:hover {
    background: linear-gradient(135deg, rgba(30, 32, 34, 0.85), rgba(35, 37, 39, 0.75));
    border-color: rgba(92, 122, 74, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(92, 122, 74, 0.25), 0 0 40px rgba(92, 122, 74, 0.1);
}

.stat-box.skill-box:hover {
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.2), 0 0 40px rgba(52, 152, 219, 0.1);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.stat-label {
    color: rgba(212, 207, 198, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stat-value {
    color: #8fbc6f;
    font-size: 24px;
    font-weight: 700;
}

.inventory-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.inventory-item {
    background: rgba(20, 22, 24, 0.6);
    border: 1px solid rgba(92, 122, 74, 0.2);
    padding: 12px;
    color: rgba(212, 207, 198, 0.8);
    font-size: 13px;
    transition: all 0.3s;
}

.inventory-item:hover {
    background: rgba(30, 32, 34, 0.8);
    border-color: rgba(92, 122, 74, 0.4);
}

/* ===== INVENTORY TAB ===== */
.inventory-tab h3 {
    color: #5c7a4a;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(92, 122, 74, 0.3);
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.inventory-slot {
    background: rgba(20, 22, 24, 0.6);
    border: 1px solid rgba(92, 122, 74, 0.2);
    padding: 16px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
}

.inventory-slot:hover {
    background: rgba(30, 32, 34, 0.8);
    border-color: rgba(92, 122, 74, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.item-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

.item-name {
    color: #e8e4db;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.item-description {
    color: rgba(212, 207, 198, 0.6);
    font-size: 11px;
    line-height: 1.4;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-amount {
    color: #8fbc6f;
    font-size: 15px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
    position: absolute;
    top: 8px;
    right: 8px;
}

.inventory-slot {
    position: relative;
}
/* Overview Tab Inventory Preview */
.inventory-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.inventory-item {
    background: rgba(30, 32, 34, 0.4);
    border: 1px solid rgba(92, 122, 74, 0.2);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-align: center;
    position: relative;
}

.inventory-item:hover {
    background: rgba(40, 42, 44, 0.6);
    border-color: rgba(92, 122, 74, 0.4);
}

.inventory-item .item-img {
    width: 48px;
    height: 48px;
}

.inventory-item .item-name {
    font-size: 12px;
}

.inventory-item .item-amount {
    font-size: 12px;
    padding: 1px 6px;
}

/* ===== OTHER TABS ===== */
.stats-tab h3,
.health-tab h3,
.achievements-tab h3,
.settings-tab h3 {
    color: #5c7a4a;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(92, 122, 74, 0.3);
}

/* Settings Tab Specific */
.settings-section {
    margin-bottom: 30px;
}

.settings-section h4 {
    color: rgba(212, 207, 198, 0.8);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
}

.settings-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(30, 32, 34, 0.4);
    border: 1px solid rgba(212, 207, 198, 0.1);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.setting-item:hover {
    background: rgba(40, 42, 44, 0.6);
    border-color: rgba(92, 122, 74, 0.4);
    transform: translateX(4px);
}

.setting-item span {
    color: #d4cfc6;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Custom Checkbox (Toggle Switch) */
.setting-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 44px;
    height: 22px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(212, 207, 198, 0.2);
}

.setting-item input[type="checkbox"]:checked {
    background: #5c7a4a;
    border-color: #8fbc6f;
}

.setting-item input[type="checkbox"]::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: #d4cfc6;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.3s;
}

.setting-item input[type="checkbox"]:checked::before {
    left: 24px;
    background: #fff;
}

/* Text Input for Settings */
.setting-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 207, 198, 0.2);
    border-radius: 4px;
    color: #d4cfc6;
    padding: 6px 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    width: 120px;
    outline: none;
    transition: all 0.3s;
}

.setting-input:focus {
    border-color: #5c7a4a;
    background: rgba(0, 0, 0, 0.5);
}

/* ===== CHAT LOGS TAB ===== */
.chat-logs-tab {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tab-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tab-header-row h3 {
    margin: 0 !important;
    border: none !important;
}

.log-filters {
    display: flex;
    gap: 15px;
    align-items: center;
}

.filter-group {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 207, 198, 0.2);
    border-radius: 6px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5c7a4a;
}

.filter-group i {
    font-size: 14px;
}

.log-date-picker, .log-search-input {
    background: transparent;
    border: none;
    color: #d4cfc6;
    font-family: 'Rajdhani', sans-serif;
    outline: none;
}

.log-date-picker {
    width: 130px;
    cursor: pointer;
}

.log-search-input {
    width: 200px;
}

.log-search-btn {
    background: #5c7a4a;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.log-search-btn:hover {
    background: #6a8f58;
}

.logs-list {
    flex: 1;
    overflow-y: auto;
    background: rgba(10, 12, 14, 0.4);
    border: 1px solid rgba(212, 207, 198, 0.1);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.log-entry {
    padding: 10px 14px;
    background: rgba(30, 32, 34, 0.3);
    border-radius: 6px;
    border-left: 3px solid rgba(92, 122, 74, 0.4);
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: fadeIn 0.3s ease-out;
}

.log-meta {
    display: flex;
    gap: 10px;
    font-size: 11px;
}

.log-date {
    color: rgba(212, 207, 198, 0.4);
}

.log-time {
    color: #5c7a4a;
    font-weight: bold;
}


.log-entry:hover {
    background: rgba(40, 42, 44, 0.5);
    border-left-color: #5c7a4a;
}

.log-time {
    color: #5c7a4a;
    font-weight: bold;
    white-space: nowrap;
}

.log-msg {
    color: #d4cfc6;
    word-break: break-word;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.save-settings-btn {
    background: linear-gradient(145deg, #5c7a4a, #4a5f3e);
    color: #d4cfc6;
    border: 1px solid rgba(92, 122, 74, 0.5);
    padding: 14px 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(92, 122, 74, 0.3);
}

.save-settings-btn:hover:not(:disabled) {
    background: linear-gradient(145deg, #6a8f58, #5c7a4a);
    box-shadow: 0 6px 20px rgba(92, 122, 74, 0.4);
    transform: translateY(-2px);
}

.save-settings-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.loading {
    text-align: center;
    padding: 60px 20px;
    color: rgba(212, 207, 198, 0.6);
    font-size: 16px;
}

.no-items {
    color: rgba(212, 207, 198, 0.5);
    text-align: center;
    padding: 40px;
    font-style: italic;
}

/* Scrollbar Styling */
.character-list::-webkit-scrollbar,
.tabs-list::-webkit-scrollbar,
.details-content::-webkit-scrollbar {
    width: 8px;
}

.character-list::-webkit-scrollbar-track,
.tabs-list::-webkit-scrollbar-track,
.details-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.character-list::-webkit-scrollbar-thumb,
.tabs-list::-webkit-scrollbar-thumb,
.details-content::-webkit-scrollbar-thumb {
    background: rgba(92, 122, 74, 0.5);
    border-radius: 4px;
}

.character-list::-webkit-scrollbar-thumb:hover,
.tabs-list::-webkit-scrollbar-thumb:hover,
.details-content::-webkit-scrollbar-thumb:hover {
    background: rgba(92, 122, 74, 0.7);
}

/* ===== VITAL SIGNS (HEALTH TAB) ===== */
.vitals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.vital-item {
    background: rgba(30, 32, 34, 0.4);
    border: 1px solid rgba(212, 207, 198, 0.1);
    border-radius: 12px;
    padding: 16px;
}

.vital-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vital-header span {
    color: #d4cfc6;
    font-size: 14px;
}

.vital-header .value {
    color: #d4cfc6;
    font-size: 14px;
}

.vital-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    overflow: hidden;
}

.vital-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vitals-separator {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(92, 122, 74, 0.4), transparent);
    margin: 32px 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .panel-container {
        grid-template-columns: 240px 200px 1fr;
    }
}

@media (max-width: 992px) {
    .panel-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr;
    }
    
    .character-list-column,
    .tabs-column {
        border-right: none;
        border-bottom: 1px solid rgba(92, 122, 74, 0.3);
    }
    
    .character-list,
    .tabs-list {
        max-height: 200px;
    }
}

/* Discord Login Button (from original) */
.discord-login-btn {
    background: linear-gradient(145deg, #5c7a4a, #4a5f3e);
    color: #d4cfc6;
    border: 1px solid rgba(92, 122, 74, 0.3);
    padding: 10px 24px;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.discord-login-btn:hover {
    background: linear-gradient(145deg, #6a8f58, #5c7a4a);
    border-color: rgba(92, 122, 74, 0.5);
    box-shadow: 0 0 20px rgba(92, 122, 74, 0.3);
    transform: translateY(-2px);
}
