
:root {
    --primary: #0a0a0a;
    --primary-light: #1a1a1a;
    --dark: #050505;
    --darker: #000000;
    --light: #ffffff;
    --gray: #b0b0b0;
    --gray-dark: #666666;
    --gray-light: #e0e0e0;
    --success: #00cc88;
    --danger: #ff4444;
    --warning: #ffaa00;
    --info: #0099ff;
    --crystal: rgba(255, 255, 255, 0.08);
    --crystal-border: rgba(255, 255, 255, 0.15);
    --crystal-highlight: rgba(255, 255, 255, 0.05);
    --accent: #ffffff;
    --crystal-blue: rgba(0, 200, 255, 0.3);
    --crystal-purple: rgba(180, 70, 255, 0.3);
    --crystal-green: rgba(0, 255, 180, 0.3);
    --crystal-pink: rgba(255, 100, 200, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    color: var(--light);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Crystal Animation Background */
.crystal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.crystal {
    position: absolute;
    background: linear-gradient(135deg, var(--crystal-blue), var(--crystal-purple));
    border-radius: 10px;
    opacity: 0.1;
    filter: blur(20px);
    animation: float 20s infinite linear;
}

.crystal:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    background: linear-gradient(135deg, var(--crystal-blue), var(--crystal-green));
    animation-delay: 0s;
}

.crystal:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 80%;
    background: linear-gradient(135deg, var(--crystal-purple), var(--crystal-pink));
    animation-delay: -5s;
    animation-duration: 25s;
}

.crystal:nth-child(3) {
    width: 400px;
    height: 400px;
    top: 30%;
    left: 60%;
    background: linear-gradient(135deg, var(--crystal-green), var(--crystal-blue));
    animation-delay: -10s;
    animation-duration: 30s;
}

.crystal:nth-child(4) {
    width: 250px;
    height: 250px;
    top: 70%;
    left: 10%;
    background: linear-gradient(135deg, var(--crystal-pink), var(--crystal-purple));
    animation-delay: -15s;
    animation-duration: 35s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(0, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Landing Page Styles */
.landing-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.landing-header {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--crystal-border);
}

.landing-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    background: var(--crystal);
    color: var(--light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light);
    transition: width 0.3s;
}

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

/* Animated Logo Styles */
.logo-animated {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-icon {
    font-size: 2rem;
    margin-right: 10px;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--light);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

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

.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--light), var(--gray-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--gray);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.capital-range {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 30px 0;
    color: var(--light);
    animation: fadeInUp 1s ease-out 0.4s both;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.referral-tagline {
    background: linear-gradient(135deg, var(--crystal-purple), var(--crystal-pink));
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-block;
    margin: 20px 0;
    font-weight: bold;
    color: white;
    box-shadow: 0 5px 15px rgba(180, 70, 255, 0.3);
    animation: pulse 2s infinite;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: var(--light);
    color: var(--primary);
    border: 1px solid var(--crystal-border);
}

.btn-primary:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--crystal-border);
}

.btn-outline:hover {
    background: var(--crystal);
    border-color: var(--light);
}

/* Trading Images Section */
.trading-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.trading-image {
    width: 200px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--crystal-border);
    transition: all 0.3s;
    background: var(--crystal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-weight: bold;
}

.trading-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--light);
}

/* Packages Section on Landing Page */
.packages-section {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.3);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--light);
    animation: fadeInUp 1s ease-out;
}

.category-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 12px 24px;
    background: var(--crystal);
    border: 1px solid var(--crystal-border);
    border-radius: 30px;
    color: var(--light);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.category-btn:hover, .category-btn.active {
    background: var(--light);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.package-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--light);
    border-bottom: 2px solid var(--crystal-border);
    padding-bottom: 10px;
}

.landing-package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.landing-package-item {
    background: var(--crystal);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--crystal-border);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.landing-package-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--crystal-blue), var(--crystal-purple), var(--crystal-green));
}

.landing-package-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--light);
}

.landing-package-item h3 {
    color: var(--light);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.landing-package-price {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 15px 0;
    color: var(--light);
}

.package-details {
    flex-grow: 1;
    margin-bottom: 20px;
}

.package-detail {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 0 20px;
    border-top: 1px solid var(--crystal-border);
    backdrop-filter: blur(15px);
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: var(--light);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p, .footer-section a {
    color: var(--gray);
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--crystal-border);
    margin-top: 40px;
    color: var(--gray);
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--crystal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid var(--crystal-border);
}

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

/* Page container and common styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page {
    display: none;
}

.page.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.card {
    background: var(--crystal);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid var(--crystal-border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--crystal-blue), var(--crystal-purple));
}

h1, h2, h3 {
    color: var(--light);
    margin-bottom: 20px;
}

h1 {
    font-size: 2.2rem;
    border-bottom: 2px solid var(--crystal-border);
    padding-bottom: 10px;
}

h2 {
    font-size: 1.8rem;
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-warning {
    background: var(--warning);
    color: white;
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--gray);
    font-weight: 500;
}

input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-dark);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--light);
    font-size: 1rem;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--light);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 6px;
    color: white;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
    max-width: 400px;
    backdrop-filter: blur(10px);
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.notification.success {
    background-color: var(--success);
}

.notification.error {
    background-color: var(--danger);
}

.notification.info {
    background-color: var(--info);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--crystal-border);
}

th {
    background: rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

tr:hover {
    background: var(--crystal-highlight);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.package-item {
    background: var(--crystal);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--crystal-border);
    transition: all 0.3s;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.package-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--crystal-blue), var(--crystal-green));
}

.package-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--light);
}

.package-item h3 {
    color: var(--light);
    margin-bottom: 10px;
}

.package-price {
    font-size: 2rem;
    font-weight: bold;
    margin: 15px 0;
    color: var(--light);
}

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

.modal-content {
    background: var(--primary-light);
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
    border: 1px solid var(--crystal-border);
    backdrop-filter: blur(15px);
}

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

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s;
}

.close:hover {
    color: var(--light);
}

.status {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.status-pending {
    background-color: var(--warning);
    color: white;
}

.status-approved {
    background-color: var(--success);
    color: white;
}

.status-rejected {
    background-color: var(--danger);
    color: white;
}

.status-active {
    background-color: var(--success);
    color: white;
}

.status-breach {
    background-color: var(--warning);
    color: white;
}

.status-suspended {
    background-color: var(--danger);
    color: white;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--crystal-border);
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--crystal);
    border-radius: 8px;
    border: 1px solid var(--crystal-border);
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 15px;
    border: 1px solid var(--crystal-border);
}

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

.stat-card {
    background: var(--crystal);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border-left: 4px solid var(--light);
    backdrop-filter: blur(15px);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--crystal-blue), var(--crystal-purple));
}

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

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0;
    color: var(--light);
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.account-credentials {
    background: var(--crystal);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--light);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.account-credentials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--crystal-green), var(--crystal-blue));
}

.credentials-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.credentials-label {
    font-weight: bold;
    color: var(--gray);
}

.credentials-value {
    font-family: monospace;
    color: var(--light);
}

/* Payment Page Styles */
.payment-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    color: var(--light);
}

.payment-header {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--crystal-border);
}

.payment-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-content {
    flex: 1;
    padding: 120px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.payment-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--crystal-border);
}

.payment-tab {
    padding: 15px 30px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    font-weight: 600;
}

.payment-tab.active {
    border-bottom-color: var(--light);
    color: var(--light);
}

.payment-section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.payment-section.active {
    display: block;
}

.payment-card {
    background: var(--crystal);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid var(--crystal-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--crystal-blue), var(--crystal-purple), var(--crystal-green));
}

.payment-info {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 4px solid var(--light);
}

.payment-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.payment-label {
    font-weight: bold;
    color: var(--gray);
}

.payment-value {
    color: var(--light);
}

.discount-badge {
    background: var(--success);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-left: 10px;
    animation: pulse 2s infinite;
}

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

.referral-info {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--crystal-border);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.referral-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--light);
}

.payment-animation {
    text-align: center;
    margin: 30px 0;
}

.payment-animation-icon {
    font-size: 4rem;
    color: var(--light);
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.payment-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 5rem;
    color: var(--success);
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.payment-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.payment-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--crystal-border);
    z-index: 1;
}

.payment-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--crystal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-weight: bold;
    transition: all 0.3s;
    border: 1px solid var(--crystal-border);
}

.payment-step.active .step-number {
    background: var(--light);
    color: var(--primary);
}

.step-label {
    font-size: 0.8rem;
    text-align: center;
}

.payment-form {
    animation: slideUp 0.5s ease-out;
}

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

/* NEW STYLES FOR SEARCH BARS AND REDESIGNED ACCOUNTS */
.search-container {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--gray-dark);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--light);
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: var(--light);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.funded-accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.account-card {
    background: var(--crystal);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--crystal-border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--crystal-blue), var(--crystal-purple));
}

.account-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--light);
}

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

.account-title {
    font-size: 1.4rem;
    color: var(--light);
    margin: 0;
}

.account-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.account-details {
    margin: 20px 0;
}

.account-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--crystal-highlight);
}

.detail-label {
    color: var(--gray);
    font-weight: 500;
}

.detail-value {
    color: var(--light);
    font-weight: 600;
}

.account-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.copy-btn {
    background: var(--crystal);
    border: 1px solid var(--crystal-border);
    color: var(--light);
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.copy-btn:hover {
    background: var(--light);
    color: var(--primary);
    transform: translateY(-2px);
}

.account-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--light);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
}

/* NEW STYLES FOR CRYPTO PAYMENT */
.crypto-payment {
    text-align: center;
}

.network-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.network-btn {
    padding: 10px 20px;
    background: var(--crystal);
    border: 1px solid var(--crystal-border);
    border-radius: 8px;
    color: var(--light);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.network-btn.active {
    background: var(--light);
    color: var(--primary);
    border-color: var(--light);
}

.qr-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.qr-code {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.crypto-address {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-family: monospace;
    word-break: break-all;
    border: 1px solid var(--crystal-border);
}

.payment-instructions {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
    border-left: 4px solid var(--warning);
}

.payment-instructions ol {
    padding-left: 20px;
    margin: 10px 0;
}

.payment-instructions li {
    margin-bottom: 8px;
}

.amount-display {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 15px 0;
    color: var(--light);
}

.timer {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 15px 0;
    color: var(--warning);
}

.txid-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--crystal-border);
}

/* ABOUT US PAGE STYLES */
.about-page {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    color: var(--light);
}

.about-hero {
    padding: 80px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--light), var(--gray-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid var(--crystal-border);
    padding-bottom: 15px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-card {
    background: var(--crystal);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--crystal-border);
    transition: all 0.3s;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--crystal-blue), var(--crystal-purple), var(--crystal-green));
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--light);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--light);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light);
}

.about-card p {
    color: var(--gray);
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: var(--crystal);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--crystal-border);
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--crystal-blue), var(--crystal-purple));
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--light);
}

.member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    border: 2px solid var(--crystal-border);
}

.member-name {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--light);
}

.member-role {
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--gray);
    line-height: 1.6;
}

.partner-section {
    text-align: center;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    margin-top: 60px;
    border: 1px solid var(--crystal-border);
}

.partner-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.partner-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--gray);
}

@media (max-width: 768px) {
    .package-grid, .landing-package-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dashboard-header h1 {
        margin-bottom: 15px;
    }
    
    .credentials-row {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .capital-range {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .payment-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .payment-steps::before {
        display: none;
    }
    
    .payment-step {
        flex-direction: row;
        width: 100%;
        text-align: left;
    }
    
    .step-number {
        margin-right: 15px;
        margin-bottom: 0;
    }
    
    .category-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .funded-accounts-grid {
        grid-template-columns: 1fr;
    }
    
    .account-actions {
        flex-direction: column;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Responsive table styles */
    .table-responsive {
        overflow-x: auto;
    }
    
    table {
        min-width: 800px;
    }
    
    .network-selector {
        flex-direction: column;
    }
    
    /* Footer responsive styles */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* About page responsive */
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .about-grid, .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 200;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu .nav-link {
    font-size: 1.5rem;
    margin: 15px 0;
    padding: 15px 30px;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--light);
    font-size: 2rem;
    cursor: pointer;
}
