body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f3f8fc 0%, #f9fcfe 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
    width: 95%;
    max-width: 1400px;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    min-height: 90vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: linear-gradient(90deg, rgba(210, 230, 245, 1) 0%, rgba(232, 241, 248, 1) 50%, rgba(210, 230, 245, 1) 100%);
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid #d8e4ed;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    color: #0d2946;
}

.logo img {
    height: 28px;
    margin-right: 10px;
}

.logo .dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #8aa7c2;
    margin-left: 10px;
    cursor: pointer;
    transition: transform 0.2s;
}

.logo:hover .dropdown-arrow {
    transform: translateY(2px);
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

nav ul li {
    margin: 0;
}

.nav-button {
    background: none;
    border: none;
    padding: 8px 22px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    color: #5a7a96;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.nav-button.active {
    background-color: #ffffff;
    color: #333;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-button:not(.active):hover {
    color: #333;
}

.wallet-connect {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-button {
    background-color: #ffffff;
    border: 1px solid #d8e4ed;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    font-size: 18px;
    color: #5a7a96;
    transition: background-color 0.3s;
}

.icon-button:hover {
    background-color: #f8f8f8;
}

.dropdown-arrow-tiny {
    width: 0;
    height: 0;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-top: 3.5px solid #8aa7c2;
    transition: transform 0.2s;
}

.icon-button:hover .dropdown-arrow-tiny {
    transform: translateY(1px);
}

.connect-wallet-button {
    background: #ffffff;
    color: #333;
    border: 1px solid #d8e4ed;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.connect-wallet-button:hover {
    background-color: #f8f8f8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px;
}

.hero-content {
    text-align: left;
    flex: 1;
    padding-right: 90px;
    opacity: 1 !important;
    visibility: visible !important;
}

.total-deposits {
    font-size: 15px;
    color: #5d6d7e;
    margin-bottom: 5px;
    background-color: #e6e9ed;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.total-deposits .amount {
    font-weight: 600;
    color: #313e4b;
    font-size: 17px;
}

.hero-content h1 {
    font-size: 58px;
    color: #0d2946 !important;
    margin: 0 0 25px 0;
    line-height: 1.2;
    font-weight: 700;
    z-index: 1;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
}

.connect-wallet-hero-button {
    background: linear-gradient(to right, #6a82fb, #a8c0ff);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-image video {
    width: 100%;
    height: auto;
    max-width: 400px;
    margin-right: -85px;
    opacity: 0.95;
}

/* Vaults Section Styles */
.vaults-section {
    margin-top: 40px;
    background-color: #fff;
    border-radius: 16px;
    border: 1px solid #e6e9ed;
    padding: 20px;
}

.vaults-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
}

.filter-section {
    display: flex;
    gap: 25px;
}

.filter-item {
    font-size: 14px;
    color: #5a7a96;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-item .filter-value {
    font-weight: 600;
    color: #0d2946;
    margin: 0 5px;
}

.dropdown-arrow-filter {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #8aa7c2;
    margin-left: 8px;
}

.search-section {
    display: flex;
    align-items: center;
    background-color: #f7fafd;
    border-radius: 12px;
    padding: 8px 12px;
    border: 1px solid #d8e4ed;
}

.search-section input {
    border: none;
    background: none;
    padding: 0 8px;
    font-size: 14px;
    outline: none;
    color: #333;
    width: 180px;
}

.search-section input::placeholder {
    color: #999;
}

.search-icon-vaults {
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%238aa7c2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

.vaults-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.vaults-table thead th {
    text-align: left;
    padding: 12px 15px;
    color: #5a7a96;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #e6e9ed;
    text-transform: uppercase;
}

.sort-arrow {
    color: #8aa7c2;
    margin-left: 4px;
}

.vaults-table tbody tr {
    border-bottom: 1px solid #e6e9ed;
    transition: background-color 0.2s;
}

.vaults-table tbody tr:hover {
    background-color: #f9fcfe;
}

.vaults-table tbody td {
    padding: 20px 15px;
    font-size: 15px;
    color: #0d2946;
    font-weight: 500;
    vertical-align: middle;
}

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

.token-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.info-icon {
    color: #8aa7c2;
    font-size: 16px;
    cursor: help;
    border: 1px solid #bdcddb;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.sub-text {
    font-size: 13px;
    color: #5a7a96;
    font-weight: 400;
    background-color: #f0f4f8;
    padding: 2px 6px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 4px;
}

.curator-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.curator-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.collateral-cell {
    display: flex;
    align-items: center;
}

.collateral-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
}

.collateral-icon:first-child {
    margin-left: 0;
}

.collateral-cell span {
    margin-left: 16px;
    color: #5a7a96;
}

.apy-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-weight: 600;
}

.apy-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.apy-icon {
    font-size: 14px;
}

.apy-icon.blue {
    color: #3498db;
}

.apy-icon.yellow {
    color: #f1c40f;
}


 