/* Trading Platform Page Styles */

#platform-page {
    background-color: #fff;
    font-family: 'Poppins', 'Roboto', sans-serif;
    color: #111;
    scroll-behavior: smooth;
}

/* Hero Section */
.platform-hero {
    background-color: #000;
    background-image: radial-gradient(circle at 50% 50%, rgba(255,0,204,0.15) 0%, rgba(0,0,0,1) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 160px 0 100px;
    text-align: center;
}

.platform-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.feature-badge-text {
    background: rgba(255, 0, 204, 0.12);
    color: #FF00CC;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-title span {
    color: rgba(255, 255, 255, 0.4);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    line-height: 1.6;
}

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

.btn-platform-primary {
    background: linear-gradient(135deg, #FF00CC 0%, #3333ff 100%);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-platform-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 204, 0.4);
}

.btn-platform-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-platform-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Intro Section */
.platform-intro {
    background: #fff;
    padding: 100px 0 60px;
    text-align: center;
}

.intro-text {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 600;
    color: #111;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Platform Content Area */
.platform-content {
    background: #f8f9fa;
    padding-bottom: 100px;
}

.platform-card {
    background: #18181B;
    border-radius: 24px;
    padding: 4rem;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.card-left {
    flex: 1;
}

.card-right {
    flex: 0 0 350px;
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 204, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.phone-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 300px;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
    transition: transform 0.5s ease;
}

.platform-card:hover .phone-img {
    transform: scale(1.03) rotate(-1deg);
}

.card-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.card-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.card-desc strong {
    color: #fff;
}

.download-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.2rem;
}

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

.download-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FF00CC;
    transform: translateY(-2px);
}

.download-btn i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Server Box */
.server-box {
    background: #18181B;
    border-radius: 24px;
    padding: 3.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.server-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.server-desc {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.server-highlight {
    font-family: monospace;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.server-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

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

.dot-green { background: #00FF73; box-shadow: 0 0 12px rgba(0, 255, 115, 0.4); }
.dot-blue { background: #0781FE; box-shadow: 0 0 12px rgba(7, 129, 254, 0.4); }
.dot-purple { background: #FF00CC; box-shadow: 0 0 12px rgba(255, 0, 204, 0.4); }

/* Responsive */
@media (max-width: 1024px) {
    .platform-card {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 3rem;
    }
    .card-right {
        flex: 1;
        width: 100%;
    }
    .card-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .platform-hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.08em;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-platform-primary,
    .btn-platform-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .platform-intro {
        padding: 60px 0 40px;
    }

    .intro-text {
        font-size: 1.05rem;
    }

    .platform-content {
        padding-bottom: 60px;
    }

    .platform-card {
        flex-direction: column;
        padding: 2rem 1.25rem;
        gap: 2rem;
        border-radius: 16px;
    }

    .card-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .card-desc {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .card-right {
        flex: 1;
        width: 100%;
        order: -1;
    }

    .phone-img {
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }

    .download-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .download-btn {
        padding: 0.7rem 0.75rem;
        font-size: 0.82rem;
        gap: 0.4rem;
    }

    .server-box {
        padding: 2rem 1.25rem;
        border-radius: 16px;
    }

    .server-title {
        font-size: 1.25rem;
    }

    .server-desc {
        font-size: 0.9rem;
    }

    .server-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
