* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6a11cb;
    --secondary: #2575fc;
    --accent: #ff6b6b;
    --dark: #0f0f1b;
    --card: #1a1a2e;
    --text: #ffffff;
    --text-secondary: #b0b0d0;
    --success: #00ff9d;
    --warning: #ffc107;
    --border-radius: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(106, 17, 203, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(37, 117, 252, 0.15) 0%, transparent 20%);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(15, 15, 27, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(106, 17, 203, 0.3);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

header.scrolled {
    background: rgba(15, 15, 27, 0.98);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    animation: fadeInLeft 0.8s ease-out;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(106, 17, 203, 0.5);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text span {
    color: var(--text);
    -webkit-text-fill-color: initial;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--success);
    transition: var(--transition);
    border-radius: 2px;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--success);
    transform: translateY(-2px);
}

nav ul li {
    animation: fadeInDown 0.6s ease-out;
    animation-fill-mode: both;
}

nav ul li:nth-child(1) { animation-delay: 0.1s; }
nav ul li:nth-child(2) { animation-delay: 0.2s; }
nav ul li:nth-child(3) { animation-delay: 0.3s; }
nav ul li:nth-child(4) { animation-delay: 0.4s; }
nav ul li:nth-child(5) { animation-delay: 0.5s; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100vh;
    background: var(--dark);
    z-index: 2000;
    padding: 20px;
    transition: var(--transition);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    left: 0;
    animation: slideInLeft 0.4s ease-out;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    color: var(--success);
    transform: rotate(90deg);
}

.mobile-menu ul {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu a {
    display: block;
    color: var(--text);
    font-size: 22px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--success);
    transform: translateX(5px);
}

/* Section Base */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    animation: fadeInUp 0.8s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--success);
    border-radius: 2px;
    animation: pulseLine 2s infinite;
}

@keyframes pulseLine {
    0%, 100% { transform: translateX(-50%) scaleX(1); }
    50% { transform: translateX(-50%) scaleX(1.2); }
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 15, 27, 0.92) 0%, rgba(26, 26, 46, 0.92) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(106, 17, 203, 0.15) 0%, transparent 70%);
    z-index: 0;
    animation: pulseBackground 15s infinite alternate;
}

@keyframes pulseBackground {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.05); }
}

.hero-content {
    max-width: 650px;
    z-index: 2;
}

.hero h1 {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    animation: fadeInUp 1s ease-out;
}

.hero h1 span {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 3px;
    opacity: 0.3;
}

.hero p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

.btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.4);
    animation: pulse 2s infinite;
    animation-delay: 0.7s;
}

.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: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(106, 17, 203, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(106, 17, 203, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(106, 17, 203, 0); }
    100% { box-shadow: 0 0 0 0 rgba(106, 17, 203, 0); }
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--success);
    color: white;
    box-shadow: none;
    animation: none;
}

.btn-secondary:hover {
    background: rgba(0, 255, 157, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.3);
}

.hero-stats {
    display: flex;
    gap: 35px;
    margin-top: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.9s;
    animation-fill-mode: both;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.stat-item:nth-child(1) { animation-delay: 1.1s; }
.stat-item:nth-child(2) { animation-delay: 1.3s; }
.stat-item:nth-child(3) { animation-delay: 1.5s; }

.stat-number {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content {
    padding-right: 20px;
}

.about-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    animation: fadeInLeft 0.8s ease-out;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 18px;
    animation: fadeInLeft 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.about-content ul {
    margin: 20px 0 25px 25px;
    color: var(--text-secondary);
    animation: fadeInLeft 0.8s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.about-content li {
    margin-bottom: 12px;
    line-height: 1.7;
    padding-left: 5px;
    position: relative;
}

.about-content li::before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: var(--success);
    font-weight: bold;
}

.profile-card {
    background: var(--card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(106, 17, 203, 0.3);
    margin-top: 30px;
    transition: var(--transition);
    animation: fadeInRight 0.8s ease-out;
}

.profile-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.profile-header {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="5" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="8" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="6" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid white;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    font-size: 48px;
    font-weight: 700;
    color: white;
    box-shadow: 0 0 30px rgba(106, 17, 203, 0.5);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.profile-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.profile-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(106, 17, 203, 0.3);
}

.profile-stat {
    text-align: center;
}

.profile-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--success);
}

.profile-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 5px;
}

.profile-bio {
    padding: 25px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 17px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    height: 500px;
    transition: var(--transition);
    animation: fadeInRight 0.8s ease-out;
}

.about-image:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(15, 15, 27, 0.95), transparent);
    z-index: 2;
}

.image-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.image-subtitle {
    color: var(--success);
    font-weight: 600;
    font-size: 18px;
}

/* Why Us */
.why-us {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(15, 15, 27, 0.7) 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(106, 17, 203, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(37, 117, 252, 0.1) 0%, transparent 40%);
    z-index: 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.reason-card {
    background: var(--card);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(106, 17, 203, 0.2);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
}

.reason-card.appear {
    animation: fadeInUp 0.6s ease-out forwards;
}

.reason-card.appear:nth-child(1) { animation-delay: 0.1s; }
.reason-card.appear:nth-child(2) { animation-delay: 0.3s; }
.reason-card.appear:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reason-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(106, 17, 203, 0.1), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
    z-index: 0;
}

.reason-card:hover {
    transform: translateY(-10px);
    border-color: rgba(106, 17, 203, 0.5);
    box-shadow: var(--shadow);
}

.reason-card:hover::before {
    animation: shine 1.5s infinite;
}

.reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 0 30px rgba(106, 17, 203, 0.5);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(106, 17, 203, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 12px rgba(106, 17, 203, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(106, 17, 203, 0); }
}

.reason-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.reason-text {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.7;
    flex-grow: 1;
}

/* Risk Management Section */
.risk-section {
    background: rgba(15, 15, 27, 0.7);
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
    border: 1px solid rgba(106, 17, 203, 0.3);
}

.risk-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.risk-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(0, 255, 157, 0.2);
    text-align: center;
    transition: var(--transition);
}

.risk-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.4);
}

.risk-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--success);
}

.risk-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.risk-card-text {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Sessions Section */
.sessions-section {
    background: rgba(15, 15, 27, 0.7);
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
    border: 1px solid rgba(106, 17, 203, 0.3);
}

.sessions-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.session-card {
    background: rgba(106, 17, 203, 0.15);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(106, 17, 203, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.session-card:hover {
    transform: scale(1.05);
    background: rgba(106, 17, 203, 0.25);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.session-time {
    font-size: 22px;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 5px;
}

.session-desc {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Live Signals Section */
.signals-section {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 15, 27, 0.8) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.signals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(106, 17, 203, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 157, 0.1) 0%, transparent 40%);
    z-index: 0;
}

.signals-container {
    background: var(--card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(106, 17, 203, 0.3);
    position: relative;
    z-index: 2;
    margin-top: 40px;
    overflow: hidden;
}

.signals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(106, 17, 203, 0.3);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-weight: 600;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

.signals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.signal-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 20px;
    border-left: 4px solid var(--success);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-30px);
}

.signal-card.appear {
    animation: fadeInRight 0.6s ease-out forwards;
}

.signal-card.appear:nth-child(1) { animation-delay: 0.1s; }
.signal-card.appear:nth-child(2) { animation-delay: 0.3s; }
.signal-card.appear:nth-child(3) { animation-delay: 0.5s; }
.signal-card.appear:nth-child(4) { animation-delay: 0.7s; }

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.signal-card:hover {
    transform: translateX(5px);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.2);
}

.signal-time {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.signal-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.signal-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.signal-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.signal-profit {
    color: var(--success);
    font-weight: 600;
}

/* Telegram Section */
.tg-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: var(--card);
    border-radius: 20px;
    border: 1px solid rgba(106, 17, 203, 0.3);
    position: relative;
    overflow: hidden;
}

.tg-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 158, 217, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.tg-icon {
    font-size: 48px;
    color: #229ed9;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    animation: pulseIcon 2s infinite;
}

.tg-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    position: relative;
    z-index: 2;
}

.tg-text {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

.tg-link {
    display: inline-block;
    background: linear-gradient(90deg, #229ed9 0%, #0d81c0 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(34, 158, 217, 0.4);
}

.tg-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(34, 158, 217, 0.6);
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(106, 17, 203, 0.3);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.appear {
    animation: fadeInUp 0.6s ease-out forwards;
}

.faq-item.appear:nth-child(1) { animation-delay: 0.1s; }
.faq-item.appear:nth-child(2) { animation-delay: 0.3s; }
.faq-item.appear:nth-child(3) { animation-delay: 0.5s; }
.faq-item.appear:nth-child(4) { animation-delay: 0.7s; }

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.faq-question {
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(106, 17, 203, 0.1);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer.show {
    padding: 15px 25px 25px;
    max-height: 500px;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(106, 17, 203, 0.2);
    transition: var(--transition);
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
    background: rgba(0, 255, 157, 0.2);
}

/* Footer */
footer {
    background: rgba(10, 10, 20, 0.95);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(106, 17, 203, 0.3);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(106, 17, 203, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.footer-col h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--success);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    font-size: 16px;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--success);
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-links a:hover {
    color: var(--success);
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 10px;
    width: 20px;
}

.contact-info {
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(106, 17, 203, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: white;
}

.contact-text p, .contact-text a {
    color: var(--text-secondary);
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--success);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(106, 17, 203, 0.2);
    color: var(--text-secondary);
    font-size: 15px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        left: -100%;
    }
    to {
        left: 0;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #551a8b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-bottom: 40px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .reason-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .reason-title {
        font-size: 20px;
    }
    
    .tg-link {
        width: 100%;
        justify-content: center;
    }
    
    .session-card {
        padding: 15px;
    }
}