* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0b1120;
    color: white;
    font-family: math, sans-serif;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #22c55e;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #22c55e;
}

.register-btn {
    background: #22c55e;
    color: black;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
}

/* HERO */
.hero {
    padding: 100px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 10px 18px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 25px;
}

.hero-left h1 {
    font-size: 70px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-left p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-btn {
    background: #22c55e;
    color: black;
    padding: 16px 30px;
    border-radius: 18px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    min-width: 174px;
    text-align: center;
}

.primary-btn,
.secondary-btn {
    transition: 0.3s;
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 16px 30px;
    border-radius: 18px;
    text-decoration: none;
    font-size: 20px;
    min-width: 174px;
    text-align: center;
}

.fix-btn {
    width: 227px;
}

/* RIGHT */
.chart-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.profit-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.profit-row strong {
    color: #22c55e;
}

.fake-chart {
    height: 300px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), transparent);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-left h1 {
        font-size: 45px;
    }

    .nav-links {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }
    .hero-left {
        text-align: center;
    }

    .feature-icon {
        text-align: center;
    }

    .package-top h3 {
        text-align: center;
    }
    .download-buttons {
        justify-content: center;
    }
    .feature-card {
        text-align: center;
    }
    .package-card {
        text-align: center;
    }
    .faq-question {
        text-align: center !important;
    }
    .footer {
        text-align: center;
    }
    .footer p {
        margin: auto;
    }

    .footer-links {
        justify-content: center;
    }
    .logof {
        justify-content: center;
    }
}

/* SECTION TITLE */

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title span {
    color: #22c55e;
    font-size: 14px;
    letter-spacing: 2px;
}

.section-title h2 {
    margin-top: 15px;
    font-size: 42px;
}

/* FEATURES */

.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 30px;
    transition: 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #22c55e;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 25px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* STEPS */

.steps {
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.step-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    padding: 50px 30px;
    border-radius: 30px;
}

.step-number {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: #22c55e;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
}

.step-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.step-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* REFERRAL */

.referral-section {
    padding: 100px 0;
}

.referral-box {
    background: linear-gradient(
        135deg,
        rgba(34, 197, 94, 0.15),
        rgba(255, 255, 255, 0.04)
    );

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 40px;

    padding: 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.referral-badge {
    color: #22c55e;
    font-size: 14px;
    letter-spacing: 2px;
}

.referral-box h2 {
    font-size: 48px;
    margin: 20px 0;
    line-height: 1.2;
}

.referral-box p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 700px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .referral-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
    }

    .referral-box h2 {
        font-size: 34px;
    }
}

/* PACKAGES */

.packages {
    padding: 100px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    position: relative;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 35px;

    padding: 40px 30px;

    transition: 0.4s;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: #22c55e;
}

.active-package {
    border-color: #22c55e;
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 30px;

    background: #22c55e;
    color: black;

    padding: 8px 16px;

    border-radius: 30px;

    font-size: 12px;
    font-weight: bold;
}

.package-top {
    margin-bottom: 30px;
}

.package-top h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

.price {
    font-size: 50px;
    font-weight: bold;
    color: #22c55e;
}

.package-card ul {
    list-style: none;
    margin-bottom: 35px;
}

.package-card li {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.75);
}

/* FAQ */

.faq {
    padding: 100px 0;
}

.faq-box {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    margin-bottom: 20px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 20px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.03);
}

.faq-question {
    width: 100%;

    background: none;
    border: none;

    color: white;

    text-align: left;

    padding: 25px;

    font-size: 18px;

    cursor: pointer;
}

.faq-answer {
    display: none;

    padding: 0 25px 25px;

    color: rgba(255, 255, 255, 0.7);

    line-height: 1.8;
}

/* FOOTER */

.footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    max-width: 400px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }
}

/* STICKY NAVBAR */

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;

    backdrop-filter: blur(12px);

    background: rgba(11, 17, 32, 0.7);
}

/* NAV RIGHT */

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* MOBILE BTN */

.menu-btn {
    display: none;

    background: none;
    border: none;

    color: white;

    font-size: 28px;

    cursor: pointer;
}

/* MOBILE MENU */

.mobile-menu {
    display: none;

    flex-direction: column;

    padding: 20px;

    gap: 20px;

    background: #111827;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu a {
    color: white;
    text-decoration: none;
}

.mobile-register {
    background: #22c55e;
    color: black !important;

    padding: 12px 18px;

    border-radius: 14px;

    width: fit-content;
}

/* DOWNLOAD */

.download-app {
    padding: 100px 0;
}

.download-box {
    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 40px;

    padding: 60px;

    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;

    backdrop-filter: blur(10px);
}

.download-box h2 {
    font-size: 48px;
    margin: 20px 0;
    line-height: 1.2;
}

.download-box p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 700px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* SCROLL ANIMATION */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .register-btn {
        display: none;
    }

    .download-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
    }

    .download-box h2 {
        font-size: 34px;
    }
}

/* AUTH */

.auth-section {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 20px;
}

.auth-box {
    width: 100%;
    max-width: 520px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 18px;
    padding: 32px 26px;
    backdrop-filter: blur(-1px);
}

.auth-top {
    text-align: center;
    margin-bottom: 40px;
}

.auth-top h1 {
    font-size: 42px;
    margin: 20px 0;
}

.auth-top p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* INPUT */

.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    color: white;
}

.input-group input {
    width: 100%;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 18px;

    padding: 16px;

    color: white;

    outline: none;
}

.input-group input:focus {
    border-color: #22c55e;
}

/* BTN */

.auth-btn {
    width: 100%;

    background: #22c55e;

    color: black;

    border: none;

    padding: 18px;

    border-radius: 18px;

    font-size: 18px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.auth-btn:hover {
    transform: translateY(-2px);
}

/* ALERTS */

.success-box {
    background: rgba(34, 197, 94, 0.15);

    color: #22c55e;

    padding: 16px;

    border-radius: 16px;

    margin-bottom: 25px;
}

.error-box {
    background: rgba(255, 0, 0, 0.1);

    color: #ff7b7b;

    padding: 16px;

    border-radius: 16px;

    margin-bottom: 25px;
}

/* .vir_btn {
    width: 100%;
    background: #22c55ead;
    color: rgb(247, 247, 247);
    padding: 14px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 35px;
} */

/* AUTH IMPROVED */

/* .auth-box {
    max-width: 420px;
    margin: auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

.auth-box h2 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
} */

/* INPUTS */
.auth-box input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: white;
}

/* BUTTONS */
.auth-box button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background: #22c55e;
    color: black;
    font-weight: bold;
    transition: 0.3s;
}

.auth-box button:hover {
    opacity: 0.8;
}

#sendCodeBtn {
    width: 140px;
    background: #3b82f6;
    color: white;
}
#sendc {
    width: 140px;
    background: #3b82f6;
    color: white;
}

#timerText {
    display: block;
    margin-top: 5px;
}

#msgBox {
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
    font-weight: bold;
}

.success {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.error {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.fake-chart {
    margin-top: 20px;
    height: 220px;
    border-radius: 20px;
    background: linear-gradient(
        180deg,
        rgba(34, 197, 94, 0.12),
        rgba(0, 0, 0, 0.1)
    );

    position: relative;
    overflow: hidden;
    padding: 20px;
}

/* glowing line */

.chart-line {
    position: absolute;
    width: 120%;
    height: 2px;
    background: #22c55e;

    top: 40%;
    left: -10%;

    transform: rotate(-8deg);

    box-shadow: 0 0 20px #22c55e;

    animation: pulse 2s infinite;
}

/* bars */

.chart-bars {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;

    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 140px;
}

.chart-bars span {
    flex: 1;
    background: linear-gradient(180deg, #22c55e, #14532d);

    border-radius: 8px 8px 0 0;

    animation: bars 2s infinite alternate;
}

/* animations */

@keyframes bars {
    from {
        transform: scaleY(0.9);
    }

    to {
        transform: scaleY(1.05);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* =========================
   COUNTDOWN SECTION
========================= */

.countdown-section {
    padding: 100px 0;
}

.countdown-box {
    background: linear-gradient(
        135deg,
        rgba(34, 197, 94, 0.15),
        rgba(15, 32, 39, 0.95)
    );

    border: 1px solid rgba(34, 197, 94, 0.25);

    border-radius: 32px;

    padding: 70px 40px;

    text-align: center;

    position: relative;

    overflow: hidden;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.countdown-box::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    background: rgba(34, 197, 94, 0.08);

    border-radius: 50%;

    top: -120px;
    right: -120px;

    filter: blur(20px);
}

.countdown-badge {
    display: inline-block;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(34, 197, 94, 0.12);

    color: #22c55e;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.countdown-box h2 {
    margin-top: 22px;

    font-size: 48px;
    color: white;

    line-height: 1.2;
}

.countdown-box p {
    max-width: 700px;

    margin: 18px auto 0;

    color: #cbd5e1;

    font-size: 17px;
    line-height: 1.8;
}

.countdown-grid {
    margin-top: 45px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.time-card {
    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 24px;

    padding: 35px 20px;

    backdrop-filter: blur(10px);

    transition: 0.3s;
}

.time-card:hover {
    transform: translateY(-6px);

    border-color: #22c55e;
}

.time-card h3 {
    font-size: 52px;

    color: #22c55e;

    margin-bottom: 10px;

    font-weight: 700;
}

.time-card span {
    color: #94a3b8;

    font-size: 15px;

    letter-spacing: 1px;
}

/* MOBILE */

@media (max-width: 768px) {
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .countdown-box {
        padding: 50px 20px;
    }

    .countdown-box h2 {
        font-size: 34px;
    }

    .time-card h3 {
        font-size: 38px;
    }
}

.reg {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 200px;
    margin-top: 40px;
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: scale(1.05);
}
.step-number {
    transition: 0.3s;
}

.step-card:hover .step-number {
    background: #22c55e;
    color: black;
    box-shadow: 0 0 15px #22c55e;
    transform: translateY(-6px) scale(1.1);
}

/* =========================
404 PAGE
========================= */

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
}

.error-box-page {
    width: 100%;
    max-width: 700px;
    margin: auto;
    text-align: center;
    padding: 60px 40px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 30px;

    backdrop-filter: blur(10px);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.error-code {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;

    background: linear-gradient(135deg, #22c55e, #3b82f6);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin-bottom: 20px;
}

.error-box-page h1 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 15px;
}

.error-box-page p {
    color: #bdbdbd;
    font-size: 18px;
    line-height: 1.8;
    max-width: 500px;
    margin: auto;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 35px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 80px;
    }

    .error-box-page {
        padding: 40px 25px;
    }

    .error-box-page h1 {
        font-size: 32px;
    }
}

.logo img {
    width: 47px;
    margin-right: 10px;
}
.logof {
    display: flex;
    align-items: center;
}

.extra-profit-section {
    padding: 80px 20px;
    background: #08131e;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-title p {
    color: #9ca3af;
    font-size: 16px;
}

.profit-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.profit-card {
    background: rgba(17, 28, 42, 0.9);

    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 30px;

    padding: 30px;

    transition: 0.35s;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.profit-card:hover {
    transform: translateY(-8px);

    border-color: #00e5a8;
}

.profit-header {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 28px;
}

.profit-icon {
    width: 65px;
    height: 65px;

    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;

    color: #fff;
}

.profit-icon.green {
    background: linear-gradient(135deg, #00e5a8, #00c896);
}

.profit-icon.blue {
    background: linear-gradient(135deg, #00c2ff, #0088ff);
}

.profit-header h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 5px;
}

.profit-header span {
    color: #9ca3af;
    font-size: 14px;
}

.profit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profit-list li {
    position: relative;

    padding-left: 32px;

    margin-bottom: 18px;

    color: #d1d5db;

    line-height: 1.7;
}

.profit-list li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    color: #00e5a8;

    font-weight: bold;
}

/* ---------------------------------------------------ovel---------------------- */

/* استایل تاریک‌کننده پس‌زمینه با افکت شیشه‌ای بلورین */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 11, 22, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

/* باکس اصلی مودال */
.modal-content {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(34, 197, 94, 0.1);
    border-radius: 24px;
    width: 100%;
    max-width: 520px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    animation: scaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* آیکون تایید سبز رنگ */
.success-icon-wrapper {
    width: 72px;
    height: 72px;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.success-icon-wrapper svg {
    width: 44px;
    height: 44px;
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.modal-subtitle {
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 24px;
}

/* بخش هشدار زرد/نارنجی پلتفرم */
.security-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #f59e0b;
    border-radius: 14px;
    padding: 16px;
    font-size: 13.5px;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
}

.warning-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* المان نمایش رمز عبور */
.wallet-display-container {
    text-align: left;
    margin-bottom: 30px;
}

.wallet-display-container .label {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 8px;
    font-weight: 500;
}

.wallet-row {
    display: flex;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    padding: 6px;
}

.wallet-row input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    padding: 10px 14px;
    font-size: 16px;
    font-family: monospace;
    flex-grow: 1;
    width: 100%;
}

.copy-btn {
    background: #334155;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: #475569;
}

.copy-btn.copied {
    background: #22c55e;
    color: black;
}

/* دکمه انتقال نهایی */
.confirm-btn {
    background: #22c55e;
    color: black;
    border: none;
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 0.2s,
        background-color 0.2s;
}

.confirm-btn:hover {
    background: #16a34a;
    transform: translateY(-1px);
}

.confirm-btn:active {
    transform: translateY(0);
}

/* انیمیشن‌ها */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* بهینه‌سازی رسپانسیو گوشی */
@media (max-width: 480px) {
    .modal-content {
        padding: 30px 20px;
    }

    .security-warning {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

html {
    scroll-behavior: smooth;
}
