@font-face {
    font-family: "Ripple";
    src: url(/fonts/ripple_regular.woff2) format("woff2");
    font-display: swap;
    font-weight: 350;
    font-style: normal
}

@font-face {
    font-family: "Ripple";
    src: url(/fonts/ripple_bold.woff2) format("woff2");
    font-display: swap;
    font-weight: 500;
    font-style: bold
}

@font-face {
    font-family: "Arial";
    src: local("Arial");
    ascent-override: 93.53%;
    descent-override: 23.68%;
    line-gap-override: 0.00%;
    size-adjust: 101.79%
}

html,
body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background: rgb(255, 255, 255);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 350;
    color: #464a4e;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

header {
    background: rgb(255, 255, 255);
    padding: 20px 0px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}


.header .nav {
    display: flex;
    align-items: center;
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(0, 106, 255);
    font-size: 24px;
    font-weight: 600;
}

.header .logo img {
    width: 30px;
    height: 30px;
}

.buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: block;
    width: max-content;
}

.btn-primary {
    background: radial-gradient(circle, rgb(0, 91, 204), rgb(0, 140, 255) 80%);
    color: white;
    border: none;
}

.btn-outline {
    border: 1px solid rgb(0, 106, 255);
    color: rgb(0, 106, 255);
    background: transparent;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 106, 255, 0.2);
}

section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.gradient-text {
    background: linear-gradient(313deg, #99d8ff 7.93%, #0067e5 87.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.hero {
    display: flex;
    align-items: center;
    gap: 50px;
    z-index: 1;
    position: relative;
    padding: 120px 0px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: right;
}


.pools-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.pools-table th,
.pools-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.pools-table th {
    background-color: rgb(0, 106, 255);
    color: white;
}

.pools-table tr:hover {
    background-color: #f9f9f9;
}

.pools-table tr:last-child td {
    border-bottom: none;
}


.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 106, 255, 0.1);
}


.benefit-icon i {
    color: rgb(0, 106, 255);
    font-size: 24px;
}


.calculator {
    background: #f9f9ff;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
}

.calc-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}


.staking-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.option-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card.active {
    border-color: rgb(0, 106, 255);
    box-shadow: 0 5px 15px rgba(0, 106, 255, 0.1);
}

.option-card:hover {
    transform: translateY(-2px);
}

.option-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.option-title {
    font-weight: 600;
}

.option-apy {
    color: rgb(0, 106, 255);
    font-weight: 600;
}

.results {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
}

.result-amount {
    font-size: 32px;
    font-weight: 700;
    color: rgb(0, 106, 255);
    margin: 10px 0;
}


.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.chart-container {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 400px;
}

.live-feed {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 400px;
    overflow-y: auto;
}

.feed-item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feed-item:last-child {
    border-bottom: none;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: rgb(0, 106, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.feed-content {
    flex: 1;
}

.username {
    font-weight: 600;
    color: #000;
}

.timestamp {
    font-size: 12px;
    color: #777;
}


.faq-container {
    margin: 40px 0;
}

.accordion {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    background: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #f9f9f9;
}

.accordion-header h3 {
    margin: 0;
    font-size: 18px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
}

.accordion-content-inner {
    padding: 0 20px 20px;
}

.accordion.active .accordion-content {
    max-height: 1000px;
}

footer {
    background: #141a1f;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 30px;
    height: 30px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 15px;
}

.position-meta .location {
	flex-direction: row!important;
	gap: 10px;
	align-items: center;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgb(0, 140, 255);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgb(0, 106, 255);
    transform: translateY(-3px);
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}


.modal {
    background: white;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #777;
}

.auth-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    color: #777;
    transition: all 0.3s ease;
}

.auth-tab.active {
    color: rgb(0, 106, 255);
    border-bottom: 2px solid rgb(0, 106, 255);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }
}

.animation_block {
    display: flex;
    filter: grayscale(1);
    pointer-events: none;
    position: absolute;
    align-items: center;
    justify-content: center;
    z-index: -1;
    width: 100%;
    opacity: 0.2;
}

.animation_block svg {
    max-width: 30vw;
}

#redblocks>* {
    transform: translate3d(160px, -93px, 0);
    animation: moveblocks 4s 1s ease infinite;
}

@keyframes moveblocks {
    0% {
        transform: translate3d(160px, -93px, 0);
    }

    50%,
    100% {
        transform: translate(0);
    }
}

#firstBlock {
    transform: translate3d(160px, -93px, 0);
    animation: firstBlock 4s 1s ease infinite;
}

#blockdis {
    animation: blockdis 4s 1s ease infinite;
}

@keyframes blockdis {
    30% {
        opacity: 1;
    }

    40%,
    100% {
        opacity: 0;
        transform: translate3d(-160px, 93px, 0);
    }
}

@keyframes firstBlock {

    0%,
    15% {
        opacity: 0;
    }

    40%,
    100% {
        opacity: 1;
    }
}


#redblocksparticles g:nth-child(1) polygon {
    opacity: 0.35;
    animation: glow 4s 1s ease infinite;
}

#redblocksparticles g:nth-child(2) polygon {
    opacity: 0.35;
    animation: glow 4s 1s ease infinite;
}

#redblocksparticles g:nth-child(3) polygon {
    opacity: 0.35;
    animation: glow 4s 1s ease infinite;
}

#redblocksparticles g:nth-child(4) polygon {
    opacity: 0.35;
    animation: glow 4s 1s ease infinite;
}


#redblocksparticles g:nth-child(1) g circle:nth-child(1) {
    animation: dots 4s 1050ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(2) {
    animation: dots 4s 1100ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(3) {
    animation: dots 4s 1150ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(4) {
    animation: dots 4s 1200ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(5) {
    animation: dots 4s 1250ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(6) {
    animation: dots 4s 1300ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(7) {
    animation: dots 4s 1350ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(8) {
    animation: dots 4s 1400ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(9) {
    animation: dots 4s 1450ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(10) {
    animation: dots 4s 1500ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(11) {
    animation: dots 4s 1550ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(12) {
    animation: dots 4s 1600ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(13) {
    animation: dots 4s 1650ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(14) {
    animation: dots 4s 1700ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(15) {
    animation: dots 4s 1750ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(16) {
    animation: dots 4s 1800ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(17) {
    animation: dots 4s 1850ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(18) {
    animation: dots 4s 1900ms ease infinite;
}

#redblocksparticles g:nth-child(1) g circle:nth-child(19) {
    animation: dots 4s 1950ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(1) {
    animation: dots 4s 1050ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(2) {
    animation: dots 4s 1100ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(3) {
    animation: dots 4s 1150ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(4) {
    animation: dots 4s 1200ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(5) {
    animation: dots 4s 1250ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(6) {
    animation: dots 4s 1300ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(7) {
    animation: dots 4s 1350ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(8) {
    animation: dots 4s 1400ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(9) {
    animation: dots 4s 1450ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(10) {
    animation: dots 4s 1500ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(11) {
    animation: dots 4s 1550ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(12) {
    animation: dots 4s 1600ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(13) {
    animation: dots 4s 1650ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(14) {
    animation: dots 4s 1700ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(15) {
    animation: dots 4s 1750ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(16) {
    animation: dots 4s 1800ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(17) {
    animation: dots 4s 1850ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(18) {
    animation: dots 4s 1900ms ease infinite;
}

#redblocksparticles g:nth-child(2) g circle:nth-child(19) {
    animation: dots 4s 1950ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(1) {
    animation: dots 4s 1050ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(2) {
    animation: dots 4s 1100ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(3) {
    animation: dots 4s 1150ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(4) {
    animation: dots 4s 1200ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(5) {
    animation: dots 4s 1250ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(6) {
    animation: dots 4s 1300ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(7) {
    animation: dots 4s 1350ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(8) {
    animation: dots 4s 1400ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(9) {
    animation: dots 4s 1450ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(10) {
    animation: dots 4s 1500ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(11) {
    animation: dots 4s 1550ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(12) {
    animation: dots 4s 1600ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(13) {
    animation: dots 4s 1650ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(14) {
    animation: dots 4s 1700ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(15) {
    animation: dots 4s 1750ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(16) {
    animation: dots 4s 1800ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(17) {
    animation: dots 4s 1850ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(18) {
    animation: dots 4s 1900ms ease infinite;
}

#redblocksparticles g:nth-child(3) g circle:nth-child(19) {
    animation: dots 4s 1950ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(1) {
    animation: dots 4s 1050ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(2) {
    animation: dots 4s 1100ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(3) {
    animation: dots 4s 1150ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(4) {
    animation: dots 4s 1200ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(5) {
    animation: dots 4s 1250ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(6) {
    animation: dots 4s 1300ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(7) {
    animation: dots 4s 1350ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(8) {
    animation: dots 4s 1400ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(9) {
    animation: dots 4s 1450ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(10) {
    animation: dots 4s 1500ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(11) {
    animation: dots 4s 1550ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(12) {
    animation: dots 4s 1600ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(13) {
    animation: dots 4s 1650ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(14) {
    animation: dots 4s 1700ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(15) {
    animation: dots 4s 1750ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(16) {
    animation: dots 4s 1800ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(17) {
    animation: dots 4s 1850ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(18) {
    animation: dots 4s 1900ms ease infinite;
}

#redblocksparticles g:nth-child(4) g circle:nth-child(19) {
    animation: dots 4s 1950ms ease infinite;
}

@keyframes glow {

    0%,
    45% {
        opacity: 0;
    }

    60%,
    100% {
        opacity: 0.35;
    }
}

@keyframes dots {

    0%,
    35% {
        transform: translate(0);
        opacity: 0;
    }

    60%,
    80% {
        transform: translate(55px, -35px);
        opacity: 1;
    }

    100% {
        transform: translate(55px, -35px);
        opacity: 0;
    }
}


#purplebg> :nth-child(1) {
    animation: up 2s 500ms ease infinite alternate;
}

#purplebg> :nth-child(2) {
    animation: up 2s 1000ms ease infinite alternate;
}

#purplebg> :nth-child(3) {
    animation: up 2s 1500ms ease infinite alternate;
}

#purplebg> :nth-child(4) {
    animation: up 2s 2000ms ease infinite alternate;
}

#purplebg> :nth-child(5) {
    animation: up 2s 2500ms ease infinite alternate;
}

#purplebg> :nth-child(6) {
    animation: up 2s 3000ms ease infinite alternate;
}

#purplebg> :nth-child(7) {
    animation: up 2s 3500ms ease infinite alternate;
}

#purplebg> :nth-child(8) {
    animation: up 2s 4000ms ease infinite alternate;
}

#purplebg> :nth-child(9) {
    animation: up 2s 4500ms ease infinite alternate;
}

#purplebg> :nth-child(10) {
    animation: up 2s 5000ms ease infinite alternate;
}

#purplebg> :nth-child(11) {
    animation: up 2s 5500ms ease infinite alternate;
}

#purplebg> :nth-child(12) {
    animation: up 2s 6000ms ease infinite alternate;
}

#purplebg> :nth-child(13) {
    animation: up 2s 6500ms ease infinite alternate;
}

#purplebg> :nth-child(14) {
    animation: up 2s 7000ms ease infinite alternate;
}

#purplebg> :nth-child(15) {
    animation: up 2s 7500ms ease infinite alternate;
}

#purplebg> :nth-child(16) {
    animation: up 2s 8000ms ease infinite alternate;
}

#purplebg> :nth-child(17) {
    animation: up 2s 8500ms ease infinite alternate;
}

#purplebg> :nth-child(18) {
    animation: up 2s 9000ms ease infinite alternate;
}

#purplebg> :nth-child(19) {
    animation: up 2s 9500ms ease infinite alternate;
}

#purplebg> :nth-child(20) {
    animation: up 2s 10000ms ease infinite alternate;
}

#purplebg> :nth-child(21) {
    animation: up 2s 10500ms ease infinite alternate;
}

@keyframes up {
    to {
        transform: translate(0, -25px);
    }
}


#bottomparticles> :nth-child(1) {
    animation: particles 4s 300ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles> :nth-child(2) {
    animation: particles 4s 600ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles> :nth-child(3) {
    animation: particles 4s 900ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles> :nth-child(4) {
    animation: particles 4s 1200ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles> :nth-child(5) {
    animation: particles 4s 1500ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles> :nth-child(6) {
    animation: particles 4s 1800ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles> :nth-child(7) {
    animation: particles 4s 2100ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles> :nth-child(8) {
    animation: particles 4s 2400ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles> :nth-child(9) {
    animation: particles 4s 2700ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles> :nth-child(10) {
    animation: particles 4s 3000ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles> :nth-child(11) {
    animation: particles 4s 3300ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles> :nth-child(12) {
    animation: particles 4s 3600ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles2> :nth-child(1) {
    animation: particles 4s 300ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles2> :nth-child(2) {
    animation: particles 4s 600ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles2> :nth-child(3) {
    animation: particles 4s 900ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles2> :nth-child(4) {
    animation: particles 4s 1200ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles2> :nth-child(5) {
    animation: particles 4s 1500ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles2> :nth-child(6) {
    animation: particles 4s 1800ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles2> :nth-child(7) {
    animation: particles 4s 2100ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles2> :nth-child(8) {
    animation: particles 4s 2400ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles2> :nth-child(9) {
    animation: particles 4s 2700ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles2> :nth-child(10) {
    animation: particles 4s 3000ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles2> :nth-child(11) {
    animation: particles 4s 3300ms ease infinite alternate, p 2s ease infinite alternate;
}

#bottomparticles2> :nth-child(12) {
    animation: particles 4s 3600ms ease infinite alternate, p 2s ease infinite alternate;
}

#redglowparticles> :nth-child(1) {
    animation: particles 4s 300ms ease infinite alternate, p 2s ease infinite alternate;
}

#redglowparticles> :nth-child(2) {
    animation: particles 4s 600ms ease infinite alternate, p 2s ease infinite alternate;
}

#redglowparticles> :nth-child(3) {
    animation: particles 4s 900ms ease infinite alternate, p 2s ease infinite alternate;
}

#redglowparticles> :nth-child(4) {
    animation: particles 4s 1200ms ease infinite alternate, p 2s ease infinite alternate;
}

#redglowparticles> :nth-child(5) {
    animation: particles 4s 1500ms ease infinite alternate, p 2s ease infinite alternate;
}

#redglowparticles> :nth-child(6) {
    animation: particles 4s 1800ms ease infinite alternate, p 2s ease infinite alternate;
}

#redglowparticles> :nth-child(7) {
    animation: particles 4s 2100ms ease infinite alternate, p 2s ease infinite alternate;
}

#redglowparticles> :nth-child(8) {
    animation: particles 4s 2400ms ease infinite alternate, p 2s ease infinite alternate;
}

#redglowparticles> :nth-child(9) {
    animation: particles 4s 2700ms ease infinite alternate, p 2s ease infinite alternate;
}

#redglowparticles> :nth-child(10) {
    animation: particles 4s 3000ms ease infinite alternate, p 2s ease infinite alternate;
}

#redglowparticles> :nth-child(11) {
    animation: particles 4s 3300ms ease infinite alternate, p 2s ease infinite alternate;
}

#redglowparticles> :nth-child(12) {
    animation: particles 4s 3600ms ease infinite alternate, p 2s ease infinite alternate;
}

@keyframes p {

    85%,
    100% {
        opacity: 0;
    }
}

@keyframes particles {

    0%,
    100% {
        transform: translate(0);
    }

    50% {
        transform: translate(10px, 15px);
    }
}

.particlespoly {
    animation: p 2s ease infinite alternate;
}


#d-app g:nth-child(1) {
    animation: updown 2s 200ms ease-in-out infinite alternate;
}

#d-app g:nth-child(2) {
    animation: updown 2s 400ms ease-in-out infinite alternate;
}

#d-app g:nth-child(3) {
    animation: updown 2s 600ms ease-in-out infinite alternate;
}


#d-apps2 g:nth-child(1) {
    animation: updown 2s 200ms ease-in-out infinite alternate;
}

#d-apps2 g:nth-child(2) {
    animation: updown 2s 400ms ease-in-out infinite alternate;
}

#d-apps2 g:nth-child(3) {
    animation: updown 2s 600ms ease-in-out infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g>circle:nth-child(1) {
    animation: updown 2s 50ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g>circle:nth-child(2) {
    animation: updown 2s 100ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g>circle:nth-child(3) {
    animation: updown 2s 150ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g>circle:nth-child(4) {
    animation: updown 2s 200ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g>circle:nth-child(5) {
    animation: updown 2s 250ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g>circle:nth-child(6) {
    animation: updown 2s 300ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g>circle:nth-child(7) {
    animation: updown 2s 350ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g>circle:nth-child(8) {
    animation: updown 2s 400ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g>circle:nth-child(9) {
    animation: updown 2s 450ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g>circle:nth-child(10) {
    animation: updown 2s 500ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g>circle:nth-child(11) {
    animation: updown 2s 550ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g>circle:nth-child(12) {
    animation: updown 2s 600ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g>circle:nth-child(13) {
    animation: updown 2s 650ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g>circle:nth-child(14) {
    animation: updown 2s 700ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g>circle:nth-child(15) {
    animation: updown 2s 750ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g>circle:nth-child(16) {
    animation: updown 2s 800ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g>circle:nth-child(17) {
    animation: updown 2s 850ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g>circle:nth-child(18) {
    animation: updown 2s 900ms ease infinite alternate;
}

#d-apps2wrapper g:nth-child(3) g>circle:nth-child(19) {
    animation: updown 2s 950ms ease infinite alternate;
}


#d-appswrapper g:nth-child(2) g>circle:nth-child(1) {
    animation: updown 2s 50ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g>circle:nth-child(2) {
    animation: updown 2s 100ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g>circle:nth-child(3) {
    animation: updown 2s 150ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g>circle:nth-child(4) {
    animation: updown 2s 200ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g>circle:nth-child(5) {
    animation: updown 2s 250ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g>circle:nth-child(6) {
    animation: updown 2s 300ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g>circle:nth-child(7) {
    animation: updown 2s 350ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g>circle:nth-child(8) {
    animation: updown 2s 400ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g>circle:nth-child(9) {
    animation: updown 2s 450ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g>circle:nth-child(10) {
    animation: updown 2s 500ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g>circle:nth-child(11) {
    animation: updown 2s 550ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g>circle:nth-child(12) {
    animation: updown 2s 600ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g>circle:nth-child(13) {
    animation: updown 2s 650ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g>circle:nth-child(14) {
    animation: updown 2s 700ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g>circle:nth-child(15) {
    animation: updown 2s 750ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g>circle:nth-child(16) {
    animation: updown 2s 800ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g>circle:nth-child(17) {
    animation: updown 2s 850ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g>circle:nth-child(18) {
    animation: updown 2s 900ms ease infinite alternate;
}

#d-appswrapper g:nth-child(2) g>circle:nth-child(19) {
    animation: updown 2s 950ms ease infinite alternate;
}

@keyframes updown {
    100% {
        transform: translate(0, -20px);
    }
}

#Layer_1>g:nth-child(2)>g:nth-child(18)>g:nth-child(12) {
    animation: arrows 1s ease-in-out infinite alternate, p 2s ease infinite alternate;
}

@keyframes arrows {
    to {
        transform: translate(25px, 25px);
    }
}

#Layer_1>g:nth-child(2)>g:nth-child(17)>g:nth-child(13) {
    animation: arrows2 1s ease-in-out infinite alternate, p 2s ease infinite alternate;
}

@keyframes arrows2 {
    to {
        transform: translate(-25px, -25px);
    }
}

#Layer_1>g:nth-child(2)>g:nth-child(17)>g:nth-child(12) {
    animation: arrows 1s ease-in-out infinite alternate, p 2s ease infinite alternate;
}

.animation_block img {
    width: 400px;
}


.dashboard {
    padding: 30px 0;
    padding-bottom: 40vh;
}

.dashboard-header {
    margin-bottom: 30px;
}

.dashboard-header h1 {
    margin-bottom: 10px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 106, 255, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 106, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    color: rgb(0, 106, 255);
}

.stat-content {
    flex: 1;
}

.stat-content h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #666;
}

.stat-value {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.dashboard-section {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header p {
    margin: 0;
}

.section-header h2 {
    margin: 0;
    font-size: 20px;
}

.view-all {
    color: rgb(0, 106, 255);
    font-size: 14px;
    font-weight: 500;
}

.stakes-table {
    width: 100%;
    overflow-x: auto;
}

.stakes-table table {
    width: 100%;
    border-collapse: collapse;
}

.stakes-table th,
.stakes-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.stakes-table th {
    font-weight: 600;
    color: #000;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.empty-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 106, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 30px;
    color: rgb(0, 106, 255);
}

.empty-state h3 {
    margin-bottom: 10px;
}

.empty-state p {
    color: #666;
    margin-bottom: 20px;
}

.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.transaction-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.transaction-item:last-child {
    border-bottom: none;
}

.tx-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
}

.tx-icon.deposit {
    background: rgba(0, 168, 118, 0.1);
    color: #00a876;
}

.tx-icon.withdrawal {
    background: rgba(255, 59, 59, 0.1);
    color: #ff3b3b;
}

.tx-icon.reward {
    background: rgba(255, 160, 0, 0.1);
    color: #ffa000;
}

.tx-icon.stake {
    background: rgba(0, 106, 255, 0.1);
    color: rgb(0, 106, 255);
}

.tx-icon.unstake {
    background: rgba(153, 102, 255, 0.1);
    color: #9966ff;
}

.tx-details {
    flex: 1;
}

.tx-title {
    font-weight: 500;
    margin-bottom: 5px;
}

.tx-date {
    font-size: 12px;
    color: #666;
}

.tx-amount {
    font-weight: 600;
}

.tx-amount.positive {
    color: #00a876;
}

.tx-amount.negative {
    color: #ff3b3b;
}

.status-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status-active {
    background: rgba(0, 168, 118, 0.1);
    color: #00a876;
}

.status-completed {
    background: rgba(0, 106, 255, 0.1);
    color: rgb(0, 106, 255);
}

.status-cancelled {
    background: rgba(153, 153, 153, 0.1);
    color: #999;
}

.status-pending {
    background: rgba(255, 160, 0, 0.1);
    color: #ffa000;
}

.status-failed {
    background: rgba(255, 59, 59, 0.1);
    color: #ff3b3b;
}

.performance-chart {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.chart-container {
    height: 300px;
    margin-top: 20px;
}


.profile-page {
    padding: 30px 0;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.profile-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(to right, #0067e5, #00a3ff);
    color: white;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.profile-info h2 {
    margin: 0 0 5px 0;
}

.profile-info p {
    margin: 0 0 5px 0;
    color: #666;
}

.member-since {
    font-size: 12px;
    color: #999;
}

.profile-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.profile-stats .stat-item {
    text-align: center;
    flex: 1;
}

.profile-stats .stat-label {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.profile-stats .stat-value {
    font-size: 20px;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.action-buttons .btn {
    flex: 1;
}

.wallet-card,
.personal-info-card,
.security-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.wallet-address {
    margin: 20px 0;
}

.address-container {
    margin-top: 20px;
}

.address-label {
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.address-box {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    word-break: break-all;
    font-family: monospace;
    font-size: 13px;
}

.address-value {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    font-family: monospace;
    display: flex;
    justify-content: space-between;
    align-items: center;
    word-break: break-all;
}

.copy-btn {
    background: none;
    border: none;
    color: rgb(0, 106, 255);
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 4px;
    margin-left: 10px;
    flex-shrink: 0;
}

.wallet-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.copy-btn:hover {
    background: rgba(0, 106, 255, 0.1);
}

.wallet-connect {
    margin: 20px 0;
}


.tokens-section h4 {
    margin-bottom: 15px;
}

.tokens-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.token-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.settings-grid section {
    padding: 0;
}


.pool-card .token-icon img {
    filter: grayscale(1) brightness(100);
}

.token-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.token-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.token-name {
    font-weight: 500;
    margin-bottom: 5px;
}

.token-balance {
    color: #666;
    font-size: 14px;
}

.token-value {
    font-weight: 600;
}

.security-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.security-option:last-child {
    border-bottom: none;
}

.option-title {
    font-weight: 500;
    margin-bottom: 5px;
}

.option-description {
    color: #666;
    font-size: 14px;
}


.toggle-switch {
    position: relative;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-switch label:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.toggle-switch input:checked+label {
    background-color: rgb(0, 106, 255);
}

.toggle-switch input:checked+label:before {
    transform: translateX(26px);
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}


.modal {
    background: white;
    border-radius: 10px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    transform: translateY(20px);
    transition: all 0.3s ease;
    position: relative;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}


.header {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-left: 50px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: rgb(0, 106, 255);
}

.nav-links a.active {
    color: rgb(0, 106, 255);
}

.nav-links a.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(0, 106, 255);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.balance-display {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.balance-display i {
    color: rgb(0, 106, 255);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(to right, #0067e5, #00a3ff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown-toggle:focus+.dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #333;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f9f9f9;
}

.dropdown-menu a i {
    color: rgb(0, 106, 255);
}


.alert {
    position: relative;
    padding: 15px 50px 15px 50px;
    margin-bottom: 20px;
    border-radius: 8px;
    backdrop-filter: blur(8px);
    font-size: 16px;
    animation: alertFadeIn 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 40px;
    z-index: 900;
    right: 40px;
}

.alert-success {
    background: rgba(0, 168, 118, 0.1);
    color: #00a876;
    border-left: 4px solid #00a876;
}

.alert-error {
    background: rgba(255, 59, 59, 0.1);
    color: #ff3b3b;
    border-left: 4px solid #ff3b3b;
}

.alert-warning {
    background: rgba(255, 160, 0, 0.1);
    color: #ffa000;
    border-left: 4px solid #ffa000;
}

.alert-info {
    background: rgba(0, 106, 255, 0.1);
    color: rgb(0, 106, 255);
    border-left: 4px solid rgb(0, 106, 255);
}

.history-page {
    margin-bottom: 100px;
    padding: 40px 0;
}

.alert-success::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #43a047;
}

.alert-error::before {
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #e53935;
}

.staking-page {
    padding: 40px 0;
    background-color: #f9f9ff;
}

.page-header {
    margin-bottom: 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    background: linear-gradient(313deg, #99d8ff 7.93%, #0067e5 87.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.staking-overview {
    margin-bottom: 40px;
}

.overview-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 106, 255, 0.1);
    padding: 25px;
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 106, 255, 0.15);
}

.card-header {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.card-header h3 {
    margin: 0;
    color: #000;
    font-size: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    background: rgba(0, 106, 255, 0.03);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 106, 255, 0.08);
}

.stat-label {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.staking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.staking-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 106, 255, 0.1);
    padding: 25px;
    height: 100%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    margin: 0;
    font-size: 20px;
}

.section-actions {
    display: flex;
    gap: 10px;
}

.view-all {
    color: rgb(0, 106, 255);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all:hover {
    text-decoration: underline;
}

.stakes-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.stake-card {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.stake-card:hover {
    border-color: rgb(0, 106, 255);
    box-shadow: 0 5px 15px rgba(0, 106, 255, 0.1);
    transform: translateY(-3px);
}

.stake-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stake-pool {
    display: flex;
    align-items: center;
    gap: 12px;
}


.pool-name {
    font-weight: 600;
    font-size: 16px;
}

.stake-details {
    margin-bottom: 20px;
}

.stake-actions {
    display: flex;
    gap: 10px;
}


.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.locked-info {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #ff9800;
}

.detail-label {
    color: #666;
    font-size: 14px;
}

.detail-value {
    font-weight: 500;
    color: #000;
    position: relative;
}

.lock-progress {
    width: 100%;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    margin-top: 5px;
    overflow: hidden;
}

.lock-progress-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.lock-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0066FF, #2e8fff);
    border-radius: 3px;
}

.lock-progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
}

.lock-time-remaining {
    font-weight: 500;
    color: #ff9800;
}

.lock-date {
    color: #666;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, rgb(0, 91, 204), rgb(0, 140, 255));
    border-radius: 3px;
}

.progress-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0066FF, #2e8fff);
    border-radius: 3px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
}

.earning-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.earning-stat {
    text-align: center;
}

.earning-value {
    font-weight: 600;
    font-size: 16px;
}

.earning-label {
    font-size: 12px;
    color: #666;
}

.stake-earnings {
    background: rgba(0, 106, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.earnings-header {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.earning-progress {
    margin-bottom: 15px;
}

.earning-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.earnings-value {
    font-size: 20px;
    font-weight: 600;
    color: rgb(0, 106, 255);
    margin-bottom: 5px;
}

.earnings-usd {
    font-size: 14px;
    color: #666;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.empty-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 106, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 30px;
    color: rgb(0, 106, 255);
}

.empty-state h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.empty-state p {
    color: #666;
    margin-bottom: 20px;
    max-width: 300px;
}

.stakes-table {
    width: 100%;
    overflow-x: auto;
}

.stakes-table table {
    width: 100%;
    border-collapse: collapse;
}

.stakes-table th,
.stakes-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.stakes-table th {
    color: #000;
    font-weight: 600;
    background: rgba(0, 106, 255, 0.03);
}

.stakes-table tr:hover {
    background: rgba(0, 106, 255, 0.02);
}

.token-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.token-display img {
    width: 24px;
    height: 24px;
}

.positive {
    color: #00a876;
}

.available-pools {
    margin-bottom: 50px;
}

.pools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.pool-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.pool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pool-header {
    background: linear-gradient(135deg, #0066ff, #3385ff);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pool-info {
    margin-left: 15px;
    flex: 1;
}

.pool-info h3 {
    margin: 0;
    font-size: 16px;
    color: #fff;
}

.pool-info .token-name {
    font-size: 14px;
    opacity: 0.6;
}

.pool-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.pool-token {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.apy-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pool-body {
    padding: 20px;
}

.pool-details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.pool-description p {
    margin: 0;
    color: #666;
}

.pool-details,
.pool-description,
.pool-features {
    padding: 15px 20px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-name {
    color: #666;
}

.detail-value {
    font-weight: 500;
}

.risk-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
}

.risk-low {
    background: rgba(0, 168, 118, 0.1);
    color: #00a876;
}

.risk-medium {
    background: rgba(255, 160, 0, 0.1);
    color: #ffa000;
}

.risk-high {
    background: rgba(255, 59, 59, 0.1);
    color: #ff3b3b;
}

.pool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.features-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: #f0f4ff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    color: #0066ff;
}


.pool-actions {
    padding: 15px 20px;
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.staking-faq {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 106, 255, 0.1);
    padding: 30px;
    margin-bottom: 40px;
}

.faq-container {
    margin-top: 30px;
}

.accordion {
    margin-bottom: 15px;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    background: rgba(0, 106, 255, 0.02);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(0, 106, 255, 0.05);
}

.accordion-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.accordion-header i {
    color: rgb(0, 106, 255);
    transition: all 0.3s ease;
}

.accordion.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion.active .accordion-content {
    max-height: 500px;
}

.accordion-content-inner {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal {
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    transform: translateY(20px);
    transition: all 0.3s ease;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}


.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #ff3b3b;
}

.modal h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #000;
    font-size: 24px;
}

.token-select {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
}

.token-select img {
    width: 28px;
    height: 28px;
}

.balance-display {
    font-size: 13px;
    color: #666;
    text-align: right;
}

.stake-summary {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-label {
    color: #666;
}

.summary-value {
    font-weight: 500;
    color: #000;
}

.unstake-warning {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 160, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.warning-icon {
    color: #ffa000;
    margin-right: 15px;
    font-size: 20px;
    flex-shrink: 0;
}

.warning-text p {
    margin: 0;
    color: #333;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.button-group button {
    flex: 1;
}

.settings-page {
    padding: 40px 0;
    background-color: #f9f9ff;
    padding-bottom: 40vh;
}

.settings-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    margin-top: 40px;
}

.settings-nav {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 106, 255, 0.1);
    padding: 20px 0;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.settings-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.settings-nav li {
    margin: 0;
    padding: 0;
}

.settings-nav a {
    display: block;
    padding: 12px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.settings-nav a:hover,
.settings-nav a.active {
    background: rgba(0, 106, 255, 0.05);
    color: rgb(0, 106, 255);
    border-left-color: rgb(0, 106, 255);
}

.settings-content {
    width: 100%;
}

.settings-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.settings-section.active {
    display: block;
}

.settings-section h2 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 24px;
}

.settings-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 106, 255, 0.1);
    padding: 25px;
    margin-bottom: 30px;
}

.settings-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.settings-card p {
    color: #666;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: rgb(0, 106, 255);
    box-shadow: 0 0 0 3px rgba(0, 106, 255, 0.1);
}

.input-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.password-strength {
    margin-top: 10px;
}

.strength-meter {
    height: 5px;
    background: #f0f0f0;
    border-radius: 3px;
    margin-bottom: 5px;
}

.strength-meter.weak {
    background: #ff3b3b;
    width: 25%;
}

.strength-meter.medium {
    background: #ffa000;
    width: 50%;
}

.strength-meter.strong {
    background: #00a876;
    width: 75%;
}

.strength-meter.very-strong {
    background: #00a876;
    width: 100%;
}

.strength-text {
    font-size: 12px;
    color: #666;
}

.two-factor-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.status-indicator.enabled {
    color: #00a876;
}

.status-indicator.disabled {
    color: #666;
}

.qr-container {
    text-align: center;
    margin: 25px 0;
}

.qr-container img {
    max-width: 200px;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 10px;
}

.qr-container p {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.login-history {
    margin-top: 20px;
}

.login-history table {
    width: 100%;
    border-collapse: collapse;
}

.login-history th,
.login-history td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.login-history th {
    color: #000;
    font-weight: 600;
    background: rgba(0, 106, 255, 0.03);
}

.status {
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.status.success {
    background: rgba(0, 168, 118, 0.1);
    color: #00a876;
}

.notification-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.notification-option:last-child {
    border-bottom: none;
}

.option-details {
    flex: 1;
}

.option-title {
    font-weight: 500;
    margin-bottom: 5px;
}

.option-description {
    color: #666;
    font-size: 14px;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-switch label:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.toggle-switch input:checked+label {
    background-color: rgb(0, 106, 255);
}

.toggle-switch input:checked+label:before {
    transform: translateX(26px);
}

.wallet-list {
    margin-top: 20px;
}

.wallet-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 15px;
}

.wallet-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wallet-type {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wallet-type img {
    width: 24px;
    height: 24px;
}

.wallet-type span {
    font-weight: 500;
}

.wallet-address {
    font-family: monospace;
    color: #666;
    font-size: 14px;
}

.copy-btn {
    background: none;
    border: none;
    color: rgb(0, 106, 255);
    cursor: pointer;
    font-size: 14px;
}

.wallet-actions {
    display: flex;
    gap: 10px;
}

.wallet-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.wallet-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f9f9f9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wallet-option:hover,
.wallet-option.selected {
    border-color: rgb(0, 106, 255);
    background: rgba(0, 106, 255, 0.05);
}

.wallet-option img {
    width: 40px;
    height: 40px;
}

.wallet-option span {
    font-size: 14px;
    font-weight: 500;
}

.api-info {
    display: flex;
    align-items: flex-start;
    background: rgba(0, 106, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.info-icon {
    color: rgb(0, 106, 255);
    margin-right: 15px;
    font-size: 20px;
    flex-shrink: 0;
}

.info-text {
    color: #333;
}

.api-keys-list {
    margin-top: 20px;
}

.api-key-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 100px;
    background: rgba(0, 106, 255, 0.03);
    padding: 10px 15px;
    border-radius: 8px 8px 0 0;
    font-weight: 500;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .staking-grid {
        grid-template-columns: 1fr;
    }

    .settings-grid {
        grid-template-columns: 1fr;
    }

    .settings-nav {
        position: static;
        margin-bottom: 30px;
    }

    .settings-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .settings-nav a {
        border-left: none;
        border-radius: 5px;
        padding: 10px 15px;
    }
}

@media (max-width: 768px) {
    .pools-grid {
        grid-template-columns: 1fr;
    }

    .login-history {
        overflow-x: auto;
    }

    .login-history table {
        min-width: 600px;
    }

    .api-key-header {
        grid-template-columns: 1fr 1fr;
    }

    .api-key-header span:nth-child(3),
    .api-key-header span:nth-child(4) {
        display: none;
    }
}


.deposit-form {
    position: relative;
}

.deposit-steps {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.deposit-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    font-weight: 500;
    color: #999;
    position: relative;
}

.deposit-step.active {
    color: rgb(0, 106, 255);
}

.deposit-step .step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #666;
}

.deposit-step.active .step-number {
    background: rgb(0, 106, 255);
    color: white;
}

.deposit-step:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 1px;
    background: #eee;
}

.deposit-step:last-child:after {
    display: none;
}

.crypto-select-container {
    position: relative;
    margin-bottom: 20px;
}

.crypto-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.crypto-select:hover {
    border-color: #bbb;
}

.crypto-select:focus,
.crypto-select.active {
    border-color: rgb(0, 106, 255);
    box-shadow: 0 0 0 3px rgba(0, 106, 255, 0.1);
    outline: none;
}

.crypto-select .selected-crypto {
    display: flex;
    align-items: center;
    gap: 10px;
}

.crypto-select .selected-crypto img {
    width: 24px;
    height: 24px;
}

.crypto-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.crypto-dropdown.active {
    max-height: 250px;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
}

.crypto-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.crypto-option:hover {
    background: rgba(0, 106, 255, 0.05);
}

.crypto-option img {
    width: 24px;
    height: 24px;
}

.crypto-option .crypto-name {
    font-weight: 500;
}

.crypto-option .crypto-network {
    font-size: 12px;
    color: #999;
    margin-left: auto;
}


.wallet-info {
    display: none;
    margin-top: 20px;
    animation: fadeIn 0.3s ease;
}

.wallet-info.active {
    display: block;
}

.wallet-qr {
    width: 100%;
    height: auto;
    padding: 10px;
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
}

.wallet-qr img {
    max-width: 200px;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
    background: white;
}

.wallet-address {
    background: #f9f9f9;
    padding: 12px 15px;
    border-radius: 8px;
    font-family: monospace;
    position: relative;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wallet-address .address-text {
    flex: 1;
    margin-right: 10px;
    font-size: 14px;
}

.wallet-address p {
    margin-bottom: 0;
}

.copy-btn {
    background: none;
    border: none;
    color: rgb(0, 106, 255);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(0, 106, 255, 0.1);
}

.deposit-details {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
}

.deposit-details h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.detail-row {
    display: flex;
    margin-bottom: 12px;
    align-items: center;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-label {
    width: 100px;
    color: #666;
    font-size: 14px;
}

.detail-value {
    font-weight: 500;
    flex: 1;
}

.wallet-note {
    color: #666;
    font-size: 14px;
    margin-top: 15px;
    background: rgba(255, 160, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #ffa000;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.button-group button {
    flex: 1;
}

.copyable {
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s;
}

.copyable:hover {
    color: rgb(0, 106, 255);
}

.copy-icon {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    font-size: 14px;
}

.copyable:hover .copy-icon {
    opacity: 1;
}

.wallet-page {
    padding: 40px 0;
    background-color: #f9f9ff;
    padding-bottom: 150px;
}

.wallet-overview {
    margin-bottom: 30px;
}

.wallet-balance-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 106, 255, 0.1);
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.balance-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.balance-header h3 {
    margin: 0;
    color: #666;
    font-size: 16px;
}

.total-balance {
    font-size: 36px;
    font-weight: 600;
    color: #000;
}

.wallet-actions {
    display: flex;
    gap: 15px;
}

.wallet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.wallet-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 106, 255, 0.1);
    padding: 25px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-header h2 {
    margin: 0;
    font-size: 20px;
}

.tokens-section {
    grid-column: 1;
}


.tokens-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.token-card {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.token-card:hover {
    border-color: rgb(0, 106, 255);
    box-shadow: 0 5px 15px rgba(0, 106, 255, 0.1);
    transform: translateY(-3px);
}

.token-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 106, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.token-info {
    flex: 1;
}

.token-name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.token-network {
    color: #666;
    font-size: 14px;
}

.token-balance {
    text-align: right;
    margin-right: 20px;
}

.balance-amount {
    font-weight: 600;
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
}

.balance-value {
    color: #666;
    font-size: 14px;
}

.token-actions {
    display: flex;
    gap: 10px;
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.filter-form {
    width: 100%;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.transactions-table-container {
    width: 100%;
    overflow-x: auto;
}

.transactions-table {
    width: 100%;
    border-collapse: collapse;
}

.transactions-table th,
.transactions-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.transactions-table th {
    color: #000;
    font-weight: 600;
    background: rgba(0, 106, 255, 0.03);
}

.transactions-table tr:hover {
    background: rgba(0, 106, 255, 0.02);
}

.tx-type {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.tx-type i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.tx-type.deposit i {
    background: rgba(0, 168, 118, 0.1);
    color: #00a876;
}

.tx-type.withdrawal i {
    background: rgba(255, 59, 59, 0.1);
    color: #ff3b3b;
}

.tx-type.reward i {
    background: rgba(255, 160, 0, 0.1);
    color: #ffa000;
}

.tx-type.stake i {
    background: rgba(0, 106, 255, 0.1);
    color: rgb(0, 106, 255);
}

.tx-type.unstake i {
    background: rgba(153, 102, 255, 0.1);
    color: #9966ff;
}

.positive {
    color: #00a876;
}

.negative {
    color: #ff3b3b;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination-item,
.pagination-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    color: #666;
    border: 1px solid #eee;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-item:hover,
.pagination-arrow:hover {
    background: rgba(0, 106, 255, 0.1);
    color: rgb(0, 106, 255);
    border-color: rgb(0, 106, 255);
}

.pagination-item.active {
    background: rgb(0, 106, 255);
    color: white;
    border-color: rgb(0, 106, 255);
}

.export-options {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.export-options h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.export-buttons {
    display: flex;
    gap: 15px;
}

.export-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 5px;
    background: rgba(0, 106, 255, 0.1);
    color: rgb(0, 106, 255);
    text-decoration: none;
    transition: all 0.3s ease;
}

.export-btn:hover {
    background: rgba(0, 106, 255, 0.2);
}


.tx-detail-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.tx-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    font-weight: 500;
    margin-bottom: 20px;
}

.tx-status.completed {
    background: rgba(0, 168, 118, 0.1);
    color: #00a876;
}

.tx-status.pending {
    background: rgba(255, 160, 0, 0.1);
    color: #ffa000;
}

.tx-status.failed {
    background: rgba(255, 59, 59, 0.1);
    color: #ff3b3b;
}

.tx-detail-row {
    display: flex;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.tx-detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    width: 150px;
    color: #666;
    font-weight: 500;
}

.detail-value {
    flex: 1;
    color: #000;
}

.hash-value {
    display: flex;
    align-items: center;
    gap: 10px;
    word-break: break-all;
}

.tx-actions {
    margin-top: 20px;
    padding: 15px;
    display: flex;
    justify-content: center;
}

.max-btn {
    background: none;
    border: none;
    color: rgb(0, 106, 255);
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.max-btn:hover {
    text-decoration: underline;
}

.withdraw-fee {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
}

@media (max-width: 1200px) {
    .wallet-content {
        grid-template-columns: 1fr;
    }

    .history-section {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .wallet-balance-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .wallet-actions {
        width: 100%;
    }

    .wallet-actions .btn {
        flex: 1;
    }

    .token-info {
        width: calc(100% - 63px);
    }

    .token-balance {
        text-align: left;
    }

    .token-actions {
        width: 100%;
        margin-top: 15px;
    }

    .transactions-table-container {
        overflow-x: auto;
    }
}

@media (max-width: 576px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-controls {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        align-items: stretch;
    }

    .export-buttons {
        flex-direction: column;
    }
}


.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 300px;
    padding: 15px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    overflow: hidden;
    transform: translateX(120%);
    animation: slideIn 0.3s forwards;
}

.notification-hiding {
    animation: slideOut 0.3s ease forwards;
}

.notification-success {
    border-left: 4px solid #00a876;
}

.notification-error {
    border-left: 4px solid #ff3b3b;
}

.notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
}

.notification-message {
    display: flex;
    padding: 20px;
}

.notification-icon {
    margin-right: 15px;
    font-size: 24px;
}

.notification-success .notification-icon {
    color: #00a876;
}

.notification-error .notification-icon {
    color: #ff3b3b;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.notification-text {
    font-size: 14px;
    color: #666;
}

.notification-progress {
    height: 4px;
    width: 100%;
    background: #00a876;
    transition: width 5s linear;
}

.notification-error .notification-progress {
    background: #ff3b3b;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@media (max-width: 576px) {
    .notification {
        width: calc(100% - 40px);
        bottom: 20px;
        right: 20px;
    }
}


.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

.btn-outline.btn-loading::after {
    border: 2px solid rgba(0, 106, 255, 0.3);
    border-top-color: rgb(0, 106, 255);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.price-display {
    color: #666;
    font-size: 0.85rem;
    margin-top: -10px;
    margin-bottom: 15px;
}

.usd-value {
    color: #666;
    font-size: 0.85rem;
    margin-top: 5px;
}

.deposit-details {
    margin-bottom: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
}

.deposit-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.amount-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.amount-value {
    font-size: 1.5rem;
    font-weight: 600;
}

.usd-equivalent {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.deposit-network {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.network-label {
    font-size: 0.85rem;
    color: #666;
    margin-right: 5px;
}

.amount-usd {
    font-size: 0.8rem;
    color: #666;
    margin-top: 3px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .deposit-container {
        flex-direction: column;
    }

    .deposit-qr-column {
        width: 100%;
        text-align: center;
    }

    .wallet-qr {
        max-width: 200px;
    }
}

.transaction-details {
    padding: 10px;
}

.detail-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    width: 120px;
    font-weight: 500;
    color: #666;
}

.detail-value {
    flex: 1;
}

.rejection-reason {
    margin-top: 5px;
    font-size: 0.85rem;
    color: #ff3b3b;
}

.tx-usd {
    font-size: 0.75rem;
    color: #666;
}


.status-pending {
    background: rgba(255, 160, 0, 0.1);
    color: #ffa000;
}

.status-completed {
    background: rgba(0, 168, 118, 0.1);
    color: #00a876;
}

.status-rejected {
    background: rgba(255, 59, 59, 0.1);
    color: #ff3b3b;
}

.stake-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-section {
    margin-bottom: 20px;
}

.form-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.pool-selector {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
}

.pool-selector:hover {
    border-color: #0066ff;
}

.pool-display {
    display: flex;
    align-items: center;
    flex: 1;
}

.token-display {
    display: flex;
    align-items: center;
    margin-right: 15px;
}


.amount-input {
    position: relative;
}

.amount-input input {
    padding-right: 80px;
}

#stakeForm .max-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #f0f4ff;
    border: none;
    color: #0066ff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
}

#stakeForm .max-btn:hover {
    background: #e0e9ff;
}

.balance-display {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.duration-selector {
    margin-bottom: 20px;
}


.duration-input {
    margin-bottom: 10px;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.rewards-calculator {
    background: #f9f9ff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.calculator-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.calculator-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    color: #0066ff;
}

.calculator-title {
    font-weight: 600;
}

.reward-estimate {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.estimate-item {
    text-align: center;
}

.estimate-value {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.estimate-label {
    font-size: 12px;
    color: #666;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.terms-checkbox input {
    margin-right: 10px;
    margin-top: 3px;
}

.terms-text {
    font-size: 14px;
    color: #444;
}


.unstake-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stake-info {
    background: #f9f9ff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.stake-info-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stake-info-title {
    font-weight: 600;
    margin-left: 10px;
}

.stake-info-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stake-detail-item {
    display: flex;
    flex-direction: column;
}

.stake-detail-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.stake-detail-value {
    font-weight: 500;
}

.success-modal {
    text-align: center;
    max-width: 400px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0, 168, 118, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a876;
    font-size: 40px;
}

.success-modal h2 {
    margin-bottom: 20px;
    color: #00a876;
}

.success-details {
    background: #f9f9ff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.success-detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.success-detail-label {
    color: #666;
}

.success-detail-value {
    font-weight: 500;
}

.stake-id-container {
    background: #f0f4ff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.stake-id-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.stake-id-value {
    font-weight: 600;
    font-size: 20px;
    color: #0066ff;
    font-family: monospace;
    margin-bottom: 10px;
}

.stake-id-copy {
    background: rgba(0, 102, 255, 0.1);
    border: none;
    color: #0066ff;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.stake-id-copy i {
    margin-right: 5px;
}

.stake-id-warning {
    font-size: 12px;
    color: #ff9800;
    margin-top: 10px;
}

.balance-chart-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 30px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-title {
    font-size: 18px;
    font-weight: 600;
}

.chart-period-selector {
    display: flex;
    gap: 10px;
}

.chart-period-option {
    background: #f0f4ff;
    border: none;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    color: #666;
}

.chart-period-option.active {
    background: #0066ff;
    color: white;
}

.chart-container {
    height: 300px;
    position: relative;
}

.chart-tooltip {
    position: absolute;
    background: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    pointer-events: none;
    z-index: 10;
    display: none;
}

.chart-tooltip-header {
    font-weight: 600;
    margin-bottom: 5px;
}

.chart-tooltip-value {
    color: #0066ff;
    font-weight: 600;
}

.chart-tooltip-date {
    font-size: 12px;
    color: #666;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.legend-total {
    background: #0066ff;
}

.legend-staked {
    background: #32cd32;
}

#poolSelect {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    font-size: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23464a4e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

#poolSelect:focus {
    border-color: #0066ff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

#poolSelect option {
    padding: 10px;
}

.summary-item {
    text-align: center;
    flex: 1;
}

.stake-card .stake-summary {
    display: flex;
    justify-content: space-between;
}

.terms-agreement {
    margin-bottom: 15px;
}

.summary-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.summary-value {
    font-weight: 500;
    font-size: 16px;
}

.secret-section {
    background: #f9f9ff;
    padding: 15px;
    margin-top: 15px;
    border-radius: 8px;
    border: 1px dashed #ddd;
}

.stake-id-secret {
    font-family: monospace;
    letter-spacing: 1px;
    color: #0066ff;
    font-weight: 600;
}

.stake-details-container {
    padding: 15px 0;
}

.detail-section {
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.detail-section:last-child {
    border-bottom: none;
}

.action-section {
    margin-top: 20px;
    text-align: center;
}


.portfolio-chart-container {
    background: white;
    border-radius: 12px;
    padding: 20px;
    height: 300px;
    margin-bottom: 30px;
    position: relative;
}

.portfolio-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.portfolio-change .change-value {
    font-size: 20px;
    font-weight: 600;
}

.portfolio-change .change-period {
    font-size: 14px;
    color: #666;
    margin-left: 5px;
}

.portfolio-balance {
    text-align: right;
}

.portfolio-balance .balance-value {
    font-size: 20px;
    font-weight: 600;
}

.portfolio-balance .balance-label {
    font-size: 14px;
    color: #666;
    margin-left: 5px;
}

.chart-period-selector {
    display: flex;
    gap: 8px;
}

.chart-period-option {
    background: #f0f4ff;
    border: none;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
}

.chart-period-option.active {
    background: #0066ff;
    color: white;
}

.chart-period-option:hover:not(.active) {
    background: #e0e9ff;
}


.stake-status {
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
}

.stake-status i {
    margin-right: 8px;
}

.stake-status.pending {
    background: rgba(255, 160, 0, 0.1);
    color: #ffa000;
}

.stake-status.rejected {
    background: rgba(255, 59, 59, 0.1);
    color: #ff3b3b;

    align-items: center;
    margin-bottom: 0;
}

.rejection-reason {
    margin-top: 5px;
    font-size: 12px;
    font-style: italic;

}

.stake-status {
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
}

.stake-status i {
    margin-right: 8px;
}

.stake-status.pending {
    background: rgba(255, 160, 0, 0.1);
    color: #ffa000;
}

.stake-status.rejected {
    background: rgba(255, 59, 59, 0.1);
    color: #ff3b3b;
}

.stake-status.locked {
    background: rgba(0, 82, 204, 0.1);
    color: #0052cc;
}

.lock-progress {
    width: 100%;
}

.lock-bar {
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.lock-fill {
    height: 100%;
    background: #0066ff;
    border-radius: 3px;
}

.lock-info {
    font-size: 12px;
    color: #666;
}


.about-page,
.careers-page,
.contact-page,
.legal-page,
.blog-page {
    padding: 60px 0;
    color: #333;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.about-mission {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.mission-content {
    flex: 1;
}

.mission-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
}

.mission-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    border-radius: 10px;
}

.location {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #0066ff, #00a6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.about-story h2,
.team-section h2,
.values-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.timeline {
    position: relative;
    padding: 20px 0 60px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    margin-left: -1px;
    background: linear-gradient(180deg, #0066ff 0%, #00a6ff 100%);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: 50%;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: 50%;
}

.timeline-point {
    position: absolute;
    left: 50%;
    margin-left: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 3px solid #0066ff;
    top: 15px;
}

.timeline-content {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 80%;
}

.timeline-date {
    font-weight: 700;
    color: #0066ff;
    margin-bottom: 10px;
}

.timeline-content h3 {
    margin-bottom: 10px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 106, 255, 0.15);
}

.member-photo {
    height: 250px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    margin-bottom: 5px;
}

.member-role {
    color: #0066ff;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    gap: 15px;
}

.member-social a {
    color: #666;
    transition: color 0.3s ease;
}

.member-social a:hover {
    color: #0066ff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.value-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 102, 255, 0.1), rgba(0, 166, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 30px;
    background: linear-gradient(45deg, #0066ff, #00a6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-card h3 {
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.careers-hero {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.hero-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-content h1 {
    text-align: center;
    max-width: 1000px;
    font-size: 60px;
}

.hero-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 20px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0 60px;
}

.benefit-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 102, 255, 0.1), rgba(0, 166, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 24px;
    background: linear-gradient(45deg, #0066ff, #00a6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-card h3 {
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0 60px;
}

.culture-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.culture-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.culture-item h3 {
    padding: 20px 20px 10px;
}

.culture-item p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

.filter-bar {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin: 30px 0;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 14px;
    color: #666;
}

.filter-group select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background-color: white;
    min-width: 200px;
}

.positions-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0 60px;
}

.position-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
}

.position-header {
    margin-bottom: 15px;
}

.position-header h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.position-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.department,
.type {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
}

.position-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.position-actions {
    display: flex;
    gap: 15px;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0 60px;
    position: relative;
}

.process-step {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 25px rgba(0, 106, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.process-step h3 {
    margin: 0;
}

.process-steps .fas {
    width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(45deg, rgba(0, 102, 255, 0.1), rgba(0, 166, 255, 0.1));
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgb(0, 106, 255);
    font-size: 32px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #0066ff, #00a6ff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form-container {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0066ff;
    outline: none;
}

.form-checkbox {
    flex-direction: row;
    align-items: center;
}

.form-checkbox input {
    margin-right: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, rgba(0, 102, 255, 0.1), rgba(0, 166, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    color: #0066ff;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.location {
    margin-bottom: 20px;
}

.location:last-child {
    margin-bottom: 0;
}

.location h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.location p {
    color: #666;
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: #f5f5f5;
    border-radius: 20px;
    transition: background 0.3s ease, color 0.3s ease;
    color: #444;
    font-size: 14px;
}

.social-link:hover {
    background: #0066ff;
    color: white;
}

.map-section {
    margin-bottom: 60px;
}

.map-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 16px;
    margin: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

.legal-content {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0066ff;
}

.legal-section h3 {
    font-size: 18px;
    margin: 25px 0 15px;
}

.legal-section p {
    margin-bottom: 15px;
    color: #444;
}

.legal-section ul,
.legal-section ol {
    margin: 15px 0 15px 20px;
    color: #444;
}

.legal-section li {
    margin-bottom: 10px;
}

.company-info,
.contact-info {
    background-color: #f5f8ff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 40px;
}

.blog-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-category {
    background: #f0f5ff;
    color: #0066ff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.blog-date {
    color: #777;
    font-size: 14px;
}

.blog-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
}

.blog-content h2 a {
    color: #333;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: #0066ff;
}

.blog-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-footer {
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.read-more {
    color: #0066ff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.sidebar-widget h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 50px;
    height: 2px;
    background: #0066ff;
}

.search-input {
    position: relative;
}

.search-input input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.search-input button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #777;
    cursor: pointer;
    font-size: 18px;
    transition: color 0.3s ease;
}

.search-input button:hover {
    color: #0066ff;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px solid #eee;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: #555;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #0066ff;
}

.category-list span {
    color: #999;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post {
    display: flex;
    gap: 15px;
}

.post-image {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.post-content h4 a {
    color: #333;
    transition: color 0.3s ease;
}

.post-content h4 a:hover {
    color: #0066ff;
}

.post-date {
    font-size: 12px;
    color: #999;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #f5f5f5;
    color: #666;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    transition: background 0.3s ease, color 0.3s ease;
}

.tag:hover {
    background: #0066ff;
    color: white;
}

.newsletter-widget p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(45deg, #0066ff, #00a6ff);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    color: white;
    margin: 60px 0;
}

.cta-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.success-message {
    text-align: center;
    padding: 30px 0;
}

.success-icon {
    font-size: 60px;
    color: #00cc66;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.success-message p {
    color: #666;
    margin-bottom: 25px;
}

@media (max-width: 992px) {

    .about-mission,
    .careers-hero {
        flex-direction: column;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding: 0 0 0 60px;
        justify-content: flex-start;
    }

    .timeline:before {
        left: 30px;
    }

    .timeline-point {
        left: 30px;
    }

    .timeline-content {
        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .pools-table tr th:first-child {
        display: none;
    }

    .pools-table tr td:first-child {
        display: none;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .animation_block svg {
        max-width: 100%;
        width: 90vw;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }

    .about-stats {
        flex-direction: column;
    }

    .stat-item {
        width: 100%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .legal-content {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 28px;
    }


    .filter-bar {
        flex-direction: column;
    }
}

.positions-list .position-header .location {
    margin-bottom: 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: #333;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    margin-left: 15px;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.header .nav {
    display: flex;
    align-items: center;
    position: relative;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -150%;
        margin-left: 0;
        width: 100%;
        height: 100%;
        background: white;
        padding: 80px 20px 20px;
        flex-direction: column;
        align-items: flex-start;
        z-index: 1000;
        transition: left 0.3s ease;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links a {
        margin: 10px 0;
        width: 100%;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .nav-links a.active:after {
        bottom: -5px;
        width: 40px;
        left: 0;
    }

    .user-menu {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .balance-display {
        font-size: 14px;
    }

    .dropdown-toggle span {
        display: none;
    }

    .header {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .logo span {
        display: none;
    }

    .buttons {
        gap: 5px;
    }
}



.password-field {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.password-field .toggle-password {
    position: absolute;
    right: 15px;
    background: linear-gradient(45deg, rgba(0, 102, 255, 0.1), rgba(0, 166, 255, 0.1));
    padding: 5px;
    outline: none;
    border: 0;
    border-radius: 50%;
    color: rgb(0, 106, 255);
    cursor: pointer;
}

.password-strength {
    margin-top: 8px;
    width: 100%;
}

.strength-bar {
    height: 5px;
    background-color: #e0e0e0;
    border-radius: 3px;
    margin-bottom: 5px;
    width: 100%;
}

.bar-indicator {
    height: 100%;
    border-radius: 3px;
    width: 0%;
    transition: width 0.3s, background-color 0.3s;
}

.strength-text {
    font-size: 12px;
    color: #666;
}

.strength-very-weak .bar-indicator {
    background-color: #ff4d4d;
    width: 20%;
}

.strength-weak .bar-indicator {
    background-color: #ffaa00;
    width: 40%;
}

.strength-medium .bar-indicator {
    background-color: #ffff00;
    width: 60%;
}

.strength-strong .bar-indicator {
    background-color: #b7ff00;
    width: 80%;
}

.strength-very-strong .bar-indicator {
    background-color: #00cc00;
    width: 100%;
}

.alert-close-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.alert-close-btn:hover {
    color: rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 1400px) {
    .header {
        max-width: 1000px;
    }

    .container {
        max-width: 1000px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .benefit-card {
        padding: 15px;
    }

    .dashboard-grid {
        gap: 15px;
    }

    .dashboard-stats {
        gap: 15px;
    }

    .benefits {
        gap: 15px;
    }
    
    .benefits {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .benefit-card h4 {
        font-size: 14px;
    }

    .benefit-card p {
        font-size: 12px;
    }

    section {
        padding: 40px 0;
    }

    .process-step h3 {
        font-size: 18px;
    }

    .process-step p {
        font-size: 14px;
    }

    .process-step {
        gap: 10px;
    }

    .stat-value {
        font-size: 16px;
    }

    .stat-content h3 {
        font-size: 14px;
    }

    .btn-primary {
        font-size: 14px;
    }

    .btn-outline {
        font-size: 14px;
    }

    .dashboard-header h1 {
        font-size: 42px;
    }

    .staking-grid {
        gap: 15px;
    }

    .staking-overview {
        margin-bottom: 15px;
    }

    .stats-grid {
        gap: 15px;
        margin: 0;
    }

    .stat-item {
        padding: 15px;
    }
}

@media screen and (max-width: 1000px) {
    .modal-overlay.active .modal {
        width: 100%;
        border-radius: 0;
        height: 100%;
        max-height: 100%;
        max-width: 100%;
    }

    .alert {
        right: unset;
        width: 90%;
        margin: 0 auto;
    }

    .deposit-qr-column {
        display: none;
    }
    
    .token-actions {
        display: none;
    }

    .token-card {
        justify-content: space-between;
    }
    
    .stake-header {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .section-actions {
        width: 100%;
    }

    .staking-section .btn-primary {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .pool-actions .btn-primary {
        width: 100%;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-section {
        width: 100%;
        overflow: hidden;
    }

    .stakes-table table {
        overflow-x: scroll;
    }
}
.LTC img,
.DOGE img{
  filter: none !important;
}