/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light Theme Colors */
    --primary: #F59E0B;
    --primary-hover: #D97706;
    --success: #10B981;
    --text-main: #1F2937;
    --text-light: #4B5563;
    --bg-main: #F8FAFF;
    --bg-card: #FFFFFF;
    --border: #E5E7EB;
    --input-bg: #F3F4F6;
    
    /* Animation Variables */
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    /* Dark Theme Colors */
    --text-main: #E5E7EB;
    --text-light: #9CA3AF;
    --bg-main: #0A0A0A;
    --bg-card: #121212;
    --border: #2A2A2A;
    --input-bg: #1A1A1A;
    --shadow: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-main);
    transition: var(--transition);
    direction: ltr;
    text-align: left;
    unicode-bidi: plaintext;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

[data-theme="dark"] .header {
    background: rgba(10, 10, 10, 0.9);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
/* Hero Section */
.new-hero {
    position: relative;
    padding: 12rem 0 8rem;
    margin: 0;
    text-align: center;
    color: white;
    background: radial-gradient(
        circle at 70% 50%,
        #F59E0B 0%,    
        #B45309 25%,    
        #EA580C 50%,   
        #7E22CE 75%,    
        #1E1B4B 100%  
    );
    background-blend-mode: multiply;
    background-size: 150% 150%;
    background-position: center;
    overflow: hidden;
    min-height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.new-highlight-text {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    font-weight: 700;
    display: inline-block;
    position: relative;
}

.new-hero-buttons .btn {
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.new-hero .new-hero-dashboard {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Dashboard Card */
.new-dashboard-card {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.new-crypto-ticker-container {
    padding: 15px;
}

.new-crypto-ticker-header {
    text-align: center;
    width: 50%; 
    margin: 0 auto 15px auto;
}

.new-crypto-ticker-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.new-crypto-item {
    width: 48%; /* Default to 48% width for laptop/desktop */
    display: flex;
    margin-bottom: 15px;
    flex-direction: column;
    align-items: center;
}

.new-crypto-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.new-crypto-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.new-crypto-names {
    text-align: left;
    flex: 1;
}

.new-crypto-details {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.new-crypto-price, .new-crypto-change {
    font-size: 0.9em;
}

/* Floating Icons */
.new-floating-icon {
    position: absolute;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px var(--shadow);
}

.new-floating-icon.shield {
    background: var(--success);
    top: -1rem;
    left: -1rem;
}

.new-floating-icon.zap {
    background: var(--primary);
    bottom: -1rem;
    right: -1rem;
}

/* Responsive styles for different screen sizes */
@media (max-width: 768px) {
    .new-hero-content {
        text-align: center;
    }

    .new-crypto-item {
        width: 48%; /* 2 items per row for smaller tablets */
    }
}

@media (max-width: 480px) {
    .new-crypto-item {
        width: 100%; /* 1 item per row for small screens */
    }

    .new-crypto-icon {
        width: 20px;
        height: 20px;
    }

    .new-crypto-name, .new-crypto-symbol {
        font-size: 0.8em;
    }

    .new-crypto-price {
        font-size: 0.85em;
    }

    .new-crypto-change {
        font-size: 0.75em;
    }
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-main);
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600; 
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.theme-toggle {
    background: none;
    border: none;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: rgba(37, 99, 235, 0.1);
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

.nav-mobile {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.nav-mobile.active {
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Button Styles */
.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-ghost {
    background: transparent;
    color: var(--text-main);
}

.btn-ghost:hover {
    background: rgba(37, 99, 235, 0.1);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-plan {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 12rem 0 8rem;
    margin: 0;
    text-align: center;
    color: white;
    background: radial-gradient(
        circle at 70% 50%,
        #F59E0B 0%,    
        #B45309 25%,    
        #EA580C 50%,   
        #7E22CE 75%,    
        #1E1B4B 100%  
    );
    background-blend-mode: multiply;
    background-size: 150% 150%;
    background-position: center;
    overflow: hidden;
    min-height: 120vh;
    padding: 10rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}


[data-theme="light"] .hero {
    background: radial-gradient(
        circle at 70% 50%,
        #F59E0B 0%,     
        #B45309 25%,    
        #EA580C 50%,   
        #7E22CE 75%,   
        #1E1B4B 100%    
    );
    background-blend-mode: normal;
    background-size: 150% 150%;
    background-position: center;
    position: relative;
}


[data-theme="light"] .hero::before {
    content: none;
    background: none;
}


.hero > * {
    position: relative;
    z-index: 2;
}


.highlight-text {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    font-weight: 700;
    display: inline-block;
    position: relative;
}


.hero h1,
.hero h2,
.hero h3,
.hero p,
.hero .hero-text,
.hero .hero-badge {
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}


.hero .btn {
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

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


.hero-badge {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}


.hero-header .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-header .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), #3B82F6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-main);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Dashboard Card */
.hero-dashboard {
    position: relative;
}

[data-theme="light"] .dashboard-card {
    background: rgba(255, 255, 255, 0.8); 
    border: 1px solid rgba(0, 0, 0, 0.1); 
}

[data-theme="dark"] .dashboard-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px var(--shadow);
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
    max-width: 100%;
    overflow: hidden;
}


.crypto-ticker-container {
    width: 100%;
    position: relative;
}

.crypto-ticker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.crypto-ticker-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.ticker-controls {
    display: flex;
    gap: 0.5rem;
}

.ticker-prev,
.ticker-next {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
    transition: all 0.2s ease;
}

.ticker-prev:hover,
.ticker-next:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.crypto-ticker-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.crypto-ticker {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.3s ease;
    padding: 0.5rem 0;
    width: 100%;
}

.crypto-item {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.crypto-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    min-width: 150px;
}

.crypto-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    color: white;
}

.crypto-name {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
}

.crypto-symbol {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.crypto-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    min-width: 100px;
    text-align: right;
}

.crypto-change {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    min-width: 80px;
}

.change-up {
    color: #10B981;
}

.change-down {
    color: #EF4444;
}

.crypto-market-cap {
    font-size: 0.8rem;
    color: var(--text-light);
    min-width: 120px;
    text-align: right;
}

.crypto-ticker-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-light);
}

.refresh-btn {
    background: var(--bg-card);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.refresh-btn:hover {
    background: var(--primary);
    color: white;
}

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

.refresh-btn .refresh-icon {
    transition: transform 0.3s ease;
}

.refresh-btn:not(:disabled):hover .refresh-icon {
    transform: rotate(180deg);
}

/* تعديلات الوضع الليلي */
[data-theme="dark"] .crypto-item {
    background: rgba(30, 30, 30, 0.7);
    border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .ticker-prev,
[data-theme="dark"] .ticker-next {
    background: rgba(30, 30, 30, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .refresh-btn {
    background: rgba(30, 30, 30, 0.7);
}


.loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    width: 100%;
    text-align: center;
    color: var(--text-light);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 1rem;
}

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

.loading-indicator p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}


.crypto-ticker {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
    transform: translateZ(0);
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading .refresh-icon {
    animation: spin 1s linear infinite;
}

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

.dashboard-header h3 {
    font-weight: 600;
    color: var(--text-main);
}

.profit-indicator {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--success);
    font-weight: 500;
}

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

.crypto-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-main);
    border-radius: 0.5rem;
}

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

.crypto-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.75rem;
}

.crypto-icon.bitcoin { background: #F59E0B; }
.crypto-icon.ethereum { background: #3B82F6; }
.crypto-icon.usdt { background: #10B981; }

.crypto-name {
    font-weight: 500;
    color: var(--text-main);
}

.crypto-symbol {
    font-size: 0.875rem;
    color: var(--text-light);
}

.crypto-value {
    text-align: left;
}

.price {
    font-weight: 600;
    color: var(--text-main);
}

.change {
    font-size: 0.875rem;
}

.change.positive { color: var(--success); }
.change.neutral { color: var(--text-light); }

.total-balance {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.balance-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-main);
}

.floating-icon {
    position: absolute;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px var(--shadow);
}

.floating-icon.shield {
    background: var(--success);
    top: -1rem;
    left: -1rem;
}

.floating-icon.zap {
    background: var(--primary);
    bottom: -1rem;
    right: -1rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 40rem;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-main);
}

.features .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

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

.features .section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

/* ===== Feature Cards ===== */
.feature-card {
    /* Layout */
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    /* Box Model */
    padding: 2.5rem 2rem;
    margin: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    
    /* Typography */
    text-align: center;
    
    /* Visual */
    background: var(--bg-card);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    
    /* Animation */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Top Accent Bar */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 4px;
    background: var(--primary);
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 2;
}

/* Hover States */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(245, 158, 11, 0.3);
}

.feature-card:hover::before {
    left: 0;
    right: auto;
    width: 100%;
    height: 4px;
    opacity: 1;
}

/* Icon Styles */
.feature-icon {
    display: inline-block;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Title Styles */
.feature-card h3 {
    position: relative;
    display: inline-block;
    margin: 0 0 1.2rem;
    padding-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

/* Title Underline */
.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover h3::after {
    width: 70px;
}

/* Description Text */
.feature-card p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: var(--text-main);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features .section-header h2 {
        font-size: 2rem;
    }
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.trust-item {
    text-align: center;
}

.trust-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.trust-label {
    color: var(--text-light);
}

/* Plans Section */
.plans {
    padding: 5rem 0;
    background: var(--bg-main);
}

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

.plan-card {
    background: var(--bg-card);
    border-radius: 1rem;
    border: 2px solid var(--border);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 40px var(--shadow);
}

.plan-card.popular {
    border-color: var(--primary);
    box-shadow: 0 20px 40px var(--shadow);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    right: 50%;
    transform: translateX(50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.plan-return {
    background: var(--bg-main);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    margin-bottom: 2rem;
}

.return-rate {
    font-size: 2rem;
    font-weight: bold;
    color: var(--success);
    margin-bottom: 0.5rem;
}

.return-period {
    color: var(--text-light);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.plan-features li::before {
    content: '✓';
    background: var(--success);
    color: white;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-right: 0.75rem;
    margin-left: 0;
    flex-shrink: 0;
}

.custom-plan {
    background: var(--bg-card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    max-width: 32rem;
    margin: 0 auto;
}

.custom-plan h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.custom-plan p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Testimonial Slider */
.testimonial-slider {
    margin: 0 -25px;
    padding: 20px 0 40px;
}

.testimonial-slider .slick-slide {
    padding: 0 12px;
    box-sizing: border-box;
    margin: 0 15px;
}

.testimonial-slider .slick-dots {
    bottom: -40px;
    position: relative;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.testimonial-slider .slick-dots li {
    margin: 0 4px;
    padding: 0;
    width: auto;
    height: auto;
}

.testimonial-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #e0e0e0;
    text-indent: -9999px;
    transition: all 0.3s ease;
}

.testimonial-slider .slick-dots li.slick-active button {
    background-color: #ff6b00;
    width: 30px;
    border-radius: 5px;
}

.testimonial-slider .slick-dots li button:before {
    display: none;
}

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-slider .slick-prev:hover,
.testimonial-slider .slick-next:hover {
    background: #ff6b00;
}

.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
    color: #ff6b00;
    font-size: 20px;
    opacity: 1;
}

.testimonial-slider .slick-prev:hover:before,
.testimonial-slider .slick-next:hover:before {
    color: #fff;
}

.testimonial-slider .slick-prev {
    left: -50px;
}

.testimonial-slider .slick-next {
    right: -50px;
}

@media (max-width: 1199px) {
    .testimonial-slider .slick-prev {
        left: -20px;
    }
    
    .testimonial-slider .slick-next {
        right: -20px;
    }
}

/* Crypto Ticker */
.crypto-ticker {
    --ticker-text: #E5E7EB;
    --ticker-up: #10B981;
    --ticker-down: #EF4444;
    
    padding: 0.75rem 0;
    overflow: hidden;
    position: relative;
    z-index: 50;
    font-family: 'Roboto Mono', monospace, 'Cairo', sans-serif;
    transition: all 0.3s ease;
}

[data-theme="light"] .crypto-ticker {
    --ticker-bg: rgba(255, 255, 255, 0.8);
    --ticker-text: #1F2937;
}

.ticker-container {
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding: 0 1rem;
}

.ticker-track {
    display: inline-flex;
    white-space: nowrap;
    animation: ticker-scroll 80s linear infinite;
    padding: 0.25rem 0;
    will-change: transform;
}

.crypto-ticker .crypto-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    margin: 0 0 10px 0;
    border-radius: 12px;
    background: rgba(26, 32, 44, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.crypto-ticker .crypto-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.crypto-ticker .crypto-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.crypto-ticker .crypto-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.crypto-ticker .crypto-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.crypto-ticker .crypto-item:hover .crypto-icon {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
}

.crypto-ticker .crypto-item:hover .crypto-icon img {
    transform: scale(1.1);
}

.crypto-ticker .crypto-names {
    display: flex;
    flex-direction: column;
}

.crypto-ticker .crypto-name {
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.crypto-ticker .crypto-symbol {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.crypto-ticker .crypto-details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.crypto-ticker .crypto-price {
    font-weight: 600;
    min-width: 120px;
    text-align: right;
    font-size: 15px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.crypto-ticker .price-up {
    color: #10b981; /* Green for price increase */
}

.crypto-ticker .price-down {
    color: #ef4444; /* Red for price decrease */
}

.crypto-ticker .crypto-change {
    font-weight: 600;
    min-width: 90px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    letter-spacing: 0.3px;
    font-size: 13px;
}

.crypto-ticker .change-up {
    color: #10b981;
    background-color: rgba(16, 185, 129, 0.1);
}

.crypto-ticker .change-down {
    color: #ef4444;
    background-color: rgba(239, 68, 68, 0.1);
}

.ticker-item {
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    color: var(--ticker-text);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-item:last-child {
    border-right: none;
}

.ticker-symbol {
    color: var(--ticker-text, #FFFFFF); 
    margin-right: 0.5rem;
    font-weight: 600;
    min-width: 75px;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.ticker-price {
    margin: 0 0.5rem;
    color: var(--ticker-text);
    min-width: 90px;
    text-align: right;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    transition: color 0.3s ease;
}

.ticker-price.price-up {
    color: var(--ticker-up, #10B981);
}

.ticker-price.price-down {
    color: var(--ticker-down, #EF4444);
}

.ticker-change {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 0.8rem;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    min-width: 75px;
    transition: all 0.2s ease;
}

.ticker-change.up {
    background: rgba(16, 185, 129, 0.1);
    color: var(--ticker-up);
}

.ticker-change.down {
    background: rgba(239, 68, 68, 0.1);
    color: var(--ticker-down);
}

.ticker-change i {
    margin-left: 0.25rem;
    font-size: 0.7em;
    transition: transform 0.2s ease;
}

/* Hover effects */
.ticker-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.ticker-item:hover .ticker-change {
    transform: translateX(2px);
}

/* Pause on hover */
.crypto-ticker:hover .ticker-track {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .ticker-item {
        padding: 0 1rem;
    }
    
    .ticker-symbol {
        min-width: 65px;
    }
    
    .ticker-price {
        min-width: 75px;
    }
    
    .ticker-change {
        min-width: 65px;
    }
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Loading state */
.ticker-loading .ticker-track {
    animation: none;
}

.ticker-loading .ticker-item {
    opacity: 0.7;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.4; }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--bg-main);
}

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

.testimonial-card {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
}

.testimonial-header .avatar {
    font-size: 2.2rem;
    margin: 0.5rem 0 0.5rem 0;
    line-height: 1;
    display: inline-block;
    transform: translateY(5px);
}

.testimonial-info h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.85rem;
    opacity: 0.8;
}

.rating {
    color: #F59E0B;
    font-size: 1.25rem;
    margin: 0.5rem 0;
    text-align: center;
}

blockquote {
    font-style: italic;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0 0 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary);
}

.investment-summary {
    background: rgba(0, 0, 0, 0.02);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
}

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

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

.summary-row span:last-child {
    font-weight: 600;
    color: var(--text-main);
}

.profit {
    color: #10B981 !important;
}

.success-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary), #3B82F6);
    border-radius: 1rem;
    color: white;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.success-cta h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.success-cta p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .success-cta {
        margin-top: 2rem;
        padding: 1.5rem;
    }
}

.investment-summary {
    background: var(--bg-card);
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid var(--border);
}

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

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

.summary-row span:first-child {
    color: var(--text-light);
    font-size: 0.875rem;
}

.summary-row span:last-child {
    font-weight: 600;
    color: var(--text-main);
}

.profit {
    color: var(--success) !important;
}

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

.cta-buttons .btn {
    padding: 0.75rem 2rem;
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* Payment Methods Section */
.payments {
    padding: 5rem 0;
    background: var(--section-bg, #F8FAFF);
    text-align: center;
    transition: var(--transition);
}

[data-theme="dark"] .payments {
    --section-bg: #0A0A0A;
}

[data-theme="light"] .payments {
    --section-bg: #F8FAFF;
}

.payments .section-header {
    margin-bottom: 3rem;
}

.payments .section-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

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

.payments .section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.payment-method {
    background: var(--bg-main);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    width: 150px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.payment-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    font-weight: bold;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.payment-method:hover .payment-icon {
    transform: scale(1.1) translateY(-3px);
}

.payment-icon.bitcoin { 
    background: #F59E0B;
    background: linear-gradient(135deg, #F59E0B, #D97706);
}
.payment-icon.ethereum { 
    background: #3B82F6;
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}
.payment-icon.usdt { 
    background: var(--success);
    background: linear-gradient(135deg, #10B981, #059669);
}
.payment-icon.binance { 
    background: #F59E0B;
    background: linear-gradient(135deg, #F59E0B, #B45309);
}
.payment-icon.trust { 
    background: #3B82F6;
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
}
.payment-icon.paypal { 
    background: #0EA5E9;
    background: linear-gradient(135deg, #0EA5E9, #0369A1);
}

.payment-method h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.payment-info {
    background: var(--bg-main);
    border-radius: 10px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.payment-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.payment-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.payment-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.payment-stat {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
}

.payment-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--border);
}

.payment-stat .stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.payment-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .payment-method {
        width: 100%;
        padding: 1.5rem 1rem;
    }
    
    .payment-info {
        padding: 1.5rem;
    }
    
    .payment-stat {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .payment-stat:not(:last-child)::after {
        display: none;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact .section-header h2 {
    color: #F59E0B;
}

[data-theme="light"] .contact {
    --section-bg: #F8FAFF;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
}

.contact-form-container {
    background: var(--bg-main);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

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

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

.form-group label {
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 0.75rem;
    color: var(--text-main);
    transition: var(--transition);
    text-align: left;
    direction: ltr;
    unicode-bidi: plaintext;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-details {
    background: var(--bg-main);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.contact-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-icon.email { background: var(--primary); }
.contact-icon.phone { background: var(--success); }
.contact-icon.address { background: #F59E0B; }

.contact-item h4 {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.support-info {
    background: linear-gradient(135deg, var(--primary), #3B82F6);
    padding: 2rem;
    border-radius: 1rem;
    color: white;
}

.support-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.support-info p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.online-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.status-indicator {
    width: 0.75rem;
    height: 0.75rem;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.business-hours {
    background: var(--bg-main);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.business-hours h4 {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--bg-main);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: none !important;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.about-img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1) !important; 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
    transition: all 0.3s ease;
}

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

.stat-top-left {
    top: 1rem;
    left: 1rem;
}

.stat-bottom-right {
    bottom: 1rem;
    right: 1rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-title {
    font-size: 0.875rem;
    color: var(--text-light);
}

.about-text {
    padding: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .stat-card {
        position: static;
        display: inline-block;
        margin: 0.5rem;
    }
}

/* Footer */
.footer {
    background: var(--footer-bg, #0A0A0A);
    color: var(--footer-text, #E5E7EB);
    padding: 5rem 0 0;
    position: relative;
    transition: var(--transition);
}

[data-theme="dark"] .footer {
    --footer-bg: #0A0A0A;
    --footer-text: #E5E7EB;
}

[data-theme="light"] .footer {
    --footer-bg: #F8FAFF;
    --footer-text: #1F2937;
}

.footer {
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F59E0B, #D97706);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-info {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.footer-logo .logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #F59E0B, #D97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-info p {
    color: #9CA3AF;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-link {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link i {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.contact-link h4 {
    color: #E5E7EB;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-link p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-link:hover {
    transform: translateX(5px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.link-group h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.link-group h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #F59E0B, #D97706);
    border-radius: 3px;
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group li {
    margin-bottom: 0.85rem;
}

.link-group a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.link-group a::before {
    content: '→';
    position: absolute;
    right: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #F59E0B;
}

.link-group a:hover {
    color: white;
    padding-right: 20px;
}

.link-group a:hover::before {
    opacity: 1;
    right: 0;
}

.footer-bottom {
    border-top: 1px solid #2D3748;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    color: #9CA3AF;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2D3748;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link:hover {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2rem;
    }
    
    .footer-info {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        margin-top: 1rem;
        justify-content: center;
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 5rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 20px var(--shadow);
    transform: translateX(100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1001;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-dashboard {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-info {
        grid-column: span 2;
    }
    
    .footer-links {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-desktop,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .features-grid,
    .plans-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-indicators,
    .payment-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content,
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators,
    .payment-stats {
        grid-template-columns: 1fr;
    }
    
    .plan-card.popular {
        transform: none;
    }
}
.new-dashboard-card {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.new-crypto-ticker-container {
    padding: 15px;
}

.new-crypto-ticker-header {
    text-align: center;
    width: 50%; /* يتناسب مع اللابتوب */
    margin: 0 auto 15px auto;
}

@media (max-width: 768px) {
    .new-crypto-ticker-header {
        width: 100%; /* عرض كامل على الجوال */
        text-align: center; /* الحفاظ على محاذاة النص في المنتصف */
        font-size: 1.2em; /* تصغير الحجم إذا لزم الأمر */
    }
}

.new-crypto-ticker-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.new-crypto-item {
    width: 48%; /* Default to 48% width for laptop/desktop */
    display: flex;
    margin-bottom: 15px;
    flex-direction: column;
    align-items: center;
}

.new-crypto-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.new-crypto-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.new-crypto-names {
    text-align: left;
    flex: 1;
}

.new-crypto-details {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.new-crypto-price, .new-crypto-change {
    font-size: 0.9em;
}

@media (max-width: 1024px) {
    .new-crypto-item {
        width: 48%; /* 2 items per row for medium screens like tablets */
    }
}

@media (max-width: 768px) {
    .new-crypto-item {
        width: 48%; /* 2 items per row for smaller tablets and large mobile devices */
    }
}

@media (max-width: 480px) {
    .new-crypto-item {
        width: 100%; /* 1 item per row for small screens */
    }

    .new-crypto-icon {
        width: 20px;
        height: 20px;
    }

    .new-crypto-name, .new-crypto-symbol {
        font-size: 0.8em;
    }

    .new-crypto-price {
        font-size: 0.85em;
    }

    .new-crypto-change {
        font-size: 0.75em;
    }
}

