/* ========================================
   NORAVAT MARKET ROI PLATFORM STYLES
   Color Theme: White, Gold (#FFD700), Dark Blue
   ======================================== */

/* Fonts */
.font-orbitron { font-family: 'Orbitron', sans-serif; }
.font-rajdhani { font-family: 'Rajdhani', sans-serif; }

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    color: #ffffff;
}

/* ========================================
   ANIMATED BACKGROUND
   ======================================== */

.crypto-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 15s ease-in-out infinite;
}

.floating-particles::before {
    background: radial-gradient(circle, #3B82F6 0%, transparent 70%);
    top: 20%;
    left: 10%;
}

.floating-particles::after {
    background: radial-gradient(circle, #FFD700 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.1); }
}

/* ========================================
   CRYPTO LOGO
   ======================================== */

.crypto-logo {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)); }
}

/* ========================================
   CONNECT WALLET BUTTON
   ======================================== */

.connect-wallet-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.connect-wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4), 0 0 30px rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

.connect-wallet-btn svg {
    transition: transform 0.3s ease;
}

.connect-wallet-btn:hover svg {
    transform: scale(1.1) rotate(5deg);
}

/* ========================================
   STAT CARDS
   ======================================== */

.stat-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.75rem;
    color: #60A5FA;
    flex-shrink: 0;
}

.stat-icon.gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

.stat-icon.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.5);
    color: #3B82F6;
}

.stat-icon.white {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(148, 163, 184, 0.8);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Orbitron', sans-serif;
}

.stat-value.gold {
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat-value.blue {
    color: #60A5FA;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.stat-value.white {
    color: #FFFFFF;
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #FFFFFF 0%, #60A5FA 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(148, 163, 184, 0.8);
    font-weight: 500;
}

/* ========================================
   INVESTMENT CARDS
   ======================================== */

.investment-card {
    position: relative;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.investment-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.investment-card:hover {
    transform: translateY(-10px);
    border-color: #60A5FA;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
}

.investment-card:hover::before {
    opacity: 1;
}

.investment-card.featured {
    border-color: #FFD700;
    background: rgba(15, 23, 42, 0.95);
}

.investment-card.featured:hover {
    box-shadow: 0 25px 70px rgba(255, 215, 0, 0.4), 0 0 50px rgba(59, 130, 246, 0.3);
}

.featured-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.plan-badge {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 0.5rem;
    color: #60A5FA;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.plan-badge.gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-color: rgba(255, 215, 0, 0.5);
    color: #FFD700;
}

.plan-badge.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.6);
    color: #3B82F6;
}

.popular-tag {
    position: absolute;
    top: 2rem;
    right: -2rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0F172A;
    padding: 0.5rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
}

.plan-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.plan-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 2px solid rgba(59, 130, 246, 0.5);
    border-radius: 1rem;
    color: #60A5FA;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.plan-icon.gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.5);
    color: #FFD700;
}

.plan-icon.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.6);
    color: #3B82F6;
}

.investment-card:hover .plan-icon {
    transform: scale(1.1) rotate(5deg);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Orbitron', sans-serif;
}

.plan-roi {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.roi-percentage {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #60A5FA;
    font-family: 'Orbitron', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
}

.roi-percentage.gold {
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.roi-percentage.blue {
    color: #3B82F6;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.7);
}

.roi-period {
    font-size: 1rem;
    color: rgba(148, 163, 184, 0.8);
    font-weight: 500;
}

.plan-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 0.8);
    font-weight: 500;
}

.detail-value {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
}

.detail-value.gold {
    color: #FFD700;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: rgba(148, 163, 184, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.plan-features li svg {
    color: #10B981;
    flex-shrink: 0;
}

.invest-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 0.75rem;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.invest-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.invest-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.5);
    border-color: #60A5FA;
}

.invest-btn:hover::before {
    opacity: 1;
}

.invest-btn.gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-color: rgba(255, 215, 0, 0.5);
    color: #0F172A;
}

.invest-btn.gold:hover {
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
    border-color: #FFD700;
}

/* ========================================
   ROI CALCULATOR
   ======================================== */

.calculator-container {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
}

.calculator-header {
    text-align: center;
    margin-bottom: 2rem;
}

.calculator-title {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.5rem;
}

.calculator-subtitle {
    font-size: 1rem;
    color: rgba(148, 163, 184, 0.8);
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.9);
}

.input-group input,
.input-group select {
    padding: 1rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.75rem;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #60A5FA;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-group input::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.calculate-btn {
    padding: 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 0.75rem;
    color: #0F172A;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-card {
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.result-card:hover {
    border-color: #60A5FA;
    transform: translateX(5px);
}

.result-label {
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 0.8);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.result-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Orbitron', sans-serif;
}

.result-value.gold {
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.result-value.blue {
    color: #60A5FA;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* ========================================
   INVESTMENTS TABLE
   ======================================== */

.investments-table-container {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
}

.investments-table {
    min-height: 300px;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.empty-state svg {
    color: rgba(148, 163, 184, 0.3);
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.8);
    margin-bottom: 0.5rem;
}

.empty-state span {
    font-size: 0.95rem;
    color: rgba(148, 163, 184, 0.6);
}

/* ========================================
   INVESTMENT MODAL
   ======================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.modal-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    max-width: 500px;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1.5rem;
    backdrop-filter: blur(20px);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-container {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Orbitron', sans-serif;
}

.modal-close {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.5rem;
    color: rgba(148, 163, 184, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #60A5FA;
    color: #FFFFFF;
}

.modal-body {
    padding: 2rem;
}

.modal-plan-info {
    text-align: center;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.modal-plan-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 0.5rem;
    color: #FFD700;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.modal-plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.modal-plan-roi {
    font-size: 1.5rem;
    font-weight: 900;
    color: #FFD700;
    font-family: 'Orbitron', sans-serif;
}

.modal-input-group {
    margin-bottom: 2rem;
}

.modal-input-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.9);
    margin-bottom: 0.75rem;
}

.amount-input-wrapper {
    position: relative;
}

.amount-input-wrapper input {
    width: 100%;
    padding: 1rem 5rem 1rem 1rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.75rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.amount-input-wrapper input:focus {
    outline: none;
    border-color: #60A5FA;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.max-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    border-radius: 0.5rem;
    color: #0F172A;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.max-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.input-info {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.7);
}

.modal-summary {
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.summary-item:not(:last-child) {
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.summary-item span:first-child {
    color: rgba(148, 163, 184, 0.8);
    font-weight: 500;
}

.summary-item span:last-child {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 1.1rem;
}

.summary-item span.gold {
    color: #FFD700;
}

.modal-confirm-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 0.75rem;
    color: #0F172A;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.modal-confirm-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
}

.modal-confirm-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(15, 23, 42, 0.3);
    border-top-color: #0F172A;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .calculator-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-icon {
        width: 3rem;
        height: 3rem;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    .investment-card {
        padding: 1.5rem;
    }

    .roi-percentage {
        font-size: 2.5rem;
    }

    .calculator-container {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .connect-wallet-btn span {
        display: none;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .plan-icon {
        width: 4rem;
        height: 4rem;
    }

    .plan-name {
        font-size: 1.25rem;
    }

    .roi-percentage {
        font-size: 2rem;
    }
}

/* ========================================
   NORAVAT MARKET - ADDITIONAL STYLES
   AI Trading Platform Sections
   ======================================== */

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    padding: 3rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #FFFFFF 0%, #60A5FA 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 2rem;
    color: #FFD700;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-highlight {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-family: 'Orbitron', sans-serif;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(148, 163, 184, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.hero-feature-item {
    padding: 0.75rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.75rem;
    color: #10B981;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works-section {
    padding: 2rem 0;
}

.how-it-works-card {
    position: relative;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    text-align: center;
}

.how-it-works-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    color: #0F172A;
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.step-list {
    list-style: none;
    text-align: left;
}

.step-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: rgba(148, 163, 184, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.step-list li::before {
    content: '✓';
    flex-shrink: 0;
    color: #10B981;
    font-weight: 700;
    font-size: 1.25rem;
}

/* ========================================
   EARNINGS MODEL SECTION
   ======================================== */

.earnings-model-section {
    padding: 2rem 0;
}

.earnings-model-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.8) 100%);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(20px);
    text-align: center;
}

.earnings-feature {
    padding: 2rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1.25rem;
    transition: all 0.3s ease;
}

.earnings-feature:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.earnings-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.earnings-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.earnings-feature p {
    font-size: 0.95rem;
    color: rgba(148, 163, 184, 0.8);
    line-height: 1.6;
}

/* ========================================
   TEAM BUILDING SECTION
   ======================================== */

.team-building-section {
    padding: 2rem 0;
}

.team-level-card {
    position: relative;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.team-level-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-level-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #10B981;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
}

.team-level-card:hover::before {
    opacity: 1;
}

.team-level-card.level-1 {
    border-color: rgba(255, 215, 0, 0.4);
}

.team-level-card.level-1:hover {
    border-color: #FFD700;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
}

.level-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 0.5rem;
    color: #10B981;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.team-level-card.level-1 .level-badge {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.4);
    color: #FFD700;
}

.level-percentage {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: #10B981;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

.team-level-card.level-1 .level-percentage {
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.level-description {
    font-size: 1.05rem;
    color: rgba(148, 163, 184, 0.9);
    font-weight: 500;
}

.team-note {
    text-align: center;
    margin-top: 2rem;
}

.team-note p {
    font-size: 1.25rem;
    color: #FFD700;
    font-weight: 700;
    font-style: italic;
}

/* ========================================
   WHY DIFFERENT SECTION
   ======================================== */

.why-different-section {
    padding: 2rem 0;
}

.why-different-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(20px);
}

.why-feature {
    padding: 1.75rem;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.why-feature:hover {
    transform: translateY(-5px);
    border-color: #60A5FA;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-feature h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.why-feature p {
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 0.8);
}

.why-tagline {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.why-tagline p {
    font-size: 1.5rem;
    color: rgba(148, 163, 184, 0.9);
    font-weight: 600;
}

.why-tagline span {
    color: #FFD700;
    font-weight: 800;
}

/* ========================================
   PACKAGE CARDS
   ======================================== */

.package-card {
    position: relative;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: #60A5FA;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.package-card.featured-package {
    border-color: #FFD700;
    background: rgba(15, 23, 42, 0.95);
}

.package-card.featured-package:hover {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.popular-tag-small {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0F172A;
    padding: 0.25rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.package-amount {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.package-card.featured-package .package-amount {
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.package-label {
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   FUTURE VISION SECTION
   ======================================== */

.future-vision-section {
    padding: 2rem 0;
}

.future-vision-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(20px);
    text-align: center;
}

.vision-intro {
    font-size: 1.125rem;
    color: rgba(148, 163, 184, 0.9);
    margin-bottom: 2rem;
}

.vision-item {
    padding: 2rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1.25rem;
    transition: all 0.3s ease;
}

.vision-item:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.vision-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vision-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.vision-item p {
    font-size: 0.95rem;
    color: rgba(148, 163, 184, 0.8);
    line-height: 1.6;
}

.vision-tagline {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.vision-tagline p {
    font-size: 1.5rem;
    color: rgba(148, 163, 184, 0.9);
    font-weight: 600;
}

.vision-tagline span {
    color: #FFD700;
    font-weight: 800;
}

/* ========================================
   WHO SECTION
   ======================================== */

.who-section {
    padding: 2rem 0;
}

.who-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(20px);
}

.who-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.who-item:hover {
    transform: translateX(10px);
    border-color: #10B981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.who-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    color: #FFFFFF;
    font-weight: 900;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.who-item p {
    font-size: 1.05rem;
    color: rgba(148, 163, 184, 0.9);
    font-weight: 600;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 2rem 0;
}

.cta-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(20px);
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: #FFD700;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cta-label {
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 0.7);
    font-weight: 500;
}

.cta-value {
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: 700;
}

.cta-button {
    width: 100%;
    max-width: 500px;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 1rem;
    color: #0F172A;
    font-size: 1.25rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    margin: 0 auto;
    display: block;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.6);
}

.cta-note {
    font-size: 1.125rem;
    color: rgba(148, 163, 184, 0.9);
    font-weight: 600;
    font-style: italic;
    margin-top: 2rem;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-highlight {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-highlight {
        font-size: 1.5rem;
    }

    .step-number {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.75rem;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .level-percentage {
        font-size: 3rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-button {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-highlight {
        font-size: 1.25rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-feature-item {
        width: 100%;
    }

    .earnings-model-card,
    .why-different-card,
    .future-vision-card,
    .who-card,
    .cta-card {
        padding: 2rem 1.5rem;
    }

    .package-amount {
        font-size: 1.5rem;
    }

    .level-percentage {
        font-size: 2.5rem;
    }

    .cta-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
/* ========================================
   NAVIGATION LINKS & MOBILE MENU
   ======================================== */

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    color: rgba(148, 163, 184, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    color: #FFFFFF;
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-color: rgba(255, 215, 0, 0.5);
    color: #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.nav-link.active svg {
    color: #FFD700;
}

.nav-link svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-link:hover svg {
    transform: scale(1.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.5rem;
    color: rgba(148, 163, 184, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #60A5FA;
    color: #FFFFFF;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    margin-top: 1rem;
}

.mobile-menu.show {
    display: flex;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.75rem;
    color: rgba(148, 163, 184, 0.9);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #60A5FA;
    color: #FFFFFF;
    transform: translateX(5px);
}

.mobile-menu-link.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-color: rgba(255, 215, 0, 0.5);
    color: #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.mobile-menu-link.active svg {
    color: #FFD700;
}

.mobile-menu-link svg {
    flex-shrink: 0;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .connect-wallet-btn {
        margin-right: 1rem;
    }
}

@media (max-width: 768px) {
    .connect-wallet-btn span {
        display: none;
    }
    
    .connect-wallet-btn {
        padding: 0.75rem;
        margin-right: 0.5rem;
    }
}

@media (max-width: 640px) {
    nav .flex {
        position: relative;
    }
    
    .mobile-menu-link {
        font-size: 0.95rem;
        padding: 0.875rem 1rem;
    }
}