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

:root {
    --primary-blue: #0f1419;
    --secondary-blue: #1a2332;
    --accent-blue: #2563eb;
    --light-blue: #3b82f6;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --success-green: #10b981;
    --danger-red: #ef4444;
    --warning-yellow: #f59e0b;
    --border-color: #334155;
    --gradient-bg: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--gradient-bg);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    background-image: url(../img/topb.png);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	height: 185px;
	
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i {
    font-size: 2rem;
    color: var(--accent-blue);
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--accent-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.token-address {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue);
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
	position: center;
	max-width: 300px;
}


.address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--light-blue);
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

.copy-btn {
    background: var(--accent-blue);
    border: none;
    padding: 8px;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.copy-btn:hover {
    background: var(--light-blue);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--secondary-blue);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2);
}

.stat-icon {
    background: linear-gradient(45deg, var(--accent-blue), var(--light-blue));
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stat-content {
    flex: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-change {
    font-size: 0.9rem;
    font-weight: 600;
}

.stat-change.positive {
    color: var(--success-green);
}

.stat-change.negative {
    color: var(--danger-red);
}

/* Tabs */
.tabs {
    display: flex;
    background: var(--secondary-blue);
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 20px;
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.tab-btn.active {
    background: var(--accent-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.tab-btn:hover:not(.active) {
    background: var(--primary-blue);
    color: var(--text-primary);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

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

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

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.refresh-btn {
    background: var(--accent-blue);
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.refresh-btn:hover {
    background: var(--light-blue);
}

/* Table Styles */
.table-container {
    background: var(--secondary-blue);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}


.fear-greed-card {
    background: linear-gradient(135deg, #1a234a 0%, #151a35 100%);
    border-radius: 15px;
    padding: 24px;
    margin: 20px 0;
    border: 1px solid rgba(123, 104, 238, 0.3);
}

#fearGreedChart {
    max-height: 400px;
    width: 100% !important;
}




.crypto-rates-card {
    background: linear-gradient(135deg, #21294a 0%, #1a1f3a 100%);
    border-radius: 15px;
    padding: 24px 32px;
    margin-bottom: 32px;
    border: 1px solid rgba(123, 104, 238, 0.3);
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
    color: #fff;
    max-width: 420px;
}

.crypto-rates-card h3 {
    margin-bottom: 20px;
    color: #7b68ee;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.crypto-rates-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
	margin-left: 20px;
}

.rate-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(42, 56, 79, 0.7);
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 500;
}

.rate-item span {
    color: #fff;
}

@media (max-width: 480px) {
    .crypto-rates-card {
        padding: 14px 8px;
        max-width: 100%;
    }
    .rate-item {
        font-size: 0.98rem;
        padding: 10px 8px;
    }
}












.data-table th {
    background: var(--primary-blue);
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.data-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.data-table tbody tr:hover {
    background: var(--primary-blue);
}

.loading {
    text-align: center;
    color: var(--text-secondary);
    padding: 40px;
}

/* Holders Grid */
.holders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.holder-card {
    background: var(--secondary-blue);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.holder-card:hover {
    transform: translateY(-3px);
}

.holder-rank {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.holder-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--light-blue);
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.holder-balance {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Analytics */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}
/* Добавить в style.css */
#dexChart {
    background: var(--secondary-blue);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.full-width {
    grid-column: 1 / -1;
}

.analytics-card h3 i {
    color: var(--accent-blue);
    margin-right: 10px;
}
.analytics-card {
    background: var(--secondary-blue);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-color);
}

.analytics-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.analytics-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.stat-row:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .address {
        max-width: 200px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs {
        flex-direction: column;
        gap: 6px;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .data-table {
        font-size: 0.8rem;
    }
    
    .data-table th,
    .data-table td {
        padding: 8px;
    }
}

/* Utility Classes */
.text-success {
    color: var(--success-green);
}

.text-danger {
    color: var(--danger-red);
}

.text-warning {
    color: var(--warning-yellow);
}

.text-muted {
    color: var(--text-secondary);
}
/* Добавить в style.css */
.social-footer {
    margin-top: 40px;
    padding: 30px 0;
    background: var(--secondary-blue);
    border-top: 1px solid var(--border-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-blue);
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.social-icon:hover::before {
    opacity: 0.2;
}

.social-icon i {
    font-size: 1.8rem;
    color: var(--text-primary);
    z-index: 1;
}

/* Цветовые акценты при наведении */
.telegram:hover i { color: #0088cc; }
.youtube:hover i { color: #ff0000; }
.twitter:hover i { color: #1da1f2; }
.discord:hover i { color: #5865f2; }

@media (max-width: 768px) {
    .social-links { gap: 15px; }
    .social-icon { width: 45px; height: 45px; }
    .social-icon i { font-size: 1.5rem; }
}
.copyright {
    margin-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
}

.copyright-symbol {
    margin-right: 5px;
    font-size: 1.1em;
}

.copyright-owner {
    margin-left: 8px;
    color: var(--text-primary);
}

@media (max-width: 480px) {
    .copyright {
        font-size: 0.8rem;
        padding: 10px 15px;
    }
}

.nav-buttons {
    display: flex;
    gap: 15px;
    margin-left: auto;
}

.nav-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    background: var(--secondary-blue);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.nav-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.nav-button:hover {
    background: var(--accent-blue);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.nav-button:hover::before {
    left: 100%;
}

.nav-button i {
    font-size: 1.1rem;
    color: var(--light-blue);
}

.nav-button span {
    position: relative;
    z-index: 1;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .nav-buttons {
        gap: 10px;
    }
    
    .nav-button {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-buttons {
        display: none; /* Можно заменить на бургер-меню при необходимости */
    }
}
.nav-button[target="_blank"] {
    position: relative;
    background: linear-gradient(
        45deg,
        var(--secondary-blue),
        var(--primary-blue)
    );
}

.nav-button[target="_blank"]::after {
    content: "\f35d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 8px;
    top: 6px;
    font-size: 0.6rem;
    opacity: 0.7;
}

/* Иконка Solana */
.fa-solana:before {
    content: "SOL";
    font-family: 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 0.9em;
    letter-spacing: -0.5px;
}

/* Адаптация для мобильных */
@media (max-width: 1200px) {
    .nav-buttons {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    
    .nav-button {
        padding: 10px 15px;
    }
    
    .nav-button span {
        display: none;
    }
    
    .nav-button i {
        margin-right: 0;
    }
}
.custom-floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 200px;
  height: 60px;
  background: linear-gradient(
    145deg,
    var(--secondary-blue) 20%,
    var(--accent-blue) 80%
  );
  border: none;
  border-radius: 15px;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.btn-text {
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.btn-glow {
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.4) 0%,
    transparent 70%
  );
  animation: glow-pulse 4s infinite;
  z-index: 1;
}

/* Анимация подсветки */
@keyframes glow-pulse {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.4; }
  100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.7; }
}

/* Эффекты при наведении */
.custom-floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.custom-floating-btn:hover .btn-text {
  transform: translateX(5px);
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .custom-floating-btn {
    width: 160px;
    height: 80px;
    bottom: 20px;
    right: 20px;
  }
  
  .btn-text {
    font-size: 1rem;
  }
}

.abstract-background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, 
    rgba(59, 130, 246, 0.15) 0%, 
    rgba(37, 99, 235, 0.1) 100%);
  filter: blur(30px);
  opacity: 0.4;
  transform: translateZ(0);
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(100px, -50px) scale(1.1);
  }
  50% {
    transform: translate(-80px, 70px) scale(0.9);
  }
  75% {
    transform: translate(-100px, -80px) scale(1.05);
  }
}

.particle-1 {
  width: 600px;
  height: 600px;
  top: 20%;
  left: 10%;
  animation: float 25s linear infinite;
  background: radial-gradient(circle, 
    var(--accent-blue) 0%, 
    rgba(37, 99, 235, 0) 70%);
}

.particle-2 {
  width: 400px;
  height: 400px;
  top: 60%;
  left: 70%;
  animation: float 30s linear infinite reverse;
  background: radial-gradient(circle, 
    var(--light-blue) 0%, 
    rgba(59, 130, 246, 0) 70%);
}

.particle-3 {
  width: 800px;
  height: 800px;
  top: -10%;
  left: 50%;
  animation: float 40s linear infinite;
  opacity: 0.3;
}

.particle-4 {
  width: 300px;
  height: 300px;
  top: 80%;
  left: 20%;
  animation: float 35s linear infinite alternate;
}

.particle-5 {
  width: 500px;
  height: 500px;
  top: 40%;
  left: 90%;
  animation: float 28s linear infinite reverse;
}














.container1 {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .header1 {
            text-align: center;
            margin-bottom: 40px;
        }

        .header1 h1 {
            font-size: 2.5rem;
            background: linear-gradient(45deg, #4a90e2, #7b68ee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .header1 p {
            color: #b0c4de;
            font-size: 1.1rem;
        }

        .search-container {
            background: rgba(42, 56, 79, 0.8);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        .search-form {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .search-input {
            flex: 1;
            padding: 15px 20px;
            background: rgba(26, 31, 58, 0.7);
            border: 2px solid #4a90e2;
            border-radius: 10px;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: #7b68ee;
            box-shadow: 0 0 15px rgba(123, 104, 238, 0.3);
        }

        .search-input::placeholder {
            color: #8a9db8;
        }

        .search-btn {
            padding: 15px 30px;
            background: linear-gradient(45deg, #4a90e2, #7b68ee);
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .search-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(123, 104, 238, 0.4);
        }

        .search-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

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

        .modal-content {
            background: linear-gradient(135deg, #2a384f 0%, #1a1f3a 100%);
            margin: 2% auto;
            padding: 0;
            border-radius: 20px;
            width: 95%;
            max-width: 1200px;
            max-height: 90vh;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-header {
            background: linear-gradient(45deg, #4a90e2, #7b68ee);
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h2 {
            margin: 0;
            font-size: 1.5rem;
        }

        .close {
            color: white;
            font-size: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close:hover {
            color: #ffcccb;
        }

        .modal-body {
            padding: 30px;
            max-height: 70vh;
            overflow-y: auto;
        }

        .wallet-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
    min-width: 0; /* Добавляем минимальную ширину для контейнера */
}

.info-card {
    background: rgba(42, 56, 79, 0.6);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(123, 104, 238, 0.3);
    min-width: 0; /* Исправляем проблему с минимальной шириной */
}

        .info-card h3 {
            color: #7b68ee;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

       /* Стили для элементов токенов */
.balance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 0; /* Разрешаем сжатие элементов */
}

        .balance-item:last-child {
            border-bottom: none;
        }

        .token-info {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}
.token-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

        .token-icon {
            width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(123, 104, 238, 0.3);
    background: linear-gradient(45deg, #4a90e2, #7b68ee);
        }
		.token-iconsol {
            width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(123, 104, 238, 0.3);
    background-image: url(../img/sol.png);
        }

        .transaction-item {
            background: rgba(26, 31, 58, 0.5);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 10px;
            border-left: 4px solid #4a90e2;
        }

        .transaction-item.transfer {
            border-left-color: #28a745;
        }

        .transaction-item.swap {
            border-left-color: #ffc107;
        }

        .transaction-item.nft {
            border-left-color: #e83e8c;
        }

        .loading {
            text-align: center;
            padding: 40px;
        }

        .spinner {
            border: 4px solid rgba(123, 104, 238, 0.3);
            border-radius: 50%;
            border-top: 4px solid #7b68ee;
            width: 60px;
            height: 60px;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

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

        .error {
            background: rgba(220, 53, 69, 0.2);
            border: 1px solid #dc3545;
            color: #ff6b6b;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }

        @media (max-width: 768px) {
            .search-form {
                flex-direction: column;
            }
            
            .search-input, .search-btn {
                width: 100%;
            }
            
            .modal-content {
                width: 98%;
                margin: 1% auto;
                max-height: 98vh;
            }
        }

@media (max-width: 480px) {
    .wallet-info {
        grid-template-columns: 1fr;
    }
    
    .token-name {
        max-width: 100px;
    }
}







