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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 165, 0, 0.3);
}

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

.join-vip-btn {
    background: linear-gradient(45deg, #ff8c00, #ff6b35);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.join-vip-btn .pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.join-vip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
}

.logo-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin: 0;
    color: #ffffff;
}

.logo-algo {
    color: #00ff88;
    display: inline-block;
}

.logo-pipx {
    color: #ff8c00;
    display: inline-block;
}

.logo-tagline {
    color: #00ff88;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-align: center;
}

.menu-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: #ff8c00;
}

/* Mobile Menu Enhancements */
.mobile-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 80vh;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    z-index: 1000;
    transition: top 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid rgba(255, 140, 0, 0.3);
}

.mobile-menu.active {
    top: 0;
}

.menu-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 140, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 140, 0, 0.05);
}

.exit-icon {
    font-size: 1.3rem;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.exit-icon:hover {
    color: #ff8c00;
    background: rgba(255, 140, 0, 0.2);
}

/* Enhanced Mobile Menu Navigation */
.menu-nav {
    flex: 1;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
    max-height: 60vh;
}

.menu-nav a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    line-height: 1.2;
}

.menu-nav a:hover {
    color: #ff8c00;
    border-color: #ff8c00;
    background: rgba(255, 140, 0, 0.1);
    transform: translateY(-2px);
}

.menu-nav a:active {
    transform: translateY(-2px) scale(0.98);
    background: rgba(255, 140, 0, 0.2);
}

.menu-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 140, 0, 0.3);
    display: flex;
    justify-content: center;
    background: rgba(255, 140, 0, 0.05);
}

.menu-footer .join-vip-btn {
    width: 100%;
    text-align: center;
    background: linear-gradient(45deg, #ff8c00, #ff6b35);
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.menu-footer .join-vip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
}

/* Section Headings */
.section-heading {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.hero-content h2 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffffff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-illustration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.1;
}

.robot-chart {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ff8c00" stroke-width="2"/><path d="M20,50 Q35,30 50,50 T80,50" stroke="%2300ff88" stroke-width="3" fill="none"/></svg>') center/contain no-repeat;
}

/* Global Reach Section */
.global-reach {
    padding: 5rem 0;
}

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

.stat-card {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(45deg, #00ff88, #ff8c00);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #00ff88;
}

.stat-label {
    font-size: 1.1rem;
    color: #cccccc;
}

/* Flag Carousel - Static Display */
.flag-carousel {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0.5rem;
    max-height: 80px;
    margin: 1rem 0;
}

.flag-box {
    width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.flag-box:hover {
    transform: scale(1.05);
    border-color: #ff8c00;
    box-shadow: 0 3px 10px rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
}

.flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Progress Ring */
.progress-ring {
    position: relative;
    margin: 1rem auto 0;
}

.progress-ring-bg {
    fill: none;
    stroke: rgba(255, 140, 0, 0.2);
    stroke-width: 4;
}

.progress-ring-fill {
    fill: none;
    stroke: #ff8c00;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 157;
    stroke-dashoffset: 47;
    animation: progress-fill 2s ease-out;
}

@keyframes progress-fill {
    from { stroke-dashoffset: 157; }
    to { stroke-dashoffset: 47; }
}

/* Tradable Pairs Section */
.tradable-pairs {
    padding: 5rem 0;
    text-align: center;
}

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

.pair-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.pair-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #00ff88;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.pairs-subtext {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

/* Free Robot Section */
.free-robot {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.free-robot h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 140, 0, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.step-number {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
    color: #00ff88;
    font-weight: 700;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.step-content h4 {
    color: #00ff88;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.message-box {
    margin-top: 1.5rem;
}

.message-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.message-card:hover {
    border-color: rgba(255, 140, 0, 0.6);
    background: rgba(0, 0, 0, 0.5);
}

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

.message-header h5 {
    margin: 0;
    color: #00ff88;
    font-size: 1.1rem;
    font-weight: 600;
}

.message-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.message-content p {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
    word-break: break-all;
}

.link-container {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.link-container:hover {
    border-color: rgba(255, 140, 0, 0.6);
    background: rgba(0, 0, 0, 0.5);
}

.link-heading {
    margin: 0 0 1rem 0;
    color: #00ff88;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.link-content code {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    word-break: break-all;
    color: #ffffff;
}

.copy-message-btn, .copy-btn {
    background: rgba(255, 140, 0, 0.2);
    border: 2px solid rgba(255, 140, 0, 0.5);
    color: #ff8c00;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-message-btn:hover, .copy-btn:hover {
    background: rgba(255, 140, 0, 0.3);
    border-color: #ff8c00;
    transform: scale(1.05);
}

.copy-message-btn.copied, .copy-btn.copied {
    background: #00ff88;
    border-color: #00ff88;
    color: #000;
}

.post-submission {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    text-align: center;
}

.verification-note {
    color: #00ff88;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.perks-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
}

.perk-item:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 140, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
}

.check-icon {
    color: #00ff88;
    font-size: 1.2rem;
    font-weight: 600;
}

.perk-item span:last-child {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
}

.proof-note {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-support {
    background: linear-gradient(45deg, #ff8c00, #ff6b35);
    color: white;
}

.btn-community {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: white;
}

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

/* Robots Showcase */
.robots-showcase {
    padding: 5rem 0;
}

.robots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.robot-card {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    min-height: 400px;
}

.robot-card:hover {
    border-color: #00ff88;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 255, 136, 0.3);
}

.robot-image {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: visible;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -20px;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    padding: 10px;
}

.robot-profile-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.3s ease;
    max-width: 100%;
    max-height: 100%;
}

.robot-card:hover .robot-profile-img {
    transform: scale(1.05);
}

.robot-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.robot-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

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

.high-stability {
    background: #ff8c00;
    color: white;
}

.precision-ai {
    background: #00ff88;
    color: #0a0e27;
}

/* Developers Section */
.developers {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 100px;
}

.developers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.developers-heading {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
}

.dev-pane {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 200px;
}

.dev-pane:hover {
    border-color: #ff8c00;
    transform: translateY(-5px);
}

.dev-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.dev-pane h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: center;
}

.dev-pane ul {
    list-style: none;
}

.dev-pane li {
    padding: 0.5rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
}

.dev-pane li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff8c00;
}

.dev-content {
    text-align: left;
}

.company-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 500;
}

.mission {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #cccccc;
    font-style: italic;
}

.services-section h5 {
    color: #00ff88;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item h6 {
    color: #ff8c00;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-item p {
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.service-item ul {
    margin: 0;
    padding-left: 1.5rem;
}

.service-item li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.service-category {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.service-category h5 {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-category > p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.tech-section {
    margin-top: 1.5rem;
}

.tech-section h6 {
    color: #ff8c00;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
    line-height: 1.4;
}

.tech-item strong {
    color: #00ff88;
    font-weight: 600;
}

.build-section {
    margin-top: 1.5rem;
}

.build-section h6 {
    color: #ff8c00;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.build-section ul {
    margin: 0;
    padding-left: 1.5rem;
}

.build-section li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.dev-icon i {
    font-size: 2.5rem;
    color: #00ff88;
}

/* Footer */
.footer {
    background: rgba(10, 14, 39, 0.95);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 165, 0, 0.3);
}

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

.footer-column h5 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-nav a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ff8c00;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}

.social-link {
    color: #cccccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.social-link:hover {
    color: #ff8c00;
    background: rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.6);
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    background: #ff8c00;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #e67e00;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .robots-grid {
        grid-template-columns: 1fr;
    }
    
    .developers-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Smooth Scrolling for Better Navigation */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: rgba(255, 140, 0, 0.3);
    color: white;
} 

.message-text-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.message-text-container p {
    margin: 0;
    flex: 1;
}

.message-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.message-card:hover {
    border-color: rgba(255, 140, 0, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

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

.message-header h5 {
    margin: 0;
    color: #ff8c00;
    font-size: 1.1rem;
    font-weight: 600;
}

.message-content {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.message-content p {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
    word-break: break-all;
}

.copy-message-btn {
    background: rgba(255, 140, 0, 0.2);
    border: 2px solid rgba(255, 140, 0, 0.5);
    color: #ff8c00;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-message-btn:hover {
    background: rgba(255, 140, 0, 0.3);
    border-color: #ff8c00;
    transform: scale(1.05);
}

.copy-message-btn.copied {
    background: #00ff88;
    border-color: #00ff88;
    color: #000;
} 

.link-heading {
    margin: 0 0 1rem 0;
    color: #ff8c00;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.link-content code {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    word-break: break-all;
} 

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-logo-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-logo-graphic {
    width: 60px;
    height: 60px;
    position: relative;
}

.mobile-logo-square {
    width: 100%;
    height: 100%;
    border: 4px solid #00ff88;
    border-radius: 50%;
    position: relative;
    background: rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-logo-graph {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 30px;
    height: 24px;
    border-left: 3px solid #00ff88;
    border-bottom: 3px solid #00ff88;
    border-radius: 0 0 0 6px;
}

.mobile-logo-arrow {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 0;
    height: 0;
    border-left: 12px solid #ff8c00;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.mobile-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.mobile-logo-algo {
    color: #00ff88;
    font-weight: 700;
    font-size: 1.4rem;
}

.mobile-logo-pipx {
    color: #ff8c00;
    font-weight: 700;
    font-size: 1.4rem;
}

.mobile-logo-tagline {
    color: #00ff88;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 3px;
} 

.telegram-link {
    color: #0088cc;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.telegram-link:hover {
    color: #00a8ff;
    transform: scale(1.05);
}

.telegram-link i {
    font-size: 1.2rem;
} 

/* Robot Installation Guides */
.robot-installation {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.robot-installation h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
}

.installation-content {
    max-width: 900px;
    margin: 0 auto;
}

.welcome-message {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.welcome-message h4 {
    color: #00ff88;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.welcome-message p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.installation-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    margin-bottom: 2.5rem;
}

.step-item h5 {
    color: #00ff88;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-item p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.step-item p:last-child {
    margin-bottom: 0;
}

.step-item strong {
    color: #00ff88;
    font-weight: 600;
}

.tip {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    margin-top: 1rem;
    font-weight: 600;
    text-align: center;
}

.success-message {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.success-message h4 {
    color: #00ff88;
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
} 

/* Disclaimer Section */
.disclaimer {
    padding: 3rem 0;
    background: rgba(255, 0, 0, 0.1);
    border-top: 2px solid rgba(255, 0, 0, 0.3);
    border-bottom: 2px solid rgba(255, 0, 0, 0.3);
}

.disclaimer-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-title {
    color: #ff0000;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.disclaimer-text {
    background: rgba(255, 0, 0, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.disclaimer-text p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
} 

.contact-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-section h5 {
    margin: 0 0 0.5rem 0;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 0;
} 

/* Deriv cTrader Section */
.deriv-ctrader {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.ctrader-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ctrader-text {
    flex: 1;
    text-align: left;
}

.ctrader-text h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.ctrader-text p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.ctrader-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #0a0e27;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.ctrader-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.5);
    background: linear-gradient(45deg, #00cc6a, #00ff88);
}

.ctrader-btn i {
    font-size: 1rem;
}

.ctrader-image {
    flex: 1;
    text-align: center;
}

.ctrader-platform-preview {
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.ctrader-platform-preview:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.platform-icon {
    font-size: 4rem;
    color: #00ff88;
    margin-bottom: 1.5rem;
}

.ctrader-platform-preview h4 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.ctrader-platform-preview p {
    font-size: 1.1rem;
    color: #cccccc;
    margin: 0;
}

/* Responsive Design for Deriv cTrader */
@media (max-width: 768px) {
    .ctrader-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .ctrader-text {
        text-align: center;
    }
    
    .ctrader-text h3 {
        font-size: 2rem;
    }
    
    .ctrader-text p {
        font-size: 1.1rem;
    }
} 

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4aa, #0099cc);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.scroll-to-top-btn:hover {
    background: linear-gradient(135deg, #00b894, #0088aa);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.fade-in-scale.animate {
    opacity: 1;
    transform: scale(1);
}

.slide-in-bottom {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.slide-in-bottom.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for grid items */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.stagger-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax effect for hero section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-illustration {
    position: relative;
    z-index: 1;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced hover effects for interactive elements */
.stat-card:hover,
.robot-card:hover,
.step-card:hover,
.pair-card:hover,
.dev-pane:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Loading animation for counters */
.stat-number.loading {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Progress bar for scroll */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #00d4aa, #0099cc);
    z-index: 1001;
    transition: width 0.1s ease;
} 