/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: #1a1a1a;
    --foreground: #fafafa;
    --card: #1f1f1f;
    --card-foreground: #fafafa;
    --primary: #6366f1;
    --primary-foreground: #ffffff;
    --secondary: #2a2a2a;
    --secondary-foreground: #fafafa;
    --muted: #3a3a3a;
    --muted-foreground: #999999;
    --accent: #6366f1;
    --accent-foreground: #ffffff;
    --border: #3a3a3a;
    --input: #2a2a2a;
    --ring: #6366f1;
    --radius: 0.75rem;
}

body {
    font-family: "Inter", "SF Pro Display", "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(8px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    padding: 0 1rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.search-box {
    display: none;
    position: relative;
    flex: 1;
    max-width: 28rem;
}

@media (min-width: 768px) {
    .search-box {
        display: block;
    }
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: var(--muted-foreground);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 0.5rem 0.75rem 0.5rem 2.5rem;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    font-size: 0.875rem;
}

.search-input::placeholder {
    color: var(--muted-foreground);
}

.header-nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .header-nav {
        display: flex;
    }
}

.nav-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    font-size: 0.875rem;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.nav-btn:hover {
    color: var(--foreground);
    background: var(--secondary);
}

.nav-btn.active {
    color: var(--foreground);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.icon-btn {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--foreground);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.icon-btn:hover {
    background: var(--secondary);
}

.icon-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.mobile-menu {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none;
    }
}

/* Category Navigation */
.category-nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(31, 31, 31, 0.5);
    backdrop-filter: blur(8px);
}

.category-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
}

.category-list::-webkit-scrollbar {
    display: none;
}

.category-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    font-size: 0.875rem;
    border-radius: var(--radius);
    white-space: nowrap;
    transition: all 0.2s;
}

.category-btn:hover {
    color: var(--foreground);
    background: var(--secondary);
}

.category-btn.active {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* Main Content */
.main-content {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

/* Filter Bar */
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-tabs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-tab {
    padding: 0.5rem 1rem;
    background: var(--secondary);
    border: none;
    color: var(--foreground);
    cursor: pointer;
    font-size: 0.875rem;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.filter-tab:hover {
    background: var(--muted);
}

.filter-tab.active {
    background: var(--secondary);
    color: var(--foreground);
}

.filter-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
    cursor: pointer;
    font-size: 0.875rem;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.filter-btn:hover {
    background: var(--secondary);
}

.filter-btn svg {
    width: 1rem;
    height: 1rem;
}

.chevron {
    width: 1rem;
    height: 1rem;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    min-width: 12rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem;
    z-index: 10;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--foreground);
    text-decoration: none;
    border-radius: calc(var(--radius) - 2px);
    transition: background 0.2s;
}

.dropdown-menu a:hover {
    background: var(--secondary);
}

/* Section Styles */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.section-subtitle {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.icon-primary {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.link-primary {
    font-size: 0.875rem;
    color: var(--primary);
    text-decoration: none;
}

.link-primary:hover {
    text-decoration: underline;
}

/* Sold NFT Section */
.sold-nft-section {
    margin-bottom: 3rem;
}

.sold-nft-card {
    max-width: 64rem;
    margin: 0 auto;
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.sold-nft-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.sold-nft-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .sold-nft-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.nft-image-container {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nft-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.sold-nft-card:hover .nft-image {
    transform: scale(1.05);
}

.nft-locked {
    text-align: center;
    padding: 2rem;
}

.lock-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    color: var(--muted-foreground);
    opacity: 0.5;
}

.lock-icon-small {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--muted-foreground);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: calc(var(--radius) - 2px);
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-sold {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #22c55e;
    color: white;
}

.nft-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nft-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nft-creator {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.nft-creator-hidden {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.seller-email-section {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
}

.info-label {
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.info-value {
    color: var(--foreground);
}

.font-mono {
    font-family: "Geist Mono", monospace;
}

.font-semibold {
    font-weight: 600;
}

.icon-small {
    width: 0.75rem;
    height: 0.75rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.stat-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.sale-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hidden-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hidden-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hidden-stats {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hidden-stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background: #5855eb;
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--secondary);
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.icon-inline {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

/* Collections Grid */
.collections-section {
    margin-bottom: 3rem;
}

.collections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

    @media (min-width: 1024px) {
        .collections-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        @media (min-width: 1280px) {
            .collections-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
    }
}

.collection-card {
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.collection-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
}

.collection-image {
    aspect-ratio: 1;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.collection-card:hover .collection-image {
    transform: scale(1.05);
}

.collection-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.collection-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.collection-creator {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.collection-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.collection-stat-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.collection-stat-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.collection-change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding-top: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.collection-change.positive {
    color: #22c55e;
}

.collection-change.negative {
    color: #ef4444;
}

/* Trending Section */
.trending-section {
    margin-bottom: 3rem;
}

.trending-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    @media (min-width: 1024px) {
        .trending-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        @media (min-width: 1280px) {
            .trending-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }
    }
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--border);
    transition: background 0.2s;
    cursor: pointer;
}

.trending-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.trending-image {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.trending-info {
    flex: 1;
    min-width: 0;
}

.trending-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trending-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.trending-price-value {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.trending-change {
    font-size: 0.75rem;
    font-weight: 500;
}

.trending-change.positive {
    color: #22c55e;
}

.trending-change.negative {
    color: #ef4444;
}

/* Top Movers Section */
.top-movers-section {
    margin-bottom: 3rem;
}

.top-movers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .top-movers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    @media (min-width: 1024px) {
        .top-movers-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
}

.mover-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.3s;
    cursor: pointer;
}

.mover-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
}

.mover-banner {
    aspect-ratio: 2 / 1;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.mover-card:hover .mover-banner {
    transform: scale(1.05);
}

.mover-content {
    padding: 1rem;
}

.mover-name {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.mover-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mover-price-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.mover-price-value {
    font-size: 0.875rem;
    font-weight: 600;
}

.mover-change {
    font-size: 1.125rem;
    font-weight: 700;
}

.mover-change.positive {
    color: #22c55e;
}

.mover-change.negative {
    color: #ef4444;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(31, 31, 31, 0.5);
    backdrop-filter: blur(8px);
    margin-top: 5rem;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--foreground);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social a {
    color: var(--muted-foreground);
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--foreground);
}

.footer-social svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--card);
    border-radius: var(--radius);
    width: 100%;
    max-width: 32rem;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.modal-sm {
    max-width: 28rem;
}

.modal-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.modal-logo {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(to bottom right, #3b82f6, #9333ea);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.modal-body {
    padding: 1.5rem;
}

.wallet-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
}

.wallet-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    cursor: pointer;
    transition: background 0.2s;
    text-align: left;
    font-weight: 500;
}

.wallet-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.wallet-option:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wallet-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.divider {
    position: relative;
    padding: 1rem 0;
    text-align: center;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.divider span {
    position: relative;
    background: var(--card);
    padding: 0 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.email-input-group {
    display: flex;
    gap: 0.5rem;
}

.email-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    background: var(--input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    font-size: 0.875rem;
}

.email-input::placeholder {
    color: var(--muted-foreground);
}

.email-submit {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.email-submit:hover:not(:disabled) {
    background: #5855eb;
}

.email-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.email-submit svg {
    width: 1rem;
    height: 1rem;
}

.legal-text {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
    padding-top: 1rem;
}

.legal-text a {
    color: var(--primary);
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

.error-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-bottom: 1rem;
}

.error-text-small {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-bottom: 1rem;
}

.info-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

/* Wallet Connect Button */
.wallet-connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    cursor: pointer;
    font-size: 0.875rem;
    transition: background 0.2s;
}

.wallet-connect-btn:hover {
    background: var(--secondary);
}

.wallet-connect-btn svg {
    width: 1rem;
    height: 1rem;
}

.wallet-connected {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wallet-address {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    font-size: 0.875rem;
}

.disconnect-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    font-size: 0.875rem;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.disconnect-btn:hover {
    background: var(--secondary);
}

/* Loading Spinner */
.spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

