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

body {
    background-color: #0b0e11;
    color: #eaecef;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #0b0e11;
    border-bottom: 1px solid #2a2d35;
}

.login-logo {
    display: block;
    max-width: 125px;
    margin: 15px auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 24px;
}

.logo-link {
    text-decoration: none;
}

.logo-text {
    font-family: 'Orbitron', 'Inter', Arial, sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    display: inline-block;
}


.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #eaecef;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #00fff7;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sign-in {
    color: #eaecef;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.get-started {
    background-color: #00fff7;
    color: #0b0e11;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.2s;
}

.get-started:hover {
    background-color: #02bdb7;
}

.top-bar {
    background-color: #00fff7;
    color: #0b0e11;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #00fff7, #02bdb7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    color: #848e9c;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.cta-primary {
    background-color: #00fff7;
    color: #0b0e11;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.cta-primary:hover {
    background-color: #02bdb7;
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: transparent;
    color: #eaecef;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #2a2d35;
    transition: all 0.2s;
}

.cta-secondary:hover {
    background-color: #2a2d35;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00fff7;
}

.stat-label {
    font-size: 0.9rem;
    color: #848e9c;
}

.partnership {
    margin: 1.5rem 0;
}

.partnership-text {
    font-size: 0.9rem;
    color: #848e9c;
    margin-bottom: 1rem;
}

.partnership-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.partner-logo {
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.partner-logo:hover {
    opacity: 1;
}

.benefits {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #eaecef;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(42, 45, 53, 0.5);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(240, 185, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 32px;
    height: 32px;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #eaecef;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #848e9c;
    font-size: 0.9rem;
    line-height: 1.6;
}

.trending-pairs {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trending-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #eaecef;
}

.pairs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.pair-card {
    position: relative;
    background: rgba(42, 45, 53, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s;
    cursor: pointer;
}

.pair-card:hover {
    transform: translateY(-5px);
    background: rgba(42, 45, 53, 0.7);
}

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

.pair-info {
    display: flex;
    align-items: center;
}

.pair-info h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.call-type {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.call-type.buy {
    background-color: rgba(0, 255, 0, 0.1);
    color: #00ff00;
}

.call-type.sell {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.pair-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #eaecef;
    margin-bottom: 0.5rem;
}

.pair-change {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.change-positive {
    color: #0ecb81;
}

.change-negative {
    color: #f6465d;
}

.pair-volume {
    color: #848e9c;
    font-size: 0.9rem;
}

.read-more {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #848e9c;
    transition: color 0.2s;
}

.pair-card:hover .read-more {
    color: #00fff7;
}

.track-record {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.track-record-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #eaecef;
}

.track-record-description {
    text-align: center;
    color: #848e9c;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.signals-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(42, 45, 53, 0.5);
    border-radius: 12px;
    overflow: hidden;
}

.signals-table th,
.signals-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #2a2d35;
}

.signals-table th {
    background: rgba(240, 185, 11, 0.1);
    color: #00fff7;
    font-weight: 600;
}

.signals-table tr:last-child td {
    border-bottom: none;
}

.signals-table tr:hover {
    background: rgba(42, 45, 53, 0.7);
}

.profit-positive {
    color: #0ecb81;
}

.profit-negative {
    color: #f6465d;
}

.status-win {
    color: #0ecb81;
    font-weight: 600;
}

.status-loss {
    color: #f6465d;
    font-weight: 600;
}

.pair-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pair-icon-small {
    width: 24px;
    height: 24px;
}

.blurred-price {
    filter: blur(4px);
    user-select: none;
    cursor: not-allowed;
}

.trade-time {
    color: #848e9c;
    font-size: 0.9rem;
}

.cta-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(45deg, rgba(240, 185, 11, 0.1), rgba(248, 209, 47, 0.1));
    margin: 4rem 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #eaecef;
    margin-bottom: 1.5rem;
}

.cta-description {
    color: #848e9c;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer {
    background-color: #0b0e11;
    border-top: 1px solid #2a2d35;
    padding: 4rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h3 {
    color: #eaecef;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #848e9c;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #00fff7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #2a2d35;
    text-align: center;
    color: #848e9c;
    font-size: 0.9rem;
}

.risk-disclaimer {
    background-color: #0b0e11;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #2a2d35;
}

.risk-disclaimer p {
    color: #848e9c;
    font-size: 0.9rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Page Styles */
.about-hero {
    padding: 6rem 2rem;
    background: linear-gradient(45deg, rgba(240, 185, 11, 0.1), rgba(248, 209, 47, 0.1));
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: #eaecef;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description {
    font-size: 1.2rem;
    color: #848e9c;
    line-height: 1.6;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-section {
    margin-bottom: 6rem;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #eaecef;
    text-align: center;
    margin-bottom: 3rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: rgba(42, 45, 53, 0.5);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.tech-card:hover {
    transform: translateY(-5px);
}

.tech-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(240, 185, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon img {
    width: 32px;
    height: 32px;
}

.tech-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #eaecef;
    margin-bottom: 1rem;
}

.tech-card p {
    color: #848e9c;
    font-size: 0.9rem;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: rgba(42, 45, 53, 0.5);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #00fff7;
    color: #0b0e11;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #eaecef;
    margin-bottom: 1rem;
}

.process-step p {
    color: #848e9c;
    font-size: 0.9rem;
    line-height: 1.6;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.approach-card {
    background: rgba(42, 45, 53, 0.5);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s;
}

.approach-card:hover {
    transform: translateY(-5px);
}

.approach-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #eaecef;
    margin-bottom: 1rem;
}

.approach-card p {
    color: #848e9c;
    font-size: 0.9rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(42, 45, 53, 0.5);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    margin-right: 0.5rem;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #eaecef;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #848e9c;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Active navigation link */
.nav-links a.active {
    color: #00fff7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-description {
        font-size: 1.1rem;
    }
    
    .about-section h2 {
        font-size: 1.8rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 6rem 2rem;
    background: linear-gradient(45deg, rgba(240, 185, 11, 0.1), rgba(248, 209, 47, 0.1));
    text-align: center;
}

.pricing-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 700;
    color: #eaecef;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pricing-description {
    font-size: 1.2rem;
    color: #848e9c;
    line-height: 1.6;
}

.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.pricing-section {
    display: flex;
    justify-content: center;
    margin-bottom: 6rem;
}

.pricing-card {
    background: rgba(42, 45, 53, 0.5);
    border-radius: 12px;
    padding: 3rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #eaecef;
    margin-bottom: 1rem;
}

.pricing-fee {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.fee-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #00fff7;
}

.fee-label {
    font-size: 1.1rem;
    color: #848e9c;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #eaecef;
    font-size: 1.1rem;
}

.feature-icon {
    color: #0ecb81;
    font-weight: bold;
}

.pricing-cta {
    margin-top: 2rem;
}

.pricing-info {
    margin-bottom: 6rem;
}

.pricing-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #eaecef;
    text-align: center;
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: rgba(42, 45, 53, 0.5);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(240, 185, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon img {
    width: 32px;
    height: 32px;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #eaecef;
    margin-bottom: 1rem;
}

.info-card p {
    color: #848e9c;
    font-size: 0.9rem;
    line-height: 1.6;
}

.pricing-faq {
    margin-bottom: 6rem;
}

.pricing-faq h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #eaecef;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(42, 45, 53, 0.5);
    border-radius: 12px;
    padding: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #eaecef;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #848e9c;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .pricing-description {
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .fee-amount {
        font-size: 3rem;
    }
    
    .pricing-features li {
        font-size: 1rem;
    }
}

/* FAQ Page Styles */
.faq-hero {
    padding: 6rem 2rem;
    background: linear-gradient(45deg, rgba(240, 185, 11, 0.1), rgba(248, 209, 47, 0.1));
    text-align: center;
}

.faq-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: #eaecef;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.faq-description {
    font-size: 1.2rem;
    color: #848e9c;
    line-height: 1.6;
}

.faq-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.faq-category {
    background: rgba(42, 45, 53, 0.5);
    border-radius: 12px;
    padding: 2rem;
}

.faq-category h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #eaecef;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #2a2d35;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: rgba(42, 45, 53, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #eaecef;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #848e9c;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive adjustments for FAQ page */
@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-description {
        font-size: 1.1rem;
    }
    
    .faq-category {
        padding: 1.5rem;
    }
    
    .faq-category h2 {
        font-size: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .faq-item p {
        font-size: 0.95rem;
    }
}

/* Login Page Styles */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.login-container {
    background: rgba(42, 45, 53, 0.5);
    border-radius: 12px;
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #eaecef;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #848e9c;
    font-size: 1rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #eaecef;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input {
    background: rgba(42, 45, 53, 0.8);
    border: 1px solid #2a2d35;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: #eaecef;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #00fff7;
}

.form-group input::placeholder {
    color: #848e9c;
}

.password-input {
    position: relative;
    width: 100%;
}

.password-input input {
    width: 100%;
    padding-right: 3rem; /* Make room for the eye icon */
}

/* Responsive Table Scroll */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}
.table-responsive table {
  min-width: 600px;
  /* Adjust as needed for your columns */
}

/* Responsive Navbar Visibility */
.desktop-navbar { display: block; }
.mobile-navbar, .mobile-nav-modal { display: none; }

@media (max-width: 900px) {
  .desktop-navbar { display: none; }
  .mobile-navbar { 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    background: #0b0e11;
    border-bottom: 1px solid #2a2d35;
    position: relative;
    z-index: 11;
  }
  .mobile-logo img {
    height: 24px;
  }
  .hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 32px;
    width: 40px;
    gap: 5px;
    z-index: 12;
  }
  .hamburger span {
    display: block;
    height: 3px;
    width: 28px;
    background: #eaecef;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .mobile-nav-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 14, 17, 0.98);
    z-index: 1001;
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s;
  }
  .mobile-nav-modal.active {
    display: flex;
    opacity: 1;
  }
  .mobile-nav-modal-content {
    background: none;
    width: 100%;
    max-width: 350px;
    margin: auto;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    border-radius: 12px;
    box-shadow: none;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .close-modal {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #eaecef;
    cursor: pointer;
    z-index: 1102;
    transition: color 0.2s;
  }
  .close-modal:hover {
    color: #f6465d;
  }
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    list-style: none;
    margin: 3.5rem 0 0 0;
    padding: 0;
    align-items: center;
    width: 100%;
  }
  .mobile-nav-links a {
    color: #eaecef;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    display: block;
    width: 100%;
    text-align: center;
  }
  .mobile-nav-links a:hover {
    color: #00fff7;
    background: rgba(0,255,247,0.1);
  }
  .mobile-nav-links .get-started {
    background: #00fff7;
    color: #0b0e11;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 1.5rem;
    padding: 0.7rem 0;
    transition: background 0.2s, color 0.2s;
  }
  .mobile-nav-links .get-started:hover {
    background: #00fff7;
    color: #0b0e11;
  }
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #848e9c;
    cursor: pointer;
    user-select: none;
}

.remember-me input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #2a2d35;
    background: rgba(42, 45, 53, 0.8);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.remember-me input[type="checkbox"]:checked {
    background: #00fff7;
    border-color: #00fff7;
}

.remember-me input[type="checkbox"]:checked::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    border: solid #0b0e11;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
    transition: all 0.2s ease;
}

.remember-me input[type="checkbox"]:hover {
    border-color: #00fff7;
}

.remember-me input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(240, 185, 11, 0.2);
}

.remember-me span {
    font-size: 0.9rem;
    transition: color 0.2s;
}

.remember-me:hover span {
    color: #eaecef;
}

.forgot-password {
    color: #00fff7;
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-password:hover {
    color: #02bdb7;
}

.login-button {
    background: #00fff7;
    color: #0b0e11;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.login-button:hover {
    background: #02bdb7;
    transform: translateY(-2px);
}

.login-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 30px);
    height: 1px;
    background: #2a2d35;
}

.login-divider::before {
    left: 0;
}

.login-divider::after {
    right: 0;
}

.login-divider span {
    background: rgba(42, 45, 53, 0.5);
    padding: 0 1rem;
    color: #848e9c;
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.google-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: rgba(42, 45, 53, 0.8);
    border: 1px solid #2a2d35;
    border-radius: 8px;
    padding: 0.8rem;
    color: #eaecef;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.google-login:hover {
    background: rgba(42, 45, 53, 1);
    transform: translateY(-2px);
}

.google-login img {
    width: 20px;
    height: 20px;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    color: #848e9c;
    font-size: 0.9rem;
}

.login-footer a {
    color: #00fff7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.login-footer a:hover {
    color: #02bdb7;
}

/* Active navigation link for login page */
.nav-right .sign-in.active {
    color: #00fff7;
}

/* Responsive adjustments for login page */
@media (max-width: 768px) {
    .login-container {
        padding: 2rem;
    }
    
    .login-header h1 {
        font-size: 1.8rem;
    }
    
    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

.form-group select {
    background: rgba(42, 45, 53, 0.8);
    border: 1px solid #2a2d35;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: #eaecef;
    font-size: 1rem;
    transition: border-color 0.2s;
    width: 100%;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23848E9C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select:focus {
    outline: none;
    border-color: #00fff7;
}

.form-group select option {
    background: #2a2d35;
    color: #eaecef;
    padding: 0.8rem;
}

.form-group select:hover {
    border-color: #00fff7;
}

.form-group select:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-group select:disabled:hover {
    border-color: #2a2d35;
}

/* Update form options for terms and conditions */
.form-options {
    margin: 1rem 0;
}

.form-options .remember-me {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-options .remember-me span {
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-options .remember-me a {
    color: #00fff7;
    text-decoration: none;
    transition: color 0.2s;
}

.form-options .remember-me a:hover {
    color: #02bdb7;
}

/* Password validation styles */
.password-input input:invalid {
    /*border-color: #f6465d;*/
}

.password-input input:valid {
    /*border-color: #0ecb81;*/
}

/* Responsive adjustments for signup form */
@media (max-width: 768px) {
    .form-options .remember-me {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-options .remember-me span {
        font-size: 0.85rem;
    }
}

/* Signup Page Layout */
.signup-container {
    display: flex;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    align-items: center;
    justify-content: center;
}

.signup-form-container {
    flex: 1;
    max-width: 500px;
}

.benefits-card {
    flex: 1;
    background: rgba(42, 45, 53, 0.5);
    border-radius: 0 12px 12px 0;
    padding: 2.5rem;
    position: sticky;
    top: 2rem;
    max-width: 500px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-container {
    border-radius: 12px 0 0 12px;
}

.benefits-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #eaecef;
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(240, 185, 11, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #eaecef;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #848e9c;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive adjustments for signup page */
@media (max-width: 1024px) {
    .signup-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .signup-form-container,
    .benefits-card {
        max-width: 100%;
        width: 100%;
    }

    .benefits-card {
        position: static;
        margin-top: 0;
        border-radius: 12px;
    }

    .login-container {
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .signup-container {
        padding: 1rem;
    }

    .benefits-card {
        padding: 1.5rem;
    }

    .benefits-card h2 {
        font-size: 1.5rem;
    }

    .benefit-item {
        gap: 0.8rem;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    .benefit-content h3 {
        font-size: 1.1rem;
    }

    .benefit-content p {
        font-size: 0.9rem;
    }
}

/* Dashboard Layout */
.dashboard-body {
    display: flex;
    min-height: 100vh;
    background-color: #0b0e11;
}

.dashboard-nav {
    width: 240px;
    background: #0a0c0e;
    border-right: 1px solid rgba(240, 185, 11, 0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.dashboard-nav::before {
    display: none;
}

.nav-header {
    padding: 0 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.nav-logo {
    height: 24px;
    filter: brightness(1.1);
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.nav-item {
    margin-bottom: 0.5rem;
    padding: 0 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    color: #848e9c;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0 8px 8px 0;
    position: relative;
    overflow: hidden;
    margin-left: 0.5rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(240, 185, 11, 0.1), rgba(14, 203, 129, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-error {
    background: tomato;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.nav-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.nav-item.active .nav-link {
    color: #00fff7;
    background: rgba(240, 185, 11, 0.1);
    border-left: 2px solid #00fff7;
}

.nav-item.active .nav-link::before {
    opacity: 1;
}

.nav-item.active .nav-link svg {
    transform: scale(1.1);
}

.nav-link:hover {
    color: #00fff7;
    background: rgba(240, 185, 11, 0.05);
    transform: translateX(4px);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover svg {
    transform: scale(1.1);
}

/* Add a subtle divider between nav items */
.nav-item:not(:last-child)::after {
    content: '';
    display: block;
    height: 1px;
    background: rgba(240, 185, 11, 0.1);
    margin: 0.5rem 1rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .dashboard-nav {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .dashboard-nav {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(240, 185, 11, 0.1);
        padding: 1rem 0;
    }
    
    .nav-header {
        margin-bottom: 1rem;
    }
    
    .nav-menu {
        display: flex;
        gap: 1rem;
        padding: 0 1rem;
        overflow-x: auto;
    }
    
    .nav-item {
        margin-bottom: 0;
    }
    
    .nav-link {
        padding: 0.6rem 1rem;
    }
    
    .nav-item:not(:last-child)::after {
        display: none;
    }
}

.dashboard-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dashboard-header {
    height: 64px;
    border-bottom: 1px solid rgba(240, 185, 11, 0.1);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0a0c0e;
    position: relative;
    overflow: hidden;
}

.dashboard-header::before {
    display: none;
}

.header-left h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #eaecef;
    position: relative;
    z-index: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.level-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(240, 185, 11, 0.2);
    background: rgba(240, 185, 11, 0.1);
}

.level-badge.gold {
    background: linear-gradient(45deg, rgba(240, 185, 11, 0.1), rgba(248, 209, 47, 0.1));
    color: #00fff7;
}

.level-badge svg {
    width: 16px;
    height: 16px;
}

.balance-badges {
    max-width: 1200px;
    margin: 0 auto;
}

.balance-badges h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #eaecef;
    margin-bottom: 1.5rem;
}

.call-card {
    background: #0a0c0e;
    border: 1px solid rgba(240, 185, 11, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.call-card:hover {
    transform: translateY(-2px);
}

.call-card.total {
    border-color: rgba(240, 185, 11, 0.2);
}

.call-card.personal {
    border-color: rgba(14, 203, 129, 0.1);
}

.call-card.trade {
    border-color: rgba(246, 70, 93, 0.1);
}

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

.pair-info {
    display: flex;
    align-items: center;
}

.pair-info h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.call-type {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.call-type.buy {
    background-color: rgba(0, 255, 0, 0.1);
    color: #00ff00;
}

.call-type.sell {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.badge-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.badge-title {
    color: #848e9c;
    font-size: 0.95rem;
    font-weight: 500;
}

.badge-amount {
    color: #eaecef;
    font-size: 1.75rem;
    font-weight: 600;
}

.call-card.total .badge-amount {
    color: #00fff7;
}

.call-card.personal .badge-amount {
    color: #0ecb81;
}

.call-card.trade .badge-amount {
    color: #f6465d;
}

@media (max-width: 1024px) {
    .calls-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .calls-grid {
        grid-template-columns: 1fr;
    }
    
    .call-card {
        padding: 1.25rem;
    }
    
    .badge-amount {
        font-size: 1.5rem;
    }
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    background: #0a0c0e;
    border: 1px solid rgba(240, 185, 11, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;
}

.user-menu:hover {
    background: #0d0f11;
    border-color: rgba(240, 185, 11, 0.2);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(240, 185, 11, 0.2);
}

.user-name {
    color: #eaecef;
    font-size: 0.95rem;
    font-weight: 500;
}

.user-menu svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.user-menu:hover svg {
    transform: translateY(2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dashboard-header {
        padding: 0 1rem;
    }
    
    .header-right {
        gap: 0.5rem;
    }
    
    .user-menu {
        padding: 0.4rem 0.8rem;
    }
    
    .balance-badge,
    .level-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .user-name {
        display: none;
    }
}

.dashboard-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

/* Recent Calls Section */
.recent-calls {
    max-width: 1200px;
    margin: 0 auto;
}

.recent-calls h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #eaecef;
    margin-bottom: 1.5rem;
}

.calls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.call-card {
    background: rgba(42, 45, 53, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.2s;
}

.call-card:hover {
    transform: translateY(-2px);
}

.call-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pair-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pair-icon {
    width: 32px;
    height: 32px;
}

.pair-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #eaecef;
    margin-bottom: 0.2rem;
}

.call-time {
    font-size: 0.85rem;
    color: #848e9c;
}

.call-type {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.call-type.buy {
    background: rgba(14, 203, 129, 0.1);
    color: #0ecb81;
}

.call-type.sell {
    background: rgba(246, 70, 93, 0.1);
    color: #f6465d;
}

.call-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.detail-item .label {
    font-size: 0.85rem;
    color: #848e9c;
}

.detail-item .value {
    font-size: 1rem;
    font-weight: 500;
    color: #eaecef;
}

.detail-item .value.profit {
    color: #0ecb81;
}

.detail-item .value.loss {
    color: #f6465d;
}

.call-actions {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn-accept,
.btn-decline {
    flex: 1;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-accept {
    background: #0ecb81;
    color: #0b0e11;
}

.btn-accept:hover {
    background: #0bb974;
}

.btn-decline {
    background: rgba(246, 70, 93, 0.1);
    color: #f6465d;
}

.btn-decline:hover {
    background: rgba(246, 70, 93, 0.2);
}

.btn-accept:disabled,
.btn-decline:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.call-card.accepted {
    border: 1px solid #0ecb81;
}

.call-card.declined {
    border: 1px solid #f6465d;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .dashboard-nav {
        width: 200px;
    }
    
    .call-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-body {
        flex-direction: column;
    }
    
    .dashboard-nav {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #2a2d35;
        padding: 1rem 0;
    }
    
    .nav-header {
        margin-bottom: 1rem;
    }
    
    .nav-menu {
        display: flex;
        gap: 1rem;
        padding: 0 1rem;
        overflow-x: auto;
    }
    
    .nav-item {
        margin-bottom: 0;
    }
    
    .nav-link {
        padding: 0.6rem 1rem;
    }
    
    .dashboard-header {
        padding: 0 1rem;
    }
    
    .dashboard-content {
        padding: 1rem;
    }
    
    .calls-grid {
        grid-template-columns: 1fr;
    }

    .call-actions {
        flex-direction: column;
    }
}

.alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    background: rgba(42, 45, 53, 0.5);
    border: 1px solid rgba(240, 185, 11, 0.2);
    position: relative;
    overflow: hidden;
}

.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(240, 185, 11, 0.05), rgba(248, 209, 47, 0.05));
    pointer-events: none;
}

.alert.warning {
    background-color: rgba(255, 193, 7, 0.1);
}

.alert.warning svg {
    color: #ffc107;
}

.alert.success {
    background-color: rgba(14, 203, 129, 0.1);
}

.alert.success svg {
    color: #0ecb81;
}

.alert-content {
    flex: 1;
}

.alert-content h3 {
    color: #00fff7;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.alert-content p {
    color: #eaecef;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .alert {
        padding: 1rem;
    }
    
    .alert-content h3 {
        font-size: 1rem;
    }
    
    .alert-content p {
        font-size: 0.9rem;
    }
}

.btn-preview {
    flex: 1;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: rgba(240, 185, 11, 0.1);
    color: #00fff7;
}

.btn-preview:hover {
    background: rgba(240, 185, 11, 0.2);
}

.btn-preview:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.coming-soon {
    max-width: 1200px;
    margin: 3rem auto 0;
}

.coming-soon h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #eaecef;
    margin-bottom: 1.5rem;
}

.signals-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.signal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(42, 45, 53, 0.5);
    border-radius: 12px;
    transition: transform 0.2s;
}

.signal-item:hover {
    transform: translateX(4px);
}

.signal-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.signal-type {
    font-size: 1.1rem;
    font-weight: 600;
    color: #eaecef;
}

.signal-time {
    font-size: 0.9rem;
    color: #848e9c;
    font-family: 'Inter', monospace;
    font-weight: 500;
}

.signal-status {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(240, 185, 11, 0.1);
    color: #00fff7;
}

/* Signal type colors */
.signal-item.free {
    border-left: 4px solid #848e9c;
}

.signal-item.bronze {
    border-left: 4px solid #cd7f32;
}

.signal-item.gold {
    border-left: 4px solid #00fff7;
}

.signal-item.platinum {
    border-left: 4px solid #e5e4e2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coming-soon {
        margin-top: 2rem;
    }
    
    .signal-item {
        padding: 0.8rem 1rem;
    }
    
    .signal-type {
        font-size: 1rem;
    }
    
    .signal-time {
        font-size: 0.85rem;
    }
}

.signal-item.expired {
    opacity: 0.7;
    background: rgba(42, 45, 53, 0.3);
}

.signal-item.expired .signal-status {
    background: rgba(246, 70, 93, 0.1);
    color: #f6465d;
}

.trade-history {
    max-width: 1200px;
    margin: 0 auto;
}

.trade-history h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #eaecef;
    margin-bottom: 1.5rem;
}

.trade-table-container {
    background: #0a0c0e;
    border-radius: 12px;
    border: 1px solid rgba(240, 185, 11, 0.1);
    overflow: hidden;
}

.trade-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.trade-table th {
    background: rgba(240, 185, 11, 0.05);
    color: #848e9c;
    font-weight: 500;
    text-align: left;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(240, 185, 11, 0.1);
}

.trade-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(240, 185, 11, 0.1);
    color: #eaecef;
}

.trade-table tr:last-child td {
    border-bottom: none;
}

.trade-table tr:hover {
    background: rgba(240, 185, 11, 0.02);
}

.trade-type {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.trade-type.buy {
    background: rgba(14, 203, 129, 0.1);
    color: #0ecb81;
}

.trade-type.sell {
    background: rgba(246, 70, 93, 0.1);
    color: #f6465d;
}

.status {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status.accepted {
    background: rgba(14, 203, 129, 0.1);
    color: #0ecb81;
}

.status.declined {
    background: rgba(246, 70, 93, 0.1);
    color: #f6465d;
}

.trade-table .profit {
    color: #0ecb81;
    font-weight: 500;
}

.trade-table .loss {
    color: #f6465d;
    font-weight: 500;
}

.pair-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pair-info span {
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trade-table-container {
        overflow-x: auto;
    }
    
    .trade-table {
        min-width: 800px;
    }
    
    .trade-table th,
    .trade-table td {
        padding: 0.8rem 1rem;
    }
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(240, 185, 11, 0.1);
    background: #0a0c0e;
    color: #eaecef;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(240, 185, 11, 0.1);
    border-color: rgba(240, 185, 11, 0.2);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-number {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(240, 185, 11, 0.1);
    background: #0a0c0e;
    color: #eaecef;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-number:hover:not(.active) {
    background: rgba(240, 185, 11, 0.1);
    border-color: rgba(240, 185, 11, 0.2);
}

.pagination-number.active {
    background: rgba(240, 185, 11, 0.1);
    border-color: rgba(240, 185, 11, 0.2);
    color: #00fff7;
}

.pagination-ellipsis {
    color: #848e9c;
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .pagination-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .pagination-number {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.9rem;
    }
}

.btn-withdraw,
.btn-transfer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(240, 185, 11, 0.1);
    background: #0a0c0e;
    color: #eaecef;
    width: 100%;
}

.btn-withdraw {
    background: rgba(246, 70, 93, 0.1);
    border-color: rgba(246, 70, 93, 0.2);
    color: #f6465d;
}

.btn-withdraw:hover {
    background: rgba(246, 70, 93, 0.2);
}

.btn-transfer {
    background: rgba(240, 185, 11, 0.1);
    border-color: rgba(240, 185, 11, 0.2);
    color: #00fff7;
}

.btn-transfer:hover {
    background: rgba(240, 185, 11, 0.2);
}

.call-actions {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .call-actions {
        flex-direction: column;
    }
}

.btn-deposit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(46, 213, 115, 0.2);
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    width: 100%;
}

.btn-deposit:hover {
    background: rgba(46, 213, 115, 0.2);
}

.btn-deposit svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .btn-deposit {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

.affiliate-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.affiliate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.affiliate-link-card,
.affiliate-safe-card {
    background: #0a0c0e;
    border: 1px solid rgba(240, 185, 11, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.affiliate-link-card h2,
.affiliate-safe-card h2 {
    color: #eaecef;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.affiliate-description {
    color: #8b8d90;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.affiliate-link-box {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.affiliate-input {
    flex: 1;
    background: rgba(240, 185, 11, 0.05);
    border: 1px solid rgba(240, 185, 11, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #eaecef;
}

.btn-copy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 8px;
    color: #00fff7;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-copy:hover {
    background: rgba(240, 185, 11, 0.2);
}

.affiliate-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(240, 185, 11, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    color: #8b8d90;
    font-size: 0.9rem;
}

.stat-value {
    color: #eaecef;
    font-size: 1.25rem;
    font-weight: 600;
}

.safe-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.safe-info {
    margin-top: 1.5rem;
}

.safe-info h3 {
    color: #eaecef;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.safe-amount {
    color: #00fff7;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.safe-description {
    color: #8b8d90;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.safe-progress {
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(240, 185, 11, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress {
    height: 100%;
    background: #00fff7;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-text {
    color: #8b8d90;
    font-size: 0.9rem;
}

.safe-refresh {
    color: #8b8d90;
    font-size: 0.9rem;
    font-style: italic;
}

@media (max-width: 1024px) {
    .affiliate-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .affiliate-section {
        padding: 1rem;
    }
    
    .affiliate-link-box {
        flex-direction: column;
    }
    
    .btn-copy {
        width: 100%;
        justify-content: center;
    }
    
    .affiliate-stats {
        grid-template-columns: 1fr;
    }
}

.btn-claim {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    margin-top: 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(240, 185, 11, 0.2);
    background: rgba(240, 185, 11, 0.1);
    color: #00fff7;
}

.btn-claim:hover:not(:disabled) {
    background: rgba(240, 185, 11, 0.2);
}

.btn-claim:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(240, 185, 11, 0.05);
}

.btn-claim svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .btn-claim {
        padding: 0.625rem;
        font-size: 0.8125rem;
    }
}

.invited-users {
    margin-top: 2rem;
}

.invited-users-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.invited-users-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.invited-users-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #eaecef;
    margin-bottom: 1.5rem;
}

.trade-table-container {
    overflow-x: auto;
}

.trade-table {
    width: 100%;
    border-collapse: collapse;
    color: #eaecef;
}

.trade-table th {
    text-align: left;
    padding: 1rem;
    font-weight: 500;
    color: #8b8d90;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trade-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trade-table tr:last-child td {
    border-bottom: none;
}

.trade-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.pair-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pair-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.status {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.status.accepted {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
}

.status.declined {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.profit {
    color: #00ff00;
}

.loss {
    color: #ff0000;
}

@media (max-width: 768px) {
    .invited-users-card {
        padding: 1rem;
    }

    .trade-table th,
    .trade-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }

    .pair-icon {
        width: 24px;
        height: 24px;
    }
}

/* Membership Section Styles */
.membership-section {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.membership-section h2 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.level-card {
    background: linear-gradient(145deg, var(--bg-secondary), var(--bg-primary));
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.level-card.no-level {
    background: linear-gradient(145deg, #2a2d35, #1e2026);
}

.level-card.bronze {
    background: linear-gradient(145deg, #3d2c1f, #2a1d14);
}

.level-card.gold {
    background: linear-gradient(145deg, #2d2a1f, #1f1d14);
}

.level-card.platinum {
    background: linear-gradient(145deg, #2d2d2d, #1f1f1f);
}

.level-card.active {
    background: linear-gradient(145deg, #2d2a1f, #1f1d14);
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(240, 185, 11, 0.2);
}

.level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ffd700);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.level-card.active::before {
    opacity: 1;
}

.level-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border-radius: 50%;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.level-card:hover .level-icon {
    transform: scale(1.1);
}

.level-card h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.level-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.level-benefits li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.level-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.level-progress {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.level-progress h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.progress-container {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.progress-bar {
    height: 12px;
    background: rgba(240, 185, 11, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #ffd700);
    border-radius: 6px;
    transition: width 0.5s ease;
    position: relative;
}

.progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-info {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.current-amount {
    color: var(--accent-color);
    font-weight: 600;
}

.remaining {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.level-requirements {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.level-requirements h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.level-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.level-requirements li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.95rem;
}

.level-requirements li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Level-specific colors */
.level-card.bronze .level-icon {
    color: #CD7F32;
    box-shadow: 0 4px 12px rgba(205, 127, 50, 0.2);
}

.level-card.gold .level-icon {
    color: #FFD700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.level-card.platinum .level-icon {
    color: #E5E4E2;
    box-shadow: 0 4px 12px rgba(229, 228, 226, 0.2);
}

.level-card.active .level-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(240, 185, 11, 0.3);
}

.level-card.bronze .level-icon {
    color: #CD7F32;
}

.level-card.gold .level-icon {
    color: #FFD700;
}

.level-card.platinum .level-icon {
    color: #E5E4E2;
}

/* Your Level Badge */
.level-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(240, 185, 11, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(240, 185, 11, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(240, 185, 11, 0.5);
    }
    100% {
        box-shadow: 0 4px 12px rgba(240, 185, 11, 0.3);
    }
}

/* Progress Alert */
.progress-alert {
    background: linear-gradient(145deg, rgba(240, 185, 11, 0.1), rgba(240, 185, 11, 0.05));
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.alert-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(240, 185, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.alert-content {
    flex: 1;
}

.alert-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.alert-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Update existing progress styles */
.progress-container {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.progress-bar {
    height: 12px;
    background: rgba(240, 185, 11, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #ffd700);
    border-radius: 6px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.current-amount {
    color: var(--accent-color);
    font-weight: 600;
}

.remaining {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #1a1d21;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #eaecef;
}

.modal-close {
    background: none;
    border: none;
    color: #eaecef;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
}

.modal-body {
    padding: 1.5rem;
}

.modal-body p {
    margin: 0 0 1.5rem 0;
    color: #eaecef;
    font-size: 1.1rem;
}

.trade-details {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row .label {
    color: #8b8d90;
}

.detail-row span:last-child {
    color: #eaecef;
    font-weight: 500;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn-cancel {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #eaecef;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-cancel:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-confirm {
    background-color: #0ecb81;
    border: none;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-confirm:hover {
    background-color: #0bb974;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-footer {
        padding: 1rem;
    }
    
    .btn-cancel,
    .btn-confirm {
        padding: 0.5rem 1rem;
    }
}

/* Affiliate Info Section */
.affiliate-info {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(240, 185, 11, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(240, 185, 11, 0.1);
    width: 100%;
}

.affiliate-info h3 {
    color: #eaecef;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.affiliate-info .info-content {
    max-width: 100%;
}

.affiliate-info .info-content p {
    color: #848e9c;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

@media (max-width: 768px) {
    .affiliate-info {
        padding: 1.5rem;
    }
    
    .affiliate-info h3 {
        font-size: 1.1rem;
    }
    
    .affiliate-info .info-content p {
        font-size: 0.95rem;
    }
}
  