/* Base Styles & Variables */
:root {
    --dark-bg: #1A1A1A;
    --darker-bg: #0F0F0F;
    --neon-blue: #00D4FF;
    --neon-pink: #FF00E6;
    --neon-green: #39FF14;
    --neon-blue-glow: 0 0 10px #00D4FF, 0 0 20px rgba(0, 212, 255, 0.5);
    --neon-pink-glow: 0 0 10px #FF00E6, 0 0 20px rgba(255, 0, 230, 0.5);
    --neon-green-glow: 0 0 10px #39FF14, 0 0 20px rgba(57, 255, 20, 0.5);
    --heading-font: 'Orbitron', sans-serif;
    --body-font: 'Exo 2', sans-serif;
    --grid-size: 30px;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.nav-links {
	align-items:center;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    background-color: var(--dark-bg);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}
.table-container {
	width:100%;
	overflow-x:auto;
}
ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button, input, textarea {
    font-family: var(--body-font);
}

section {
    padding: 5rem 2rem;
    position: relative;
}

/* Background Effects */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgc3RpdGNoVGlsZXM9InN0aXRjaCIgdHlwZT0iZnJhY3RhbE5vaXNlIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGQ9Ik0wIDBoMzAwdjMwMEgweiIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIuMDUiLz48L3N2Zz4=');
    pointer-events: none;
    z-index: 10;
    opacity: 0.5;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 212, 255, 0.05) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    pointer-events: none;
    z-index: 5;
}

/* Text Effects */
.text-gradient {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.glitch {
    position: relative;
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-pink);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 var(--neon-blue);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim2 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(37px, 9999px, 94px, 0); }
    10% { clip: rect(83px, 9999px, 59px, 0); }
    20% { clip: rect(75px, 9999px, 23px, 0); }
    30% { clip: rect(29px, 9999px, 78px, 0); }
    40% { clip: rect(90px, 9999px, 39px, 0); }
    50% { clip: rect(21px, 9999px, 88px, 0); }
    60% { clip: rect(38px, 9999px, 44px, 0); }
    70% { clip: rect(93px, 9999px, 61px, 0); }
    80% { clip: rect(9px, 9999px, 92px, 0); }
    90% { clip: rect(23px, 9999px, 31px, 0); }
    100% { clip: rect(11px, 9999px, 28px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(18px, 9999px, 91px, 0); }
    10% { clip: rect(64px, 9999px, 27px, 0); }
    20% { clip: rect(15px, 9999px, 84px, 0); }
    30% { clip: rect(93px, 9999px, 35px, 0); }
    40% { clip: rect(2px, 9999px, 48px, 0); }
    50% { clip: rect(70px, 9999px, 30px, 0); }
    60% { clip: rect(47px, 9999px, 84px, 0); }
    70% { clip: rect(67px, 9999px, 54px, 0); }
    80% { clip: rect(34px, 9999px, 23px, 0); }
    90% { clip: rect(46px, 9999px, 61px, 0); }
    100% { clip: rect(83px, 9999px, 98px, 0); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8em 2em;
    background: none;
    border: 2px solid;
    border-radius: 4px;
    font-family: var(--heading-font);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
    opacity: 0.1;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    color: var(--neon-pink);
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 230, 0.2);
}

.btn-secondary:hover {
    box-shadow: 0 0 20px rgba(255, 0, 230, 0.5);
}

.btn-small {
    padding: 0.5em 1.2em;
    font-size: 0.9rem;
}

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

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

header.scrolled {
    padding: 0.5rem 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: 0.1em;
}

.logo .accent {
    color: var(--neon-blue);
    position: relative;
}

.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--neon-blue);
    filter: blur(15px);
    opacity: 0.3;
    z-index: -1;
    animation: logo-pulse 4s infinite alternate;
}

@keyframes logo-pulse {
    0% { opacity: 0.2; filter: blur(15px); }
    100% { opacity: 0.4; filter: blur(20px); }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: width var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links .active a::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    width: 300px;
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 4px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform:translate(-50%, 0);
}

.dropdown-menu li {
    padding: 0.5rem 1.5rem;
    text-align: center;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    color: var(--neon-blue);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: var(--transition-fast);
}

/* Cyberpunk Frame Style */
.cyberpunk-frame {
    position: relative;
    border: 2px solid var(--neon-blue);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2px;
    overflow: hidden;
}

/* .cyberpunk-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink), var(--neon-green), var(--neon-blue));
    background-size: 400% 400%;
    z-index: -1;
    animation: border-flow 8s ease infinite;
} */

.neon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.3);
    pointer-events: none;
}

@keyframes border-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.2em;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--neon-blue), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--neon-blue);
}

.footer-links ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--neon-blue);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--neon-blue);
    transform: translateY(-3px);
}

.contact-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

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

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    color: white;
    font-family: var(--body-font);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--neon-blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    opacity: 0.7;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

/* Media Queries */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 4rem 1.5rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 400px;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 1.5rem;
        transition: right var(--transition-fast);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        height: 0;
        overflow: hidden;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .dropdown.active .dropdown-menu {
        height: auto;
        padding: 1rem 0 0 1rem;
    }
    
    .dropdown-menu li {
        padding: 0.3rem 0;
        text-align: left;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links ul {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
}


.cta-section {
    display: flex;
    justify-content: center;
}
.feature-card.revealed,
.stat-box {
    opacity: 1!important;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}








/* Core Tools Table */
.core-tools-table {
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.core-tools-table h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: var(--neon-green);
    margin-bottom: 20px;
}

.core-tools-table table {
    width: 100%;
    border-collapse: collapse;
}

.core-tools-table th,
.core-tools-table td {
    padding: 15px;
    text-align: left;
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    color: #cccccc;
    border-bottom: 1px solid var(--neon-blue);
}

.core-tools-table th {
    font-weight: 700;
    color: var(--neon-pink);
    background: rgba(0, 0, 0, 0.5);
}

.core-tools-table td {
    background: rgba(255, 255, 255, 0.05);
}

.core-tools-table tr:hover td {
    background: rgba(0, 255, 255, 0.1);
    transition: background 0.3s ease;
}

/* Article Section */
.article-section {
    padding: 80px 0;
    background: #0a0a0a;
    position: relative;
}

.article-content {
    padding: 30px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}
.member-photo.cyberpunk-frame {
	padding-top:0 !important;
}
.article-content p,
.article-content ul,
.article-content h3,
.article-content h4 {
    font-family: 'Exo 2', sans-serif;
    color: #cccccc;
    margin-bottom: 20px;
}

.article-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: var(--neon-blue);
}

.article-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: var(--neon-pink);
}

.article-content ul {
    list-style: none;
    padding-left: 20px;
}

.article-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.article-content ul li:before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--neon-green);
}

.feature-table {
    margin-top: 20px;
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.feature-table th,
.feature-table td {
    padding: 15px;
    text-align: left;
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    color: #cccccc;
    border-bottom: 1px solid var(--neon-blue);
}

.feature-table th {
    font-weight: 700;
    color: var(--neon-pink);
    background: rgba(0, 0, 0, 0.5);
}

.feature-table td {
    background: rgba(255, 255, 255, 0.05);
}

.feature-table tr:hover td {
    background: rgba(0, 255, 255, 0.1);
    transition: background 0.3s ease;
}











/* Core Tools Table */
.core-tools-table {
    margin: 40px auto 0;
    padding: 25px;
    background: rgba(10, 10, 10, 0.85);
    border: 2px solid var(--neon-blue);
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4), inset 0 0 10px rgba(0, 255, 255, 0.2);
    transition: box-shadow 0.3s ease;
}

.core-tools-table:hover {
    box-shadow: 0 0 35px rgba(0, 255, 255, 0.6), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.core-tools-table h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--neon-green);
    text-transform: uppercase;
    margin: 0 0 25px;
    text-shadow: 0 0 10px var(--neon-green);
}

.core-tools-table table {
    width: 100%;
    border-collapse: collapse;
}

.core-tools-table th,
.core-tools-table td {
    padding: 18px 20px;
    text-align: left;
    font-family: 'Exo 2', sans-serif;
    font-size: 17px;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    transition: background 0.3s ease, color 0.3s ease;
}

.core-tools-table th {
    font-weight: 600;
    color: var(--neon-pink);
    background: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.core-tools-table td {
    background: rgba(255, 255, 255, 0.03);
}

.core-tools-table tr:hover td {
    background: rgba(0, 255, 255, 0.15);
    color: var(--neon-blue);
}

/* Feature Table */
.feature-table {
    margin: 30px 0;
    padding: 20px;
    background: rgba(10, 10, 10, 0.85);
    border: 2px solid var(--neon-green);
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.4), inset 0 0 10px rgba(0, 255, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.feature-table:hover {
    box-shadow: 0 0 35px rgba(0, 255, 0, 0.6), inset 0 0 15px rgba(0, 255, 0, 0.3);
}

.feature-table table {
    width: 100%;
    border-collapse: collapse;
}

.feature-table th,
.feature-table td {
    padding: 18px 20px;
    text-align: left;
    font-family: 'Exo 2', sans-serif;
    font-size: 17px;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
    transition: background 0.3s ease, color 0.3s ease;
}

.feature-table th {
    font-weight: 600;
    color: var(--neon-pink);
    background: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-table td {
    background: rgba(255, 255, 255, 0.03);
}

.feature-table tr:hover td {
    background: rgba(0, 255, 0, 0.15);
    color: var(--neon-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .core-tools-table,
    .feature-table {
        padding: 15px;
        margin: 20px 0;
    }

    .core-tools-table h3 {
        font-size: 22px;
    }

    .core-tools-table th,
    .core-tools-table td,
    .feature-table th,
    .feature-table td {
        padding: 12px 15px;
        font-size: 15px;
    }
}
h3 {
    text-align: center;
}
.stats-overlay {
    justify-content: center;
    gap: 10px;
}
@media (max-width: 480px) {
    .stats-overlay {
        flex-direction: column;
        bottom: 0 !important;
        gap: 10px;
    }
    .core-tools-table table,
    .feature-table table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .core-tools-table th,
    .core-tools-table td,
    .feature-table th,
    .feature-table td {
        font-size: 14px;
        padding: 10px;
    }
}

.stat-box {
    transform: translate(0) !important;
}





/* Contact Form Section */
.contact-form {
    padding: 80px 0;
    background: #0a0a0a;
    position: relative;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(10, 10, 10, 0.85);
    border: 2px solid var(--neon-blue);
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4), inset 0 0 10px rgba(0, 255, 255, 0.2);
    transition: box-shadow 0.3s ease;
}

.form-container:hover {
    box-shadow: 0 0 35px rgba(0, 255, 255, 0.6), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: var(--neon-green);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--neon-blue);
    border-radius: 4px;
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    color: #e0e0e0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-container .btn {
    width: 100%;
    text-align: center;
}

/* Contact Info Section */
.contact-info {
    padding: 80px 0;
    background: #0a0a0a;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-left: 2px solid var(--neon-green);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.contact-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: var(--neon-blue);
    margin: 10px 0;
}

.contact-card p {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    color: #cccccc;
    margin: 0;
}

.contact-card a {
    color: var(--neon-pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--neon-green);
}

/* Responsive Design */
@media (max-width: 768px) {


    .dropdown:hover .dropdown-menu {


        transform:none;
            
        }

    .form-container {
        padding: 20px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 10px;
    }

    .contact-card {
        padding: 15px;
    }

    .contact-card h3 {
        font-size: 18px;
    }

    .contact-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 15px;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }
}




/* FAQ Section Enhancements */
.faq-section {
    padding: 80px 0;
    background: #0a0a0a;
    position: relative;
}

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

.faq-item {
    background: rgba(10, 10, 10, 0.85);
    border-left: 2px solid var(--neon-blue);
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.faq-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: var(--neon-green);
    margin: 0;
    text-transform: uppercase;
}

.faq-toggle {
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2300f0ff" stroke-width="2"><path d="M12 5v14M5 12h14"/></svg>') no-repeat center;
    transition: transform 0.3s ease;
}

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

.faq-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-content {
    padding: 20px;
    max-height: 200px; /* Adjust based on content */
}

.faq-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    color: #e0e0e0;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 16px;
    }

    .faq-text {
        font-size: 14px;
    }

    .faq-header {
        padding: 15px;
    }

    .faq-item.active .faq-content {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 14px;
    }

    .faq-text {
        font-size: 13px;
    }

    .faq-header {
        padding: 10px;
    }

    .faq-item.active .faq-content {
        padding: 10px;
    }
}


footer p {
    text-align: start;
}

.hero p {
    text-align: start;
}





/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

/* Popup Container */
.popup {
    position: relative;
    max-width: 600px;
    width: 90%;
    padding: 30px;
    background: rgba(10, 10, 10, 0.85);
    border: 2px solid var(--neon-blue);
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4), inset 0 0 10px rgba(0, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popup.cyberpunk-frame {
	padding-top:20px !important;
}


.hero-vs,
.hero-vs1 {
    position: absolute;
    width: 100px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-vs {
    top: -20px;
    left: -20px;
    transform: rotate(45deg);
}

.hero-vs1 {
    bottom: -20px;
    right: -20px;
    transform: rotate(-45deg);
}

/* Left Popup Text */
.left-popup {
    margin-bottom: 20px;
    text-align: center;
}

.left-popup p {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    color: #e0e0e0;
    margin: 0;
}

.left-popup .text-gradient {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
}

.popup-timer {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
    margin-top: 10px;
}

/* Contact Form */
#contact-form {
    display: grid;
    gap: 15px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--neon-blue);
    border-radius: 4px;
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    color: #e0e0e0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    appearance: none;
    background: rgba(255, 255, 255, 0.05) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2300f0ff" stroke-width="2"><path d="M6 9l6 6 6-6"/></svg>') no-repeat right 10px center;
    background-size: 16px;
}

.form-group input[type="hidden"] {
    display: none;
}

#contact-form .btn {
    width: 100%;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    padding: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .popup {
        padding: 20px;
        width: 95%;
    }

    .left-popup p {
        font-size: 16px;
    }

    .left-popup .text-gradient {
        font-size: 18px;
    }

    .popup-timer {
        font-size: 20px;
    }

    .form-group input,
    .form-group select {
        font-size: 14px;
        padding: 10px;
    }

    .hero-vs,
    .hero-vs1 {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .popup {
        padding: 15px;
    }

    .left-popup p {
        font-size: 14px;
    }

    .left-popup .text-gradient {
        font-size: 16px;
    }

    .popup-timer {
        font-size: 18px;
    }

    .form-group input,
    .form-group select {
        font-size: 13px;
        padding: 8px;
    }

    .hero-vs,
    .hero-vs1 {
        width: 60px;
    }
}








/* Social Icon Base */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px var(--neon-pink));
}

/* X Icon */
.social-icon.x svg {
    width: 32px;
    height: 32px;
}

.social-icon.x:hover svg path {
    stroke: url(#x-grad-hover);
}

/* Telegram Icon */
.social-icon.telegram svg {
    width: 32px;
    height: 32px;
}

.social-icon.telegram:hover svg path {
    fill: url(#telegram-grad-hover);
}

/* Gradient Definitions for Hover */
.social-icon.x svg defs {
    --x-grad-hover: linear-gradient(45deg, var(--neon-green), var(--neon-pink));
}

.social-icon.telegram svg defs {
    --telegram-grad-hover: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .social-icon {
        width: 32px;
        height: 32px;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }
}




/* Privacy Page Container */
.privacy-page {
    position: relative;
    padding: 60px 20px;
    background: rgba(10, 10, 10, 0.9);
    min-height: 100vh;
    overflow: hidden;
}

.privacy-page .container {
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0;
    font-family: 'Exo 2', sans-serif;
}
.cyberpunk-frame{
    padding-top: 140px !important;
}

.cyberpunk-frame h1 {
    text-align: center !important;
    width: 100% !important;
}
.cyberpunk-frame h2 {
    width: 100% !important;
    text-align: center !important;
}
/* Neon Frame and Glow */
.privacy-page .cyberpunk-frame {
    border: 2px solid var(--neon-blue);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
}

.privacy-page .neon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

/* Headings */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin: 30px 0 15px;
}

.text-gradient {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Text and Lists */
.intro-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.privacy-list li {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.privacy-list li:before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

/* Social Icons (from social-icons.css) */
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 6px;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px var(--neon-pink));
    box-shadow: 0 0 12px rgba(255, 0, 255, 0.5);
}

.social-icon.twitter svg,
.social-icon.telegram svg {
    width: 32px;
    height: 32px;
}

.social-icon.twitter:hover svg circle,
.social-icon.telegram:hover svg circle {
    stroke: var(--neon-pink);
}

.social-icon.twitter:hover svg path {
    stroke: url(#twitter-grad-hover);
}

.social-icon.telegram:hover svg path {
    stroke: var(--neon-pink);
}

.social-icon.twitter svg defs {
    --twitter-grad-hover: linear-gradient(45deg, var(--neon-green), var(--neon-pink));
}

.social-icon.telegram svg defs {
    --telegram-grad-hover: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-page {
        padding: 40px 15px;
    }

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

    .section-subtitle {
        font-size: 20px;
    }

    .intro-text {
        font-size: 16px;
    }

    .privacy-section p,
    .privacy-list li {
        font-size: 14px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .privacy-page {
        padding: 30px 10px;
    }

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

    .section-subtitle {
        font-size: 18px;
    }

    .intro-text {
        font-size: 14px;
    }

    .privacy-section p,
    .privacy-list li {
        font-size: 13px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }

    .social-icons {
        gap: 10px;
    }
}




/* Error Page Container */
.error-page {
    position: relative;
    padding: 80px 20px;
    background: rgba(10, 10, 10, 0.9);
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-page .container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: #e0e0e0;
    font-family: 'Exo 2', sans-serif;
}

/* Neon Frame and Glow */
.error-page .cyberpunk-frame {
    border: 2px solid var(--neon-blue);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
}

.error-page .neon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

/* Headings and Text */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.error-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Button */
.btn.btn-primary.pulse-btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    border: 2px solid var(--neon-green);
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.btn-primary.pulse-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0); }
}

/* Social Icons (from social-icons.css) */
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 6px;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px var(--neon-pink));
    box-shadow: 0 0 12px rgba(255, 0, 255, 0.5);
}

.social-icon.twitter svg,
.social-icon.telegram svg {
    width: 32px;
    height: 32px;
}

.social-icon.twitter:hover svg circle,
.social-icon.telegram:hover svg circle {
    stroke: var(--neon-pink);
}

.social-icon.twitter:hover svg path {
    stroke: url(#twitter-grad-hover);
}

.social-icon.telegram:hover svg path {
    stroke: var(--neon-pink);
}

.social-icon.twitter svg defs {
    --twitter-grad-hover: linear-gradient(45deg, var(--neon-green), var(--neon-pink));
}

.social-icon.telegram svg defs {
    --telegram-grad-hover: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
}

/* Responsive Design */
@media (max-width: 768px) {
    .error-page {
        padding: 60px 15px;
    }

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

    .error-text {
        font-size: 16px;
    }

    .btn.btn-primary.pulse-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .error-page {
        padding: 40px 10px;
    }

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

    .error-text {
        font-size: 14px;
    }

    .btn.btn-primary.pulse-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }

    .social-icons {
        gap: 10px;
    }
}


.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Country Select Styling */
.country-select {
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    border: 2px solid var(--neon-blue);
    border-radius: 6px;
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    color: #e0e0e0;
    padding: 12px 35px 12px 15px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

/* Neon Glow on Hover and Focus */
.country-select:hover,
.country-select:focus {
    border-color: var(--neon-pink);
    box-shadow: 0 0 12px rgba(255, 0, 255, 0.5);
}

/* Custom Arrow */
.country-select::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--neon-green);
    pointer-events: none;
}

/* Options Styling */
.country-select option {
    background: rgba(10, 10, 10, 0.9);
    color: #e0e0e0;
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    padding: 10px;
}

/* Browser-specific Fixes */
.country-select::-ms-expand {
    display: none; /* Hide default arrow in IE */
}

.country-select:focus::-webkit-scrollbar {
    width: 8px;
}

.country-select:focus::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.9);
}

.country-select:focus::-webkit-scrollbar-thumb {
    background: var(--neon-blue);
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-group {
        max-width: 250px;
    }

    .country-select {
        font-size: 14px;
        padding: 10px 30px 10px 12px;
    }

    .country-select::after {
        right: 12px;
        border-top: 5px solid var(--neon-green);
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
    }
}

@media (max-width: 480px) {
	
	
	
	
	
	.faq-section {
		padding:60px 10px;
	}
	
	.mission-visual {
		height:auto;
	}
	
	
	.cyberpunk-frame {
		padding-top: 0 !important;
	}
	
	
	
	
	
	
	
    .form-group {
        max-width: 200px;
    }

    .country-select {
        font-size: 13px;
        padding: 8px 25px 8px 10px;
    }

    .country-select::after {
        right: 10px;
        border-top: 4px solid var(--neon-green);
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
    }}



    /* AI Trading Bots Page Container */
.ai-trading-bots-page {
    position: relative;
    padding: 60px 20px;
    background: rgba(10, 10, 10, 0.9);
    min-height: 100vh;
    overflow: hidden;
}

.ai-trading-bots-page .container {
    max-width: 900px;
    margin: 0 auto;
    color: #e0e0e0;
    font-family: 'Exo 2', sans-serif;
}

/* Neon Frame and Glow */
.ai-trading-bots-page .cyberpunk-frame {
    border: 2px solid var(--neon-blue);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
}

.ai-trading-bots-page .neon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

/* Headings */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin: 30px 0 15px;
}

.quick-tips-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin: 20px 0 15px;
}

.text-gradient {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Text and Lists */
.intro-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.trading-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.features-list li {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.features-list li:before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

/* Performance Table */
.performance-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(10, 10, 10, 0.7);
    border: 2px solid var(--neon-blue);
    border-radius: 6px;
}

.performance-table th,
.performance-table td {
    padding: 12px;
    text-align: left;
    font-size: 16px;
    border-bottom: 1px solid var(--neon-green);
}

.performance-table th {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    color: #fff;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.performance-table td {
    color: #e0e0e0;
}

.performance-table tr:last-child td {
    border-bottom: none;
}

.table-note {
    font-size: 14px;
    font-style: italic;
    color: #b0b0b0;
    margin-top: 10px;
}

/* Button */
.btn.btn-primary.pulse-btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    border: 2px solid var(--neon-green);
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 20px 0;
}

.btn.btn-primary.pulse-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0); }
}

/* Social Icons (from social-icons.css) */
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 6px;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px var(--neon-pink));
    box-shadow: 0 0 12px rgba(255, 0, 255, 0.5);
}

.social-icon.twitter svg,
.social-icon.telegram svg {
    width: 32px;
    height: 32px;
}

.social-icon.twitter:hover svg circle,
.social-icon.telegram:hover svg circle {
    stroke: var(--neon-pink);
}

.social-icon.twitter:hover svg path {
    stroke: url(#twitter-grad-hover);
}

.social-icon.telegram:hover svg path {
    stroke: var(--neon-pink);
}

.social-icon.twitter svg defs {
    --twitter-grad-hover: linear-gradient(45deg, var(--neon-green), var(--neon-pink));
}

.social-icon.telegram svg defs {
    --telegram-grad-hover: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
}

/* Responsive Design */
@media (max-width: 768px) {
    .ai-trading-bots-page {
        padding: 40px 15px;
    }

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

    .section-subtitle {
        font-size: 20px;
    }

    .intro-text {
        font-size: 16px;
    }

    .trading-section p,
    .features-list li {
        font-size: 14px;
    }

    .performance-table th,
    .performance-table td {
        font-size: 14px;
        padding: 10px;
    }

    .btn.btn-primary.pulse-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .ai-trading-bots-page {
        padding: 30px 10px;
    }

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

    .section-subtitle {
        font-size: 18px;
    }

    .intro-text {
        font-size: 14px;
    }

    .trading-section p,
    .features-list li {
        font-size: 13px;
    }

    .performance-table th,
    .performance-table td {
        font-size: 13px;
        padding: 8px;
    }

    .btn.btn-primary.pulse-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }

    .social-icons {
        gap: 10px;
    }
}

.trading-section {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Forex Trading Bots Page Container */
.forex-trading-bots-page {
    position: relative;
    padding: 60px 20px;
    background: rgba(10, 10, 10, 0.9);
    min-height: 100vh;
    overflow: hidden;
}

.forex-trading-bots-page .container {
    max-width: 900px;
    margin: 0 auto;
    color: #e0e0e0;
    font-family: 'Exo 2', sans-serif;
}

/* Neon Frame and Glow */
.forex-trading-bots-page .cyberpunk-frame {
    border: 2px solid var(--neon-blue);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
}

.forex-trading-bots-page .neon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

/* Headings */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin: 30px 0 15px;
}

.text-gradient {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Text and Lists */
.intro-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.trading-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.features-list li {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.features-list li:before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

/* Performance Table */
.performance-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(10, 10, 10, 0.7);
    border: 2px solid var(--neon-blue);
    border-radius: 6px;
}

.performance-table th,
.performance-table td {
    padding: 12px;
    text-align: left;
    font-size: 16px;
    border-bottom: 1px solid var(--neon-green);
}

.performance-table th {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    color: #fff;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.performance-table td {
    color: #e0e0e0;
}

.performance-table tr:last-child td {
    border-bottom: none;
}

.table-note {
    font-size: 14px;
    font-style: italic;
    color: #b0b0b0;
    margin-top: 10px;
}

/* Button */
.btn.btn-primary.pulse-btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    border: 2px solid var(--neon-green);
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 20px 0;
}

.btn.btn-primary.pulse-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .forex-trading-bots-page {
        padding: 40px 15px;
    }

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

    .section-subtitle {
        font-size: 20px;
    }

    .intro-text {
        font-size: 16px;
    }

    .trading-section p,
    .features-list li {
        font-size: 14px;
    }

    .performance-table th,
    .performance-table td {
        font-size: 14px;
        padding: 10px;
    }

    .btn.btn-primary.pulse-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}





.menu-toggle {
	position:relative;
	z-index:15 !important;
}
.nav-links {
	z-index:2 !important;
}



@media (max-width: 480px) {
	.hero .hero-visual .stats-overlay {
		max-width:360px !important;
	}
.dropdown {
	text-align:center;
}
    .forex-trading-bots-page {
        padding: 30px 10px;
    }

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

    .section-subtitle {
        font-size: 18px;
    }

    .intro-text {
        font-size: 14px;
    }

    .trading-section p,
    .features-list li {
        font-size: 13px;
    }

    .performance-table th,
    .performance-table td {
        font-size: 13px;
        padding: 8px;
    }

    .btn.btn-primary.pulse-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}



