/* css/style.css - Version Ultra Moderne */
:root {
    --bg-dark: #000000;
    --bg-card: #0a0a0a;
    --yellow: #ffd60a;
    --yellow-dark: #ffc300;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --border: #1a1a1a;
    --danger: #ff3b30;
    --success: #34c759;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    padding-bottom: 0;
}

/* Navigation Desktop (fixe en haut à gauche) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 2rem;
    z-index: 1000;
}

.navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a:hover {
    color: var(--yellow);
}

/* Mobile Navigation (en bas) */
.mobile-navbar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 0.8rem 1rem;
    z-index: 1000;
}

.mobile-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-items a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    transition: color 0.3s;
}

.mobile-nav-items a i {
    font-size: 1.5rem;
}

.mobile-nav-items a.active {
    color: var(--yellow);
}

.mobile-nav-items a:hover {
    color: var(--yellow);
}

/* Main Content */
main {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

/* Auth Container */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 70px);
    padding: 2rem;
}

.auth-box {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 450px;
    border: 1px solid var(--border);
}

.auth-box h1 {
    text-align: center;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.tagline {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.auth-form {
    margin-bottom: 1.5rem;
}

.auth-form h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.auth-form input {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 1rem;
    background: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--yellow);
}

.auth-form button {
    width: 100%;
    padding: 12px;
    background: var(--yellow);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.auth-form button:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}

/* Dashboard Mobile First */
.dashboard-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.dashboard-header {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.dashboard-header h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stats {
    display: flex;
    gap: 1rem;
}

.stats span {
    background: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.stats span i {
    margin-right: 6px;
    color: var(--yellow);
}

.filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: #1a1a1a;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: all 0.3s;
}

.filter-btn.active {
    background: var(--yellow);
    color: #000;
    font-weight: 600;
}

/* Message Cards */
.messages-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 1rem;
    border: 1px solid var(--border);
    transition: transform 0.2s;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.message-date {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.message-actions {
    display: flex;
    gap: 0.8rem;
}

.message-actions button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.3rem;
    transition: transform 0.2s;
    color: var(--text-secondary);
}

.message-actions button:hover {
    transform: scale(1.1);
}

.like-btn.liked {
    color: var(--yellow);
}

.message-content p {
    margin-bottom: 1rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.message-photo img {
    max-width: 100%;
    max-height: 250px;
    border-radius: 12px;
    object-fit: cover;
}

/* Profile Public */
.profile-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
}

.profile-header {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--yellow);
    box-shadow: 0 0 20px rgba(255, 214, 10, 0.3);
}

.profile-header h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.profile-bio {
    color: var(--text-secondary);
    line-height: 1.5;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.link-card {
    background: var(--bg-card);
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border);
    position: relative;
}

.link-card:hover {
    transform: translateY(-2px);
    border-color: var(--yellow);
}

.link-card.pinned {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: #000;
}

.pin-badge {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.send-message-btn {
    width: 100%;
    background: var(--yellow);
    color: #000;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s;
}

.send-message-btn:hover {
    transform: translateY(-2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--bg-card);
    margin: 10% auto;
    padding: 1.5rem;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    border: 1px solid var(--border);
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.modal-content h2 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.modal-content textarea {
    width: 100%;
    padding: 1rem;
    background: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
}

.char-counter {
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.photo-upload {
    margin-bottom: 1.5rem;
}

.photo-upload label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--yellow);
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.modal-content button[type="submit"] {
    width: 100%;
    padding: 1rem;
    background: var(--yellow);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

/* Settings Page */
.settings-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
}

.settings-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.settings-card h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.settings-item {
    margin-bottom: 1rem;
}

.settings-item label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.settings-item input,
.settings-item textarea {
    width: 100%;
    padding: 0.8rem;
    background: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
}

.settings-item textarea {
    resize: vertical;
    min-height: 80px;
}

.link-item {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.link-item input {
    flex: 1;
}

.link-item .remove-link {
    color: var(--danger);
    cursor: pointer;
    padding: 0.5rem;
}

.add-link-btn {
    background: #1a1a1a;
    color: var(--yellow);
    border: 1px dashed var(--border);
    padding: 0.8rem;
    border-radius: 12px;
    width: 100%;
    cursor: pointer;
    margin-top: 0.5rem;
}

.save-btn {
    background: var(--yellow);
    color: #000;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    margin-top: 1rem;
}

.danger-btn {
    background: var(--danger);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    margin-top: 1rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border);
}

.empty-state i {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.alert-error {
    background: rgba(255, 59, 48, 0.2);
    color: var(--danger);
    border: 1px solid var(--danger);
}

.alert-success {
    background: rgba(52, 199, 89, 0.2);
    color: var(--success);
    border: 1px solid var(--success);
}

/* Mobile Specific */
@media (max-width: 768px) {
    .navbar {
        display: none;
    }
    
    .mobile-navbar {
        display: block;
    }
    
    main {
        margin-top: 0;
        margin-bottom: 70px;
        padding-bottom: 1rem;
    }
    
    body {
        padding-bottom: 0;
    }
    
    .dashboard-container,
    .profile-container,
    .settings-container {
        padding: 0.8rem;
    }
    
    .auth-container {
        padding: 1rem;
    }
    
    .auth-box {
        padding: 1.5rem;
    }
    
    .modal-content {
        margin: 20% auto;
        width: 95%;
        padding: 1rem;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .navbar {
        padding: 0.8rem 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .dashboard-container,
    .profile-container,
    .settings-container {
        padding: 2rem;
    }
}

/* Améliorations settings */
.settings-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--yellow);
    box-shadow: 0 0 20px rgba(255, 214, 10, 0.2);
}

.profile-pic-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}

.upload-pic-btn {
    background: var(--yellow);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.upload-pic-btn:hover {
    transform: translateY(-2px);
}

.delete-pic-btn {
    background: #1a1a1a;
    color: var(--danger);
    border: 1px solid var(--danger);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.delete-pic-btn:hover {
    background: var(--danger);
    color: white;
}

.settings-note {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.blocked-ip-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.blocked-ip-item:last-child {
    border-bottom: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat-item {
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 12px;
}

.stat-item i {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--yellow);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.pin-checkbox {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.empty-links-message {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.empty-links-message i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

@media (max-width: 768px) {
    .stats-grid {
        gap: 0.5rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .profile-pic-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .upload-pic-btn, .delete-pic-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==================== MOBILE NAVIGATION 3 ITEMS ==================== */
.mobile-navbar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid #1a1a1a;
    padding: 8px 16px 12px;
    z-index: 1000;
}

.mobile-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: #888888;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s;
    cursor: pointer;
    padding: 4px 16px;
    border-radius: 30px;
}

.mobile-nav-item i {
    font-size: 22px;
}

.mobile-nav-item.active {
    color: #ffd60a;
}

.mobile-nav-item:active {
    transform: scale(0.95);
}

/* ==================== BOTTOM SHEET MENU (MORE) ==================== */
.bottom-sheet {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: flex-end;
    justify-content: center;
}

.bottom-sheet.active {
    display: flex;
}

.bottom-sheet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.bottom-sheet-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: #0a0a0a;
    border-radius: 28px 28px 0 0;
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.bottom-sheet-handle {
    width: 40px;
    height: 4px;
    background: #2a2a2a;
    border-radius: 2px;
    margin: 12px auto 8px;
}

.bottom-sheet-content {
    max-height: 80vh;
    overflow-y: auto;
    padding-bottom: 20px;
}

/* Header du bottom sheet */
.bottom-sheet-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 20px 16px;
    border-bottom: 1px solid #1a1a1a;
}

.bottom-sheet-avatar {
    width: 48px;
    height: 48px;
    background: rgba(255, 214, 10, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-sheet-avatar i {
    font-size: 28px;
    color: #ffd60a;
}

.bottom-sheet-title strong {
    display: block;
    font-size: 16px;
    color: #ffffff;
}

.bottom-sheet-title span {
    font-size: 12px;
    color: #888888;
}

/* Menu items */
.bottom-sheet-menu {
    padding: 8px 0;
}

.bottom-sheet-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}

.bottom-sheet-item:active {
    background: #1a1a1a;
}

.item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 214, 10, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-icon i {
    font-size: 18px;
    color: #ffd60a;
}

.item-text {
    flex: 1;
}

.item-text span {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
}

.item-text small {
    font-size: 11px;
    color: #666666;
}

.item-arrow {
    color: #444444;
    font-size: 14px;
}

.bottom-sheet-divider {
    height: 1px;
    background: #1a1a1a;
    margin: 8px 20px;
}

/* Logout item special */
.logout-item .item-icon {
    background: rgba(255, 59, 48, 0.15);
}

.logout-item .item-icon i {
    color: #ff3b30;
}

.logout-item .item-text span {
    color: #ff3b30;
}

/* Desktop: navbar normale */
@media (min-width: 768px) {
    .mobile-navbar {
        display: none !important;
    }
    
    .bottom-sheet {
        display: none !important;
    }
}

/* Mobile: afficher la navbar mobile */
@media (max-width: 767px) {
    .navbar {
        display: none !important;
    }
    
    .mobile-navbar {
        display: block;
    }
    
    main {
        margin-bottom: 70px;
        padding-bottom: 20px;
    }
}

/* ==================== DROPDOWN MENU DESKTOP (MORE) ==================== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    font-size: 1rem;
    transition: color 0.3s;
    font-family: inherit;
}

.dropdown-btn:hover {
    color: var(--yellow);
}

/* Même style que les autres liens .nav-links a */
.nav-links a,
.dropdown-btn {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a:hover,
.dropdown-btn:hover {
    color: var(--yellow);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: background 0.2s;
    font-size: 0.9rem;
}

.dropdown-item i {
    width: 20px;
    font-size: 1rem;
    color: var(--yellow);
}

.dropdown-item span {
    flex: 1;
}

.dropdown-item:hover {
    background: #1a1a1a;
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

.dropdown-item.logout-item i,
.dropdown-item.logout-item span {
    color: var(--danger);
}

.dropdown-item.logout-item:hover {
    background: rgba(255, 59, 48, 0.1);
}

/* Animation pour le dropdown */
@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown.active .dropdown-menu {
    animation: dropdownFadeIn 0.2s ease;
}

/* Logo avec icône */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo span {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

/* Version mobile */
@media (max-width: 767px) {
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .logo span {
        font-size: 1.5rem;
    }
}

/* Export Section */
.export-info {
    background: rgba(255, 214, 10, 0.1);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.export-info i {
    color: var(--yellow);
    margin-right: 0.5rem;
}

.export-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-export {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: #000;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-export:hover {
    transform: scale(0.98);
}

.export-buttons-group {
    display: flex;
    gap: 0.8rem;
}

.btn-export-small {
    flex: 1;
    padding: 0.7rem;
    background: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.btn-export-small:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

@media (max-width: 480px) {
    .export-buttons-group {
        flex-direction: column;
        gap: 0.5rem;
    }
}