* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f5f7fa;
}

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

header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 15px;
}

nav ul li a:hover {
    background: rgba(255,255,255,0.15);
    color: #e94560;
}

.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #0f3460 70%, #e94560 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 2;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-feature {
    text-align: center;
    padding: 25px 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.hero-feature-icon {
    font-size: 45px;
    margin-bottom: 15px;
}

.hero-feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.hero-feature p {
    font-size: 14px;
    margin-bottom: 0;
    opacity: 0.8;
}

.section {
    padding: 80px 0;
    background: #fff;
}

.section:nth-child(even) {
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 55px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.feature-card p {
    color: #666;
    line-height: 1.9;
}

.stats-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #e94560;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #e94560;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card p {
    color: #555;
    line-height: 1.9;
}

.news-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.news-card-content {
    padding: 30px;
}

.news-date {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a2e;
    line-height: 1.5;
}

.news-card p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 15px;
}

.news-link {
    color: #e94560;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.news-link:hover {
    gap: 10px;
    color: #c73e54;
}

.trading-section {
    padding: 80px 0;
    background: #fff;
}

.trading-features {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.trading-feature {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(145deg, #f8f9fa 0%, #fff 100%);
    border-radius: 15px;
    border: 1px solid #eee;
}

.trading-feature-icon {
    font-size: 50px;
    flex-shrink: 0;
}

.trading-feature h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.trading-feature p {
    color: #666;
    line-height: 2;
}

.support-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.support-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.support-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.support-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.support-card p {
    color: #666;
    line-height: 1.8;
}

.cta-section {
    background: linear-gradient(135deg, #e94560 0%, #c73e54 50%, #a83248 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #e94560;
    padding: 15px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

footer {
    background: #1a1a2e;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #e94560;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e94560;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
}

.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.breadcrumb {
    padding: 15px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.breadcrumb-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #666;
}

.breadcrumb a {
    color: #e94560;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.content-section {
    padding: 80px 0;
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.content-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1a1a2e;
}

.content-block p {
    color: #555;
    line-height: 2.2;
    margin-bottom: 20px;
    font-size: 16px;
}

.content-block ul {
    margin: 25px 0;
    padding-left: 30px;
}

.content-block li {
    margin-bottom: 15px;
    line-height: 1.9;
    color: #555;
}

.emoji-highlight {
    font-size: 24px;
    margin-right: 8px;
}

.list-section {
    background: #fff;
    padding: 60px 0;
}

.list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.list-item {
    background: linear-gradient(145deg, #f8f9fa 0%, #fff 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #e94560;
    display: flex;
    align-items: center;
    gap: 15px;
}

.list-item-icon {
    font-size: 35px;
    flex-shrink: 0;
}

.list-item-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.list-item-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.timeline {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #e94560;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    max-width: 350px;
    border: 1px solid #eee;
}

.timeline-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #e94560;
}

.timeline-content p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.process-section {
    padding: 80px 0;
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-item {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(145deg, #f8f9fa 0%, #fff 100%);
    border-radius: 15px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.process-item:hover {
    border-color: #e94560;
    transform: translateY(-5px);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e94560 0%, #c73e54 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.process-item p {
    color: #666;
    line-height: 1.8;
}

.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 25px 30px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    color: #1a1a2e;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    font-size: 24px;
    color: #e94560;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer-content {
    padding: 25px 0;
    color: #666;
    line-height: 2;
    border-top: 1px solid #eee;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.advantages-section {
    padding: 80px 0;
    background: #fff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.advantage-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(233,69,96,0.2);
    border-radius: 0 0 0 100%;
}

.advantage-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.advantage-card p {
    opacity: 0.9;
    line-height: 1.9;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-features {
        gap: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-right: 0;
        padding-left: 50px;
        justify-content: flex-start;
    }

    .timeline-content {
        max-width: 100%;
    }
}
