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

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

/* Cursor Effects */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #00ff88;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease;
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00ff88;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 25, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 90%;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #00ff88;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-brand:hover {
    color: #00d4ff;
    transform: translateX(2px);
}

.logo {
    width: 40px;
    height: 40px;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

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

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, #00d4ff);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.nav-menu a:hover::after {
    width: 80%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,255,136,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    animation: gridPulse 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,255,136,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}

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

.hero-content {
    max-width: 100%;
    z-index: 2;
    position: relative;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 10;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 60px rgba(0, 255, 136, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(255, 255, 255, 0.8), 0 0 80px rgba(0, 255, 136, 0.6);
    }
}

.gradient-text {
    background: linear-gradient(45deg, #00ff88, #00d4ff, #ff0080, #00ff88);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: scale(1.2);
}

.btn-primary {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.6);
    background: linear-gradient(45deg, #00d4ff, #00ff88);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: black;
    border: 2px solid rgba(0, 255, 136, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
    width: 100%;
    max-width: 1200px;
}

.trading-chart {
    width: 90%;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

.chart-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px;
    overflow: hidden;
}

/* Chart Grid */
.chart-grid {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 40px;
    pointer-events: none;
}

.grid-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
}

.grid-line.horizontal:nth-child(1) { top: 0%; }
.grid-line.horizontal:nth-child(2) { top: 33.33%; }
.grid-line.horizontal:nth-child(3) { top: 66.66%; }
.grid-line.horizontal:nth-child(4) { top: 100%; }

.grid-line.vertical {
    height: 100%;
    width: 1px;
}

.grid-line.vertical:nth-child(5) { left: 12.5%; }
.grid-line.vertical:nth-child(6) { left: 37.5%; }
.grid-line.vertical:nth-child(7) { left: 62.5%; }
.grid-line.vertical:nth-child(8) { left: 87.5%; }

/* Candlesticks */
.candlesticks {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 40px;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: calc(100% - 60px);
    overflow: hidden;
}

.candlestick {
    position: relative;
    width: 12px;
    height: 100%;
    animation: candleRiseUp 2s ease-out forwards, candleGlow 3s ease-in-out infinite 2s;
    transform: translateY(100%);
    opacity: 0;
    max-height: 100%;
    overflow: hidden;
}

.candlestick:nth-child(1) {
    animation-delay: 0.2s, 2.2s;
}

.candlestick:nth-child(2) {
    animation-delay: 0.4s, 2.4s;
}

.candlestick:nth-child(3) {
    animation-delay: 0.6s, 2.6s;
}

.candlestick:nth-child(4) {
    animation-delay: 0.8s, 2.8s;
}

.candlestick:nth-child(5) {
    animation-delay: 1.0s, 3.0s;
}

.candlestick:nth-child(6) {
    animation-delay: 1.2s, 3.2s;
}

.candlestick:nth-child(7) {
    animation-delay: 1.4s, 3.4s;
}

.candlestick:nth-child(8) {
    animation-delay: 1.6s, 3.6s;
}

.candlestick .wick {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: rgba(255, 255, 255, 0.8);
    max-height: 100%;
    box-sizing: border-box;
}

.candlestick .body {
    position: absolute;
    left: 0;
    width: 100%;
    border-radius: 2px;
    transition: all 0.3s ease;
    max-height: 100%;
    box-sizing: border-box;
}

.candlestick.bullish .body {
    background: #16a34a;
    border: 1px solid #22c55e;
    box-shadow: 0 0 8px rgba(22, 163, 74, 0.4);
}

.candlestick.bearish .body {
    background: #dc2626;
    border: 1px solid #ef4444;
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.4);
}

.candlestick:hover .body {
    transform: scaleY(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes candleRiseUp {
    0% {
        transform: translateY(100%) scaleY(0);
        opacity: 0;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(0) scaleY(1);
        opacity: 1;
    }
}

@keyframes candleGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    margin-top: -3rem;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,255,136,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
    max-width: 90%;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: white;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}



/* Analytics Section */
.analytics {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.analytics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,2 26,8 26,22 15,28 4,22 4,8" fill="none" stroke="rgba(0,255,136,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    opacity: 0.3;
}

.analytics-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.analytics-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.analytics-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.features-list li:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(10px);
}

.features-list i {
    color: #00ff88;
    margin-right: 1rem;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.analytics-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 5% 5%;
    border-radius: 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: scale(1.05);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Telegram Section */
.telegram {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.telegram::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M0 10 Q25 0 50 10 T100 10 V20 H0 Z" fill="rgba(0,255,136,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    opacity: 0.4;
}

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

.telegram-info {
    text-align: center;
}

.telegram-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.telegram-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature i {
    margin-right: 1rem;
    font-size: 1.2rem;
    color: #22c55e;
}

.telegram-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: fit-content;
}

.telegram-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.telegram-btn:hover::before {
    left: 100%;
}

.telegram-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.6);
    background: linear-gradient(45deg, #00d4ff, #00ff88);
}

.telegram-btn i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.phone-mockup {
    max-width: 380px;
    margin: 0 auto;
}

.phone-screen {
    background: #1a1a1a;
    border-radius: 25px;
    padding: 2rem 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.telegram-header {
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #e5e5e5;
}

.telegram-header i {
    color: #16a34a;
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.telegram-header-logo {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.telegram-header-logo:hover {
    transform: scale(1.1);
}

.telegram-messages {
    margin-bottom: 1rem;
}

.message {
    margin-bottom: 1rem;
}

.message-content {
    background: #16a34a;
    padding: 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: white;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.2);
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M10 10 L40 10 L40 40 L10 40 Z" fill="none" stroke="rgba(0,255,136,0.1)" stroke-width="1"/><circle cx="10" cy="10" r="2" fill="rgba(0,255,136,0.2)"/><circle cx="40" cy="40" r="2" fill="rgba(0,255,136,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
    opacity: 0.3;
}

.contact-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.1);
}

.contact-item i {
    margin-right: 1rem;
    color: #00ff88;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    transition: all 0.3s ease;
}

.footer-brand:hover {
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    transform: scale(1.05);
}

.footer-logo {
    width: 35px;
    height: 35px;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.footer-logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8));
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Tablet Design (iPad) */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(15, 15, 25, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        width: 200px;
        text-align: center;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 4rem 2rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .trading-chart {
        max-width: 400px;
        height: 250px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        gap: 1.5rem;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 3.2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .btn {
        min-width: 250px;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 30px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .btn:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 12px 30px rgba(0, 255, 136, 0.3);
    }
    
    .analytics-content,
    .telegram-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .analytics-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .stat-card {
        max-width: 320px;
    }
    
    .nav {
        padding: 1rem 1.5rem;
    }
    
    .trading-chart {
        max-width: 400px;
        height: 280px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .telegram-info {
        text-align: center;
    }
    
    .telegram-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .feature {
        justify-content: center;
        text-align: center;
    }
    
    .telegram-btn {
        display: block;
        margin: 0 auto;
        width: fit-content;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(0, 255, 136, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 6rem 1rem 2rem;
        min-height: 100vh;
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .trading-chart {
        display: none;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .analytics-content,
    .telegram-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .analytics-stats {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .stat-card {
        max-width: 300px;
        width: 100%;
    }
    
    .telegram-info {
        text-align: center;
    }
    
    .telegram-btn {
        display: block;
        margin: 0 auto;
        width: fit-content;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trading-chart {
        width: 90vw;
        max-width: 350px;
        height: 220px;
        padding: 1rem;
    }
    
    .chart-container {
        padding: 10px;
        overflow: hidden;
    }
    
    .candlesticks {
        height: calc(100% - 50px);
    }
    
    .candlestick {
        width: 8px;
        max-height: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 1rem 2rem;
        min-height: 100vh;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .trading-chart {
        max-width: 300px;
        height: 200px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
    
    .analytics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .analytics-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .analytics-text p {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .features-list {
        text-align: left;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .features-list li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        padding: 0.4rem;
    }
    
    .analytics-stats {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .stat-card {
        max-width: 380px;
        width: 100%;
        padding: 1.5rem;
    }
    
    .telegram-info {
        text-align: center;
    }
    
    .telegram-info h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .telegram-info p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .telegram-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .feature {
        justify-content: center;
        text-align: center;
        font-size: 0.9rem;
    }
    
    .telegram-btn {
        display: block;
        margin: 0 auto;
        width: fit-content;
        max-width: 380px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    /* Navigation */
    .nav {
        padding: 1rem;
    }
    
    .nav-brand {
        font-size: 1.3rem;
    }
    
    .logo {
        width: 35px;
        height: 35px;
    }
    
    /* Hero Section */
    .hero {
        padding: 4rem 0.5rem 2rem;
        text-align: center;
        min-height: 100vh;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Buttons */
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }
    
    /* Trading Chart */
    .trading-chart {
        display: none;
    }
    
    .chart-container {
        display: none;
    }
    
    .candlesticks {
        display: none;
    }
    
    .candlestick {
        display: none;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    /* Analytics Section */
    .analytics-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .analytics-text h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .analytics-text p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .features-list {
        text-align: left;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .features-list li {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
        padding: 0.3rem;
    }
    
    .features-list i {
        font-size: 1rem;
        margin-right: 0.8rem;
    }
    
    /* Analytics Stats */
    .analytics-stats {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .stat-card {
        max-width: 250px;
        width: 100%;
        padding: 1.5rem;
    }
    
    /* Telegram Section */
    .telegram-info {
        text-align: center;
    }
    
    .telegram-info h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .telegram-info p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .telegram-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .feature {
        justify-content: center;
        text-align: center;
        font-size: 0.9rem;
    }
    
    .telegram-btn {
        display: block;
        margin: 0 auto;
        width: fit-content;
        max-width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ML Analysis Section */
.ml-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.ml-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.ml-status {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.ml-status.connected {
    background: #dcfce7;
    color: #16a34a;
}

.ml-status.disconnected {
    background: #fef2f2;
    color: #dc2626;
}

.ml-controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.btn.btn-outline:hover {
    background: #16a34a;
    color: white;
}

.ml-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.ml-predictions-container,
.ml-analysis-container {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.placeholder-card {
    text-align: center;
    padding: 2rem;
    color: #64748b;
}

.placeholder-card h3 {
    margin-bottom: 1rem;
    color: #334155;
}

.prediction-card,
.analysis-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #16a34a;
}

.prediction-card h3,
.analysis-card h3 {
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.prediction-data {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
}

.price-info .label {
    font-weight: 500;
    color: #64748b;
}

.price-info .value {
    font-weight: 600;
    font-size: 1.1rem;
}

.price-info .value.positive {
    color: #16a34a;
}

.price-info .value.negative {
    color: #dc2626;
}

.signal {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.signal.buy {
    background: #dcfce7;
    color: #16a34a;
    border: 2px solid #16a34a;
}

.signal.sell {
    background: #fef2f2;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.signal.hold {
    background: #fef3c7;
    color: #d97706;
    border: 2px solid #d97706;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1e293b;
}

.signals h4 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.signals-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.signal-tag {
    background: #e2e8f0;
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.timestamp {
    font-size: 0.8rem;
    color: #64748b;
    text-align: right;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-card h4 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.ml-loader {
    text-align: center;
    padding: 2rem;
    font-weight: 500;
    color: #16a34a;
}

/* Responsive ML Section */
@media (max-width: 768px) {
    .ml-status-bar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ml-controls {
        justify-content: center;
    }
    
    .ml-content,
    .ml-info {
        grid-template-columns: 1fr;
    }
    
    .analysis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ml-controls {
        width: 100%;
    }
    
    .ml-controls .btn {
        width: 100%;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
    }
}