* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.user-avatar-bubble {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ED1D24;
    box-shadow: 
        0 0 20px rgba(237, 29, 36, 0.6),
        0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.user-avatar-bubble:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 30px rgba(237, 29, 36, 0.8),
        0 6px 15px rgba(0, 0, 0, 0.6);
    border-color: #ff0000;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body {
    font-family: 'Oswald', sans-serif;
    background: #000000;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(237, 29, 36, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(237, 29, 36, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(237, 29, 36, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #ED1D24;
    border-radius: 0;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 
        0 0 30px rgba(237, 29, 36, 0.5),
        inset 0 0 20px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ED1D24, #000, #ED1D24, #000);
    background-size: 400% 400%;
    animation: borderGlow 3s ease infinite;
    z-index: -1;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.marvel-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(237, 29, 36, 0.8));
}

.marvel-logo img {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(237, 29, 36, 1));
}

h1 {
    color: #fff;
    font-family: 'Bebas Neue', cursive;
    font-size: 4em;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 
        0 0 10px rgba(237, 29, 36, 0.8),
        0 0 20px rgba(237, 29, 36, 0.6),
        0 0 30px rgba(237, 29, 36, 0.4),
        3px 3px 0px #ED1D24;
    letter-spacing: 3px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-card {
    background: linear-gradient(135deg, #ED1D24 0%, #8B0000 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 0;
    text-align: center;
    min-width: 150px;
    border: 2px solid #fff;
    box-shadow: 
        0 0 20px rgba(237, 29, 36, 0.6),
        inset 0 0 20px rgba(0,0,0,0.3);
    transform: skewX(-10deg);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: skewX(-10deg) translateY(-5px);
    box-shadow: 
        0 10px 40px rgba(237, 29, 36, 0.8),
        inset 0 0 20px rgba(0,0,0,0.3);
}

.stat-card > * {
    transform: skewX(10deg);
}

.stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Bebas Neue', cursive;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.stat-label {
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.controls {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.btn {
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #ED1D24;
    color: white;
    border: 2px solid #ED1D24;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #ff0000;
    transform: translateY(-2px);
    box-shadow: 
        0 10px 20px rgba(237, 29, 36, 0.5),
        0 0 30px rgba(237, 29, 36, 0.3);
}

.search-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    background: #0a0a0a;
    border: 2px solid #333;
    color: white;
    font-size: 1em;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #ED1D24;
    box-shadow: 0 0 15px rgba(237, 29, 36, 0.3);
}

.filter-select {
    padding: 12px 15px;
    background: #0a0a0a;
    border: 2px solid #333;
    color: white;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-select:focus {
    outline: none;
    border-color: #ED1D24;
}

.collection-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #333;
    border-left: 4px solid #00ff00;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.collection-info p {
    color: #ccc;
    margin: 0;
    font-size: 0.95em;
    letter-spacing: 0.5px;
}

.figures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.figure-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #333;
    padding: 25px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.figure-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #0a0a0a;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 10px;
}

.figure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ED1D24, #ff6b6b, #ED1D24);
    background-size: 200% 100%;
    animation: slideGradient 3s linear infinite;
}

@keyframes slideGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.figure-card:hover {
    transform: translateY(-8px);
    border-color: #ED1D24;
    box-shadow: 
        0 15px 40px rgba(237, 29, 36, 0.3),
        0 0 30px rgba(237, 29, 36, 0.2);
}

.figure-name {
    font-size: 1.4em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Bebas Neue', cursive;
}

.figure-wave {
    color: #999;
    font-size: 0.9em;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.figure-status {
    display: inline-block;
    padding: 6px 15px;
    font-size: 0.85em;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
}

.status-owned {
    background: #00ff00;
    color: #000;
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.status-wishlist {
    background: #ffa500;
    color: #000;
    border-color: #ffa500;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.status-ordered {
    background: #00bfff;
    color: #000;
    border-color: #00bfff;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.figure-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.9em;
    color: #ccc;
    line-height: 1.6;
}

.figure-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.85em;
    border: 2px solid;
}

.btn-edit {
    background: transparent;
    color: #00bfff;
    border-color: #00bfff;
}

.btn-edit:hover {
    background: #00bfff;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

.btn-delete {
    background: transparent;
    color: #ff0000;
    border-color: #ff0000;
}

.btn-delete:hover {
    background: #ff0000;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.btn-got-it {
    background: transparent;
    color: #00ff00;
    border-color: #00ff00;
}

.btn-got-it:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 3px solid #ED1D24;
    margin: 50px auto;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s;
    box-shadow: 
        0 0 50px rgba(237, 29, 36, 0.5),
        inset 0 0 30px rgba(0,0,0,0.5);
}

.modal-content h2 {
    color: #fff;
    font-family: 'Bebas Neue', cursive;
    font-size: 2em;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(237, 29, 36, 0.5);
}

.close {
    color: #ED1D24;
    float: right;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.close:hover {
    color: #ff0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    transform: rotate(90deg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ED1D24;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #0a0a0a;
    border: 2px solid #333;
    color: white;
    font-size: 1em;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ED1D24;
    box-shadow: 0 0 15px rgba(237, 29, 36, 0.3);
}

.empty-state {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #333;
    padding: 80px 30px;
    text-align: center;
}

.empty-state h2 {
    color: #ED1D24;
    margin-bottom: 15px;
    font-family: 'Bebas Neue', cursive;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.empty-state p {
    color: #999;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.user-info {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 10px 20px;
    border: 2px solid #ED1D24;
    box-shadow: 0 0 20px rgba(237, 29, 36, 0.3);
}

.user-name {
    color: #fff;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sign-out-btn {
    background: transparent;
    color: #ED1D24;
    border: 2px solid #ED1D24;
    padding: 5px 15px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.sign-out-btn:hover {
    background: #ED1D24;
    color: #fff;
    box-shadow: 0 0 10px rgba(237, 29, 36, 0.5);
}

.nav-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 80px;
    padding: 10px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #333;
}

.nav-tab {
    padding: 12px 30px;
    background: transparent;
    color: #999;
    border: 2px solid #333;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.nav-tab.active {
    background: #ED1D24;
    color: white;
    border-color: #ED1D24;
    box-shadow: 0 0 20px rgba(237, 29, 36, 0.5);
}

.nav-tab:hover:not(.active) {
    border-color: #ED1D24;
    color: #ED1D24;
}

.tab-content {
    display: none;
}

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

.inventory-controls {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.inventory-stats {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #333;
    padding: 15px 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.inventory-stat {
    color: #999;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.inventory-stat strong {
    color: #ED1D24;
    font-size: 1.3em;
    margin-left: 10px;
    font-family: 'Bebas Neue', cursive;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 10px;
    overflow: visible;
}

.inventory-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #333;
    padding: 20px;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.inventory-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #0a0a0a;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 10px;
}

.inventory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #666, #999, #666);
    background-size: 200% 100%;
    animation: slideGradient 3s linear infinite;
}

.inventory-card:hover {
    transform: translateY(-5px);
    border-color: #666;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.inventory-card.owned {
    border-color: #00ff00;
    background: linear-gradient(135deg, #0a2a0a 0%, #0a0a0a 100%);
}

.inventory-card.owned::before {
    background: linear-gradient(90deg, #00ff00, #00aa00, #00ff00);
}

.inventory-name {
    font-size: 1.2em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Bebas Neue', cursive;
}

.inventory-wave {
    color: #999;
    font-size: 0.85em;
    margin-bottom: 10px;
}

.inventory-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
}

.inventory-category {
    background: #333;
    color: #ccc;
    padding: 4px 10px;
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inventory-price {
    color: #ED1D24;
    font-weight: 700;
    font-size: 1.1em;
}

.add-to-collection {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    background: transparent;
    color: #00ff00;
    border: 2px solid #00ff00;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.add-to-collection:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.inventory-card.owned .add-to-collection {
    background: #00ff00;
    color: #000;
    cursor: default;
}

.inventory-card.owned .add-to-collection:hover {
    box-shadow: none;
}

.collection-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    color: #000;
    padding: 8px 40px;
    font-weight: 700;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 
        0 0 20px rgba(0, 255, 0, 0.8),
        0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    animation: ribbonGlow 2s ease-in-out infinite;
}

.wishlist-ribbon {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    box-shadow: 
        0 0 20px rgba(255, 165, 0, 0.8),
        0 4px 10px rgba(0, 0, 0, 0.3);
    animation: wishlistRibbonGlow 2s ease-in-out infinite;
}

@keyframes wishlistRibbonGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 165, 0, 0.8), 0 4px 10px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 165, 0, 1), 0 4px 15px rgba(0, 0, 0, 0.4); }
}

.inventory-card.wishlisted {
    border-color: #ffa500;
    background: linear-gradient(135deg, #1a1510 0%, #0a0a0a 100%);
}

.inventory-card.wishlisted::before {
    background: linear-gradient(90deg, #ffa500, #ff8c00, #ffa500);
}

@keyframes ribbonGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 0, 0.8), 0 4px 10px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 0 30px rgba(0, 255, 0, 1), 0 4px 15px rgba(0, 0, 0, 0.4); }
}

.purchase-links {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.purchase-link {
    flex: 1;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid;
    transition: all 0.3s;
}

.amazon-link {
    background: transparent;
    color: #ff9900;
    border-color: #ff9900;
}

.amazon-link:hover {
    background: #ff9900;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.5);
}

.ebay-link {
    background: transparent;
    color: #0064d2;
    border-color: #0064d2;
}

.ebay-link:hover {
    background: #0064d2;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 100, 210, 0.5);
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.owned-btn {
    background: transparent;
    color: #00ff00;
    border-color: #00ff00;
    flex: 1;
}

.owned-btn:hover {
    background: #00ff00;
    color: #000;
}

.wishlist-btn {
    background: transparent;
    color: #ffa500;
    border-color: #ffa500;
    flex: 1;
}

.wishlist-btn:hover {
    background: #ffa500;
    color: #000;
}

.remove-btn {
    background: transparent;
    color: #ff0000;
    border-color: #ff0000;
    flex: 1;
}

.remove-btn:hover {
    background: #ff0000;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.view-toggle {
    background: linear-gradient(135deg, #333 0%, #222 100%);
    color: #fff;
    border: 2px solid #666;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-toggle:hover {
    border-color: #ED1D24;
    box-shadow: 0 0 10px rgba(237, 29, 36, 0.3);
}

.view-icon {
    font-size: 1.2em;
}

.inventory-grouped {
    display: block;
}

.group-header {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #ED1D24 0%, #8B0000 100%);
    color: white;
    padding: 15px 25px;
    margin: 30px 0 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid #fff;
    box-shadow: 
        0 0 20px rgba(237, 29, 36, 0.4),
        inset 0 0 20px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.group-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: slideShine 3s ease-in-out infinite;
}

@keyframes slideShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.group-header h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2em;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.group-count {
    background: rgba(0,0,0,0.3);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1em;
    font-weight: 600;
}

.group-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 0 30px 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
}

.group-grid:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    
    .controls {
        flex-direction: column;
    }
    
    .search-input,
    .filter-select {
        width: 100%;
    }
    
    .figures-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        min-width: 100px;
        padding: 15px 25px;
    }
}