@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0d6efd;
    --primary-dark: #0052cc;
    --primary-light: #4d9eff;
    --accent: #0A84FF;
    --accent-dark: #0063cc;
    --dark: #0a0a0a;
    --darker: #000000;
    --card-bg: rgba(20, 20, 20, 0.7);
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dimmed: rgba(255, 255, 255, 0.5);
    --success: #00c853;
    --error: #ff1744;
    --warning: #ffab00;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.25);
    --input-bg: rgba(255, 255, 255, 0.05);
    --input-border: rgba(255, 255, 255, 0.1);
    --input-focus-bg: rgba(255, 255, 255, 0.07);
    --input-focus-border: rgba(13, 110, 253, 0.4);
    --gradient-primary: linear-gradient(135deg, #0d6efd 0%, #0052cc 100%);
    --gradient-accent: linear-gradient(135deg, #0A84FF 0%, #0063cc 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #121212 100%);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--darker);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.shape-primary {
    background-color: var(--primary);
    width: 600px;
    height: 600px;
    top: -250px;
    left: -250px;
    opacity: 0.07;
    animation: moveShape1 20s infinite alternate ease-in-out;
}

.shape-secondary {
    background-color: var(--accent);
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -100px;
    opacity: 0.05;
    animation: moveShape2 15s infinite alternate ease-in-out;
}

.shape-tertiary {
    background-color: var(--primary-light);
    width: 400px;
    height: 400px;
    top: 40%;
    right: 20%;
    opacity: 0.03;
    animation: moveShape3 18s infinite alternate ease-in-out;
}

@keyframes moveShape1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 100px) scale(1.1);
    }
}

@keyframes moveShape2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-100px, -100px) scale(1.2);
    }
}

@keyframes moveShape3 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-50px, 50px) rotate(15deg);
    }
}

/* Header */
header {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    position: relative;
}

.logo span {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.logo-mark {
    color: var(--primary);
    margin-left: 5px;
    font-size: 14px;
    position: relative;
    top: -10px;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
}

.logo:hover::after {
    width: 100%;
}

.logo-icon {
    color: var(--primary);
    margin-right: 6px;
    font-size: 24px;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.footer-logo-image {
    height: 35px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-normal);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: 0.5s;
    z-index: -1;
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-outline:hover {
    border-color: transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

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

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

.btn-primary:hover {
    box-shadow: 0 5px 15px rgba(74, 222, 128, 0.4);
    transform: translateY(-2px);
}

.btn-icon {
    margin-left: 8px;
    transition: var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Hero Section */
.hero {
    padding: 60px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - 80px);
    position: relative;
}

.hero-content {
    max-width: 50%;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
}

.hero-title span {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 90%;
}

.hero-features {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature i {
    color: var(--primary);
    font-size: 20px;
}

.hero-feature span {
    font-size: 14px;
    font-weight: 500;
}

.hero-image {
    position: relative;
    width: 45%;
    animation: floatAnimation 5s infinite alternate ease-in-out;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
    object-fit: cover;
    max-height: 500px;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-radius: var(--radius-lg);
    opacity: 0.5;
    mix-blend-mode: overlay;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border: 2px solid rgba(74, 222, 128, 0.2);
    border-radius: var(--radius-lg);
    animation: borderPulse 3s infinite;
    z-index: -1;
}

/* Dashboard image specific styles */
.hero-image img[alt*="Dashboard"] {
    border: 3px solid rgba(13, 110, 253, 0.3);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.2);
}

.hero-image img[alt*="Dashboard"]:hover {
    border-color: rgba(13, 110, 253, 0.6);
    box-shadow: 0 25px 50px rgba(13, 110, 253, 0.3);
}

@keyframes borderPulse {
    0% {
        opacity: 0.2;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.2;
        transform: scale(0.95);
    }
}

.hero-cta {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: rgba(255, 255, 255, 0.1);
}

.stat:last-child::after {
    display: none;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-dimmed);
}

/* Features Section */
.features {
    padding: 100px 5%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(10, 10, 10, 1));
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2 span {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px;
    transition: var(--transition-normal);
    transform: translateY(0);
    position: relative;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08) 0%, rgba(10, 132, 255, 0.08) 100%);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 110, 253, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon i {
    color: var(--text);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-normal);
}

.feature-card:hover .feature-title::after {
    width: 100%;
    background: var(--gradient-primary);
}

.feature-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-detail {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.feature-detail:hover {
    gap: 10px;
}

/* Payment Methods Section */
.payment-methods {
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.methods-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

.method-card {
    width: 30%;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.method-card:hover::before {
    height: 100%;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 110, 253, 0.2);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 255, 255, 0.2);
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(13, 110, 253, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.method-icon i {
    font-size: 24px;
    color: var(--primary);
}

.method-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-badge {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 20px;
    background: rgba(13, 110, 253, 0.08);
    color: var(--primary);
}

.method-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 80px 5%;
    background: linear-gradient(120deg, #000000, #0a0a0a, #121212);
    position: relative;
    overflow: hidden;
    margin: 0 5%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 100px;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-shape-1 {
    background-color: var(--primary);
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    opacity: 0.1;
}

.cta-shape-2 {
    background-color: var(--accent);
    width: 250px;
    height: 250px;
    bottom: -100px;
    left: -80px;
    opacity: 0.1;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 700px;
}

.cta-title span {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

/* Footer */
footer {
    padding: 50px 5% 30px;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-logo span {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 300px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    color: var(--text-muted);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--text);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-group h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-group ul {
    list-style: none;
}

.footer-group ul li {
    margin-bottom: 12px;
}

.footer-group ul li a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    display: inline-block;
}

.footer-group ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: var(--transition-normal);
}

.footer-group ul li a:hover {
    color: var(--primary);
}

.footer-group ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: var(--text-dimmed);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 12px;
    color: var(--text-dimmed);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--text);
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 999;
    transition: width 0.1s;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        padding: 40px 5%;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        width: 70%;
    }

    .hero-image img {
        max-height: 400px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .methods-container {
        justify-content: center;
    }

    .method-card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .method-card {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-group {
        width: 45%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 24px;
    }

    .auth-buttons {
        gap: 10px;
    }

    .btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .hero-feature {
        justify-content: center;
    }

    .hero-image {
        width: 90%;
    }

    .hero-image img {
        max-height: 300px;
        transform: perspective(1000px) rotateY(-5deg);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat {
        width: 45%;
    }

    .stat::after {
        display: none;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .footer-group {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px 0 rgba(74, 222, 128, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 0 rgba(74, 222, 128, 0.6);
    }

    100% {
        box-shadow: 0 0 5px 0 rgba(74, 222, 128, 0.4);
    }
}

@keyframes typewriterCursor {
    from {
        border-right-color: var(--primary);
    }

    to {
        border-right-color: transparent;
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease forwards;
}

.animate-slideInUp {
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

.animate-pulse {
    animation: pulse 3s infinite;
}

.animate-glowPulse {
    animation: glowPulse 2s infinite;
}

/* Delay classes */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Particle animation */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    display: block;
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
}

@keyframes particleAnimation {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        position: fixed;
        width: 250px;
        height: 100%;
        left: -250px;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .dashboard-sidebar.show {
        left: 0;
    }

    .dashboard-content {
        padding: 20px;
    }

    .deposit-options {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
