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

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

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

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.telegram {
    background: #0088cc;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Page System */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 100px;
}

.page.active {
    display: block;
}

/* Back Navigation */
.back-nav {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-back {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-back:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
    color: #8b5cf6;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(16, 185, 129, 0.1));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8b5cf6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
}

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

/* Buttons */
.btn-primary,
.btn-outline {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-outline {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
}

.btn-outline:hover {
    background: #8b5cf6;
    color: white;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #ccc;
}

/* Features Grid */
.features {
    padding: 4rem 0;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.feature-stats {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    color: #8b5cf6;
    font-weight: 600;
}

.feature-btn {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.feature-btn:hover {
    color: #a855f7;
}

/* Portal Section */
.portal-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.portal-feature {
    text-align: center;
    padding: 1.5rem;
}

.portal-feature i {
    font-size: 3rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.portal-feature h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.portal-feature p {
    color: #ccc;
}

/* AI Hero Section */
.ai-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(16, 185, 129, 0.1));
}

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

.ai-hero-text h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8b5cf6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-hero-subtitle {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
}

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

.ai-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5cf6;
}

.stat-label {
    font-size: 0.875rem;
    color: #ccc;
}

.ai-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-brain {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.ai-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #8b5cf6;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Signals Hero Section */
.signals-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(16, 185, 129, 0.1));
}

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

.signals-hero-text h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8b5cf6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signals-hero-subtitle {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
}

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

.signals-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.signals-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.signals-chart {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.signals-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #8b5cf6;
    animation: pulse 2s infinite;
}

/* Why Signals Section */
.why-signals {
    padding: 4rem 0;
}

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

.signals-benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.signals-benefit-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.signals-benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.signals-benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.signals-benefit-card p {
    color: #ccc;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: #ccc;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

/* Plans Section */
.plans-selection {
    padding: 4rem 0;
}

.plans-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.plans-main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plans-main-subtitle {
    font-size: 1.25rem;
    color: #ccc;
}

.plans-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.plan-option-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.plan-option-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.plan-option-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.plan-option-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.plan-option-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.plan-option-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-option-features span {
    color: #ccc;
    font-size: 0.9rem;
}

.plan-option-btn {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.plan-option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Plan Category Section */
.plan-category-section {
    padding: 4rem 0;
}

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

.category-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.category-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
}

.plan-category-card.featured {
    border-color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.plan-category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-category-card p {
    color: #ccc;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.plan-highlight {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plan-note {
    color: #ccc;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #ccc;
}

.feature-item i {
    color: #10b981;
    font-size: 0.875rem;
}

.plan-btn {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-block;
    width: 100%;
    text-align: center;
    transition: all 0.3s;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Terminal Styles */
.live-terminal-section {
    padding: 4rem 0;
}

.terminal-container {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
}

.terminal-header {
    background: #2d2d2d;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #333;
}

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

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red {
    background: #ff5f56;
}

.terminal-dot.yellow {
    background: #ffbd2e;
}

.terminal-dot.green {
    background: #27ca3f;
}

.terminal-title {
    color: #ccc;
    font-weight: 600;
    font-size: 0.9rem;
}

.terminal-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #27ca3f;
    animation: pulse 2s infinite;
}

.status-indicator.online {
    background: #27ca3f;
}

.status-indicator.offline {
    background: #ff5f56;
}

.status-text {
    color: #27ca3f;
    font-size: 0.875rem;
    font-weight: 600;
}

.terminal-body {
    background: #0d1117;
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    min-height: 400px;
}

.terminal-logo {
    margin-bottom: 1rem;
}

.ascii-logo {
    color: #8b5cf6;
    font-size: 0.7rem;
    line-height: 1;
    margin: 0;
}

.terminal-content {
    margin-bottom: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.terminal-line {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.terminal-line.welcome {
    color: #27ca3f;
}

.terminal-line.success {
    color: #27ca3f;
}

.terminal-line.info {
    color: #58a6ff;
}

.terminal-line.warning {
    color: #f1c40f;
}

.terminal-line.trade {
    color: #e74c3c;
}

.terminal-prompt {
    color: #8b5cf6;
    font-weight: 600;
    margin-right: 0.5rem;
}

.terminal-text {
    color: #f0f6fc;
}

.terminal-input-line {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.terminal-cursor {
    color: #8b5cf6;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Terminal CTA Section */
.terminal-cta {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 16px;
    margin: 2rem 0;
}

.terminal-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.terminal-cta p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* AI Live Page */
.ai-live-section {
    padding: 4rem 0;
}

.ai-live-header {
    text-align: center;
    margin-bottom: 3rem;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ef4444;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.performance-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.performance-card:hover {
    border-color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

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

.performance-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

.status-indicator {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-indicator.positive {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.status-indicator.negative {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

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

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #8b5cf6;
}

.stat-value.profit {
    color: #10b981;
}

.stat-value.loss {
    color: #ef4444;
}

.recent-trades {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.recent-trades h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

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

.trade-item {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 4px solid;
}

.trade-item.win {
    border-left-color: #10b981;
}

.trade-item.loss {
    border-left-color: #ef4444;
}

.trade-pair {
    font-weight: 600;
    color: #fff;
}

.trade-type {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.trade-result {
    font-weight: 700;
}

.trade-item.win .trade-result {
    color: #10b981;
}

.trade-item.loss .trade-result {
    color: #ef4444;
}

.trade-time {
    font-size: 0.875rem;
    color: #999;
}

.ai-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 3rem;
}

.ai-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ai-cta p {
    color: #ccc;
    margin-bottom: 2rem;
}

/* News Page */
.news-section {
    padding: 4rem 0;
}

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

.news-header h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.news-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: white;
}

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

.news-article {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s;
    cursor: pointer;
}

.news-article:hover {
    border-color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.news-category {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-category.trading {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.news-category.crypto {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.news-category.ai {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.news-time {
    font-size: 0.875rem;
    color: #999;
}

.news-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #fff;
    line-height: 1.4;
}

.news-excerpt {
    color: #ccc;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.news-source {
    font-size: 0.75rem;
    color: #8b5cf6;
    font-weight: 500;
}

.news-sources {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
}

.news-sources h4 {
    margin-bottom: 1rem;
    color: #8b5cf6;
}

.sources-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.sources-list span {
    color: #999;
    font-size: 0.875rem;
}

/* Dashboard */
.dashboard-section {
    padding: 4rem 0;
}

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

.dashboard-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: #ccc;
}

.dashboard-actions {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-support {
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: white !important;
}

.whatsapp-support:hover {
    background: #128c7e !important;
    border-color: #128c7e !important;
    transform: translateY(-2px);
}

.whatsapp-link {
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
}

.whatsapp-link:hover {
    color: #128c7e;
    text-decoration: underline;
}

.support-item {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 8px;
    padding: 0.75rem !important;
}

.support-item i {
    color: #25d366 !important;
}

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

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header h3 {
    font-size: 1.25rem;
}

.card-header i {
    color: #8b5cf6;
}

.subscription-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

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

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-badge.active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.status-badge.inactive {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.subscription-details p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.subscription-cta {
    text-align: center;
    padding: 2rem 0;
}

.subscription-cta p {
    color: #ccc;
    margin-bottom: 1rem;
}

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

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

.setting-info h4 {
    margin-bottom: 0.25rem;
}

.setting-info p {
    color: #ccc;
    font-size: 0.875rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: 0.4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #8b5cf6;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

/* Loading States */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #ccc;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(139, 92, 246, 0.1);
    border-left: 4px solid #8b5cf6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

.error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    color: #ccc;
}

.error-state i {
    font-size: 3rem;
    color: #ef4444;
    margin-bottom: 1rem;
}

.error-state h3 {
    margin-bottom: 1rem;
    color: #fff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Fix body overflow */
    body {
        overflow-x: hidden !important;
        width: 100vw;
    }
    
    /* Container adjustments */
    .container {
        padding: 0 15px !important;
        max-width: 100%;
    }
    
    /* Navbar fixes */
    .navbar {
        background: rgba(10, 10, 10, 0.98) !important;
        padding: 0.75rem 0;
        position: fixed;
        width: 100%;
        z-index: 1000;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        padding: 0 15px;
    }
    
    .nav-logo {
        order: 1;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 0.5rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .hero-social {
        order: 2;
        gap: 0.75rem;
    }
    
    .social-btn {
        width: 35px;
        height: 35px;
    }
    
    /* Page padding adjustment for mobile navbar */
    .page {
        padding-top: 140px !important;
        min-height: calc(100vh - 140px);
    }
    
    /* Hero section mobile */
    .hero {
        padding: 2rem 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100% !important;
        max-width: 280px;
        padding: 0.8rem 1.5rem !important;
        font-size: 1rem;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.8rem !important;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* Features grid mobile */
    .features {
        padding: 2rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .feature-card {
        padding: 1.5rem !important;
        margin: 0 0.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    /* Portal features mobile */
    .portal-features {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .portal-feature {
        padding: 1rem;
    }
    
    .portal-feature i {
        font-size: 2rem;
    }
    
    /* Plans mobile */
    .plans-options,
    .category-plans {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .plan-option-card,
    .plan-category-card {
        margin: 0 0.5rem;
    }
    
    /* Dashboard mobile */
    .dashboard-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .dashboard-card {
        margin: 0 0.5rem;
        padding: 1.5rem;
    }
    
    .dashboard-header h1 {
        font-size: 2rem;
    }
    
    /* Performance grid mobile */
    .performance-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .performance-card {
        margin: 0 0.5rem;
    }
    
    .performance-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    
    /* Trade items mobile */
    .trade-item {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
        text-align: center;
        padding: 1rem;
    }
    
    /* News mobile */
    .news-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .news-article {
        margin: 0 0.5rem;
    }
    
    .news-filters {
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        flex: 1;
        min-width: auto;
    }
    
    .sources-list {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    /* AI/Signals hero mobile */
    .ai-hero,
    .signals-hero {
        padding: 2rem 0;
    }
    
    .ai-hero-content,
    .signals-hero-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: center;
    }
    
    .ai-hero-text h1,
    .signals-hero-text h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }
    
    .ai-hero-subtitle,
    .signals-hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .ai-stats,
    .signals-stats {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .ai-brain,
    .signals-chart {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
    
    /* Steps grid mobile */
    .steps-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .step-card {
        margin: 0 0.5rem;
    }
    
    /* Signals benefits mobile */
    .signals-benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .signals-benefit-card {
        margin: 0 0.5rem;
    }
    
    /* Terminal mobile */
    .terminal-container {
        margin: 0 0.5rem;
    }
    
    .terminal-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 1rem;
    }
    
    .terminal-title {
        font-size: 0.9rem;
    }
    
    .ascii-logo {
        font-size: 0.4rem !important;
        line-height: 1.1;
    }
    
    .terminal-content {
        font-size: 0.8rem;
        max-height: 300px;
    }
    
    /* Back navigation mobile */
    .back-nav {
        padding: 0.75rem 0;
    }
    
    .btn-back {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Modal mobile adjustments */
    .modal-content {
        margin: 1rem;
        max-width: calc(100vw - 2rem);
        max-height: calc(100vh - 2rem);
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    /* Form adjustments */
    .auth-form,
    .config-form {
        padding: 0;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input {
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    /* CTA sections mobile */
    .ai-cta,
    .terminal-cta {
        margin: 0 0.5rem;
        padding: 2rem 1rem;
    }
    
    .ai-cta h3,
    .terminal-cta h2 {
        font-size: 1.5rem;
    }
    
    /* Prevent horizontal scroll */
    * {
        max-width: 100%;
    }
    
    /* Fix any overflowing elements */
    .nav-logo svg {
        max-width: 100px !important;
        height: 25px !important;
        width: 100px;
    }
}

/* Terms and Conditions Modal */
#terms-modal .modal-content {
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: 5vh auto;
}

.terms-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.terms-scroll-area {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    max-height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 1.5rem;
}

.terms-text h3 {
    color: #8b5cf6;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terms-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.terms-section h4 {
    color: #f59e0b;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.terms-section p {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.terms-section ul {
    margin-left: 1rem;
    color: #ccc;
}

.terms-section li {
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.terms-warning {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.terms-actions {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
}

.terms-checkbox {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    accent-color: #8b5cf6;
}

.terms-checkbox label {
    color: #ccc;
    line-height: 1.4;
    cursor: pointer;
    font-size: 0.9rem;
}

.terms-checkbox label:hover {
    color: #fff;
}

.terms-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.terms-buttons button {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terms-buttons .btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ccc;
}

.terms-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.terms-buttons .btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border: none;
    color: white;
}

.terms-buttons .btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-2px);
}

.terms-buttons .btn-primary:disabled {
    background: #374151;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

/* Mobile responsiveness for terms modal */
@media (max-width: 768px) {
    #terms-modal .modal-content {
        max-width: 95vw;
        max-height: 90vh;
        margin: 5vh auto;
        padding: 1rem;
    }
    
    #terms-modal .modal-header {
        padding: 0 0 1rem 0;
        margin-bottom: 1rem;
    }
    
    #terms-modal .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .terms-scroll-area {
        max-height: 200px;
        padding: 0.75rem;
    }
    
    .terms-text h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .terms-section {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .terms-section h4 {
        font-size: 0.9rem;
    }
    
    .terms-section p {
        font-size: 0.85rem;
    }
    
    .terms-section ul {
        font-size: 0.85rem;
    }
    
    .terms-warning {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .terms-actions {
        padding-top: 1rem;
        margin-top: 1rem;
    }
    
    .terms-checkbox {
        margin-bottom: 1rem;
    }
    
    .terms-checkbox label {
        font-size: 0.85rem;
    }
    
    .terms-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .terms-buttons button {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 0.9rem;
    }
    
         /* Ensure modal is properly centered and visible */
     #terms-modal {
         padding: 1rem;
         align-items: flex-start;
         padding-top: 2rem;
         overflow-y: auto;
         -webkit-overflow-scrolling: touch;
     }
     
     /* Prevent background scrolling on mobile */
     body.modal-open {
         overflow: hidden;
         position: fixed;
         width: 100%;
         height: 100%;
     }
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: white;
    font-weight: 500;
    max-width: 400px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification.success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.notification.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.notification.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.notification.info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* Footer Section */
.site-footer {
    background: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    text-align: center;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legal-links {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.legal-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.legal-link:hover {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.footer-copyright {
    font-size: 12px;
    color: #999;
    margin-top: 0.5rem;
}

/* Mobile responsiveness for footer */
@media (max-width: 768px) {
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .legal-link {
        padding: 0.5rem 1rem;
    }
    
    .site-footer {
        padding: 1.5rem 0;
        margin-top: 2rem;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Show notification */
.notification.show {
    transform: translateX(0);
}

/* Mobile notification adjustments */
@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
} 