/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0a0f29;
    color: #ffffff;
    line-height: 1.6;
}

/* Quick Actions */
.quick-actions {
    position: fixed;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 100;
}

.action-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-btn:hover {
    background: linear-gradient(45deg, #00ffea, #7000ff);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0f29 0%, #1a2342 100%);
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ffea, #7000ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: #b8b8b8;
}

/* Plans Section */
.plans {
    padding: 4rem 2rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: #00ffea;
}

.plan-card.featured {
    background: linear-gradient(135deg, rgba(0, 255, 234, 0.1), rgba(112, 0, 255, 0.1));
    border-color: #00ffea;
    transform: scale(1.05);
}

.plan-card.premium {
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.1), rgba(0, 255, 234, 0.1));
    border-color: #7000ff;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.plan-badge {
    position: absolute;
    top: -1rem;
    right: 0;
    background: linear-gradient(45deg, #00ffea, #7000ff);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.plan-header h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #00ffea, #7000ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.duration {
    color: #b8b8b8;
    font-size: 0.9rem;
}

.plan-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail-item i {
    color: #00ffea;
    font-size: 1.2rem;
}

.invest-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 1rem;
    border-radius: 50px;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.invest-btn:hover {
    background: linear-gradient(45deg, #00ffea, #7000ff);
}

.invest-btn.featured,
.invest-btn.premium {
    background: linear-gradient(45deg, #00ffea, #7000ff);
}

/* Calculator Section */
.calculator {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0f29 0%, #1a2342 100%);
}

.calculator h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00ffea, #7000ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-form {
    margin-bottom: 2rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #b8b8b8;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
}

.calculate-btn {
    width: 100%;
    background: linear-gradient(45deg, #00ffea, #7000ff);
    border: none;
    padding: 1rem;
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 234, 0.2);
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.result-card h4 {
    color: #b8b8b8;
    margin-bottom: 0.5rem;
}

.result-card span {
    font-size: 1.5rem;
    color: #00ffea;
    font-weight: 600;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .quick-actions {
        top: 1rem;
        right: 1rem;
    }

    .action-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .calculator-results {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }


    .plan-card {
        padding: 1.5rem;
        max-width: 100% !important;
        margin: 0 auto;
    }

    .calculator-container {
        padding: 1.5rem;
    }
}


/* ANOTHER SECTION */
/* Investment Statistics Section Styles */
.stats-showcase {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0f29 0%, #1a2342 100%);
    position: relative;
    overflow: hidden;
}

.stats-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(112, 0, 255, 0.1) 0%, transparent 50%);
    animation: gradient-shift 8s ease-in-out infinite;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.stats-header h2 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #00ffea, #7000ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Live Statistics Card */
.stats-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    border-color: #00ffea;
}

.stats-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00ffea;
    font-size: 0.9rem;
}

.pulse {
    width: 10px;
    height: 10px;
    background: #00ffea;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.stats-numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #00ffea;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b8b8b8;
    font-size: 0.9rem;
}

/* Achievement Grid */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(0, 255, 234, 0.1), rgba(112, 0, 255, 0.1));
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(0, 255, 234, 0.2), rgba(112, 0, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.achievement-icon i {
    font-size: 1.5rem;
    color: #00ffea;
}

/* Timeline Card */
.timeline-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    grid-column: span 2;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #00ffea, #7000ff);
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -5px;
    top: 0;
    width: 12px;
    height: 12px;
    background: #00ffea;
    border-radius: 50%;
    border: 2px solid #0a0f29;
}

.timeline-content h4 {
    color: #00ffea;
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes gradient-shift {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .timeline-card {
        grid-column: span 1;
    }
}

@media screen and (max-width: 768px) {
    .achievement-grid {
        grid-template-columns: 1fr;
    }

    .stats-numbers {
        grid-template-columns: 1fr;
    }
}



/* ANOTHER SECTION */
/* Advanced Features Section */
.advanced-features {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0f29 0%, #1a2342 100%);
    position: relative;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #00ffea, #7000ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Security Panel */
.security-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    grid-column: span 2;
}

.security-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.security-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, rgba(0, 255, 234, 0.2), rgba(112, 0, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-icon i {
    font-size: 1.5rem;
    color: #00ffea;
}

.security-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00ffea;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ffea;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.security-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(0, 255, 234, 0.1), rgba(112, 0, 255, 0.1));
}

/* Trading Features */
.trading-features {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
}

.feature-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn.active {
    background: linear-gradient(45deg, #00ffea, #7000ff);
}

.feature-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    color: #00ffea;
    display: block;
    margin-bottom: 0.5rem;
}

/* Analytics Panel */
.analytics-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.time-filter {
    display: flex;
    gap: 0.5rem;
}

.time-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-btn.active {
    background: linear-gradient(45deg, #00ffea, #7000ff);
}

.analytics-grid {
    display: grid;
    gap: 1.5rem;
}

.analytics-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 15px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.trend {
    font-size: 0.9rem;
}

.trend.up {
    color: #00ffea;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 0.5rem;
}

.progress {
    height: 100%;
    background: linear-gradient(45deg, #00ffea, #7000ff);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-value {
    color: #00ffea;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .features-container {
        grid-template-columns: 1fr;
    }

    .security-panel {
        grid-column: span 1;
    }

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .security-grid {
        grid-template-columns: 1fr;
    }

    .feature-stats {
        grid-template-columns: 1fr;
    }

    .feature-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
    }
}