/* Global Styles */
body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* Glow Effects */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff00, #006600);
    border-radius: inherit;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.7;
}

/* Cards */
.feature-card, .pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-card:hover, .pricing-card:hover {
    transform: translateY(-5px);
}

/* Buttons */
.glow-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #00ff00, #008000);
    border: none;
    transition: all 0.3s ease;
}

.glow-button:hover {
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

/* Stats Section */
.stat-card {
    padding: 2rem;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 0, 0.1);
}

/* Pricing Cards */
.pricing-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(0);
    -webkit-font-smoothing: antialiased;
}

.pricing-card.featured {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #00FF00;
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
    z-index: 2;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.pricing-card .price {
    font-size: 2.5rem;
    color: #00ff00;
    margin: 1rem 0;
}

.pricing-card .features-list {
    list-style: none;
    padding: 0;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(0, 255, 0, 0.1);
}

.footer-logo {
    height: 40px;
}

/* Animations */
@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(0, 255, 0, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 0, 0.8); }
    100% { box-shadow: 0 0 5px rgba(0, 255, 0, 0.5); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .pricing-card {
        margin-bottom: 1rem;
    }
}

/* Reset and base styles */
body {
    background-color: #0A0A0A;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Navbar styles */
.nav-container {
    display: flex;
    justify-content: center;
    padding: 2.5rem 1rem;
}

.navbar {
    background: rgba(32, 32, 32, 0.5);
    backdrop-filter: blur(10px);
    padding: 0.5rem 2rem;
    border-radius: 50px;
    width: fit-content;
    min-width: 600px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.15),
                inset 0 0 20px rgba(0, 255, 0, 0.05);
}

.navbar-brand {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.25rem;
    margin-right: 2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.navbar-brand:hover {
    color: #ffffff;
}

.nav-link {
    color: #ffffff;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00FF00;
}

.btn-login {
    background: #00FF00;
    color: #000000;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #00CC00;
    color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.2);
}

/* Mobile styles */
@media (max-width: 768px) {
    .navbar {
        min-width: unset;
        width: 95%;
        padding: 0.5rem 1rem;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .btn-login {
        margin-left: auto;
    }
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff 0%, #efefef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title-a {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff 0%, #efefef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.hero-buttons {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-learn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-learn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-get-started {
    background: #00FF00;
    color: black;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background: #00CC00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.2);
}

.typing-container {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

#typed-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5),
                 0 0 20px rgba(0, 255, 0, 0.3),
                 0 0 30px rgba(0, 255, 0, 0.1);
}

.typed-cursor {
    font-size: 1.8rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5),
                 0 0 20px rgba(0, 255, 0, 0.3);
}

/* Floating Orbs */
.orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.orb {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(0, 255, 0, 0.4), rgba(0, 255, 0, 0));
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.5;
}

.orb1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation: float1 8s infinite ease-in-out;
}

.orb2 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: -200px;
    animation: float2 10s infinite ease-in-out;
}

.orb3 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: 50%;
    animation: float3 7s infinite ease-in-out;
}

.orb4 {
    width: 350px;
    height: 350px;
    top: 20%;
    left: 20%;
    animation: float4 9s infinite ease-in-out;
}

.orb5 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    right: 20%;
    animation: float5 6s infinite ease-in-out;
}

@keyframes float1 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(100px, 100px); }
    100% { transform: translate(0, 0); }
}

@keyframes float2 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-100px, -150px); }
    100% { transform: translate(0, 0); }
}

@keyframes float3 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(150px, -100px); }
    100% { transform: translate(0, 0); }
}

@keyframes float4 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-120px, 100px); }
    100% { transform: translate(0, 0); }
}

@keyframes float5 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(100px, -120px); }
    100% { transform: translate(0, 0); }
}

/* Gradient overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    pointer-events: none;
    z-index: -1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        min-width: unset;
        width: 95%;
        padding: 0.5rem 1rem;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .btn-login {
        margin-left: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

/* Add after your existing styles */

.showcase-section {
    margin-top: 2rem;
    padding: 2rem 0;
    overflow: hidden;
}

.device-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
    padding: 0 1rem;
}

.device-frame {
    width: 220px;
    height: 440px;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 0, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.15);
    transform: perspective(1000px) rotateY(-15deg);
    transition: all 0.3s ease;
    z-index: 1;
}

.device-frame:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}

.device-content {
    padding: 1rem;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.device-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 255, 0, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00FF00;
}

/* Chat Preview Styles */
.chat-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message, .chat-response {
    padding: 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    max-width: 80%;
}

.chat-message {
    background: rgba(0, 255, 0, 0.1);
    align-self: flex-end;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.chat-response {
    background: rgba(255, 255, 255, 0.1);
    align-self: flex-start;
}

/* Code Preview Styles */
.code-preview {
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    height: 100%;
    overflow-y: auto;
}

.code-preview pre {
    margin: 0;
    color: #00FF00;
    font-size: 0.7rem;
    line-height: 1.4;
    font-family: 'Consolas', 'Monaco', monospace;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.code-preview code {
    display: block;
    padding-left: 1rem;
    text-indent: -1rem;
}

/* Add custom scrollbar for code preview */
.code-preview::-webkit-scrollbar {
    width: 8px;
}

.code-preview::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.code-preview::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 0, 0.3);
    border-radius: 4px;
}

.code-preview::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 0, 0.5);
}

/* Player Stats Styles */
.player-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat {
    background: rgba(0, 255, 0, 0.1);
    padding: 0.8rem;
    border-radius: 10px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

/* Tool Icons Styles */
.tool-icons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
}

.tool-icon-wrapper {
    position: relative;
    cursor: pointer;
    z-index: 1;
}

.tool-icon-wrapper:hover {
    z-index: 1000;
}

.tool-icon {
    font-size: 2rem;
    padding: 1rem;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.tool-tooltip {
    position: absolute;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #00FF00;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    margin-top: 0.5rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.1);
    z-index: 10001;
}

.tool-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent rgba(0, 255, 0, 0.3) transparent;
}

.tool-icon-wrapper:hover .tool-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
    z-index: 10000;
}

.tool-icon-wrapper:hover .tool-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
    z-index: 10000;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .device-container {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .device-frame {
        transform: none;
    }
    
    .device-frame:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .device-container {
        flex-direction: column;
        align-items: center;
    }
    
    .device-frame {
        width: 280px;
        height: 500px;
    }
}

/* Add these styles */
.features-section {
    padding: 2rem;
    position: relative;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1rem;
}

.feature-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(0, 255, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.1);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon-wrapper i {
    font-size: 1.8rem;
    color: #00FF00;
}

.feature-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Add a subtle glow effect on hover */
.feature-card:hover .feature-icon-wrapper {
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

/* Responsive styles */
@media (max-width: 768px) {
    .features-container {
        max-width: 600px;
    }
    
    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .feature-card {
        max-width: 100%;
    }
}

/* Add these styles */
.stats-section {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 255, 0, 0.1);
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff 0%, #efefef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-subtitle {
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.stat-item {
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle at center, rgba(0, 255, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 20px;
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-value {
    font-size: 4rem;
    font-weight: 700;
    color: #00FF00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.plus, .percent {
    font-size: 2.5rem;
    margin-left: 0.2rem;
    opacity: 0.8;
}

.stat-label {
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        gap: 3rem;
    }
    
    .stats-title {
        font-size: 2rem;
    }
    
    .stat-value {
        font-size: 3rem;
    }
    
    .plus, .percent {
        font-size: 2rem;
    }
}

/* Add these styles */
.pricing-section {
    padding: 6rem 2rem;
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.pricing-title {
    text-align: center;
    color: #00FF00;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.pricing-subtitle {
    text-align: center;
    color: #999;
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    padding: 1rem;
}

.pricing-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(0);
    -webkit-font-smoothing: antialiased;
}

.pricing-card.featured {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #00FF00;
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
    z-index: 2;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.popular-badge {
    position: absolute;
    top: 1.5rem;
    right: -3rem;
    background: #00FF00;
    color: #000;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 255, 0, 0.3);
    z-index: 3;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.8rem;
    color: #00FF00;
    margin-bottom: 1rem;
    font-weight: bold;
}

.plan-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3.5rem;
    color: #fff;
    font-weight: bold;
}

.price-period {
    font-size: 1.2rem;
    color: #999;
}

.plan-savings {
    display: inline-block;
    background: rgba(0, 255, 0, 0.1);
    color: #00FF00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.plan-features li {
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-features i {
    color: #00FF00;
    font-size: 1.2rem;
}

.plan-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 0, 0.3);
    background: rgba(0, 255, 0, 0.1);
    color: #00FF00;
}

.plan-cta.featured-cta {
    background: #00FF00;
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
}

.plan-cta:hover {
    transform: translateY(-2px);
    background: rgba(0, 255, 0, 0.2);
    color: #00FF00;
    text-decoration: none;
}

.plan-cta.featured-cta:hover {
    background: #00E000;
    color: #000;
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.4);
    text-decoration: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.1);
}

.pricing-card.featured:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 45px rgba(0, 255, 0, 0.15);
}

/* Responsive styles */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: translateY(-10px);
    }

    .pricing-card.featured:hover {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .pricing-title {
        font-size: 2.5rem;
    }

    .pricing-subtitle {
        font-size: 1.1rem;
    }

    .pricing-card {
        padding: 2rem;
    }
}

/* Add these styles */

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #fff 0%, #efefef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 255, 0, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 500;
}

.arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #999;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(0, 255, 0, 0.1);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-brand p {
    color: #999;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 255, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00FF00;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 255, 0, 0.2);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-group h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-group a {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-group a:hover {
    color: #00FF00;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #00FF00;
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Add at the top of the file */
html {
    scroll-behavior: smooth;
}

/* Add these styles in the stats section */
.logo-scroll-container {
    margin-top: 6rem;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.logo-scroll-container::before,
.logo-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 300px;
    height: 100%;
    z-index: 2;
}

.logo-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 4rem;
}

.logo-group {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.company-logo {
    height: 40px;
    transition: all 0.3s ease;
    z-index: 100;
    transform: scale(2);
}

.company-logo:hover {
    opacity: 1;
    transform: scale(2.2);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Add hover pause */
.logo-scroll:hover {
    animation-play-state: paused;
}

/* Update the company logo styles */
.company-logo {
    height: 50px;
    width: auto;
    filter: grayscale(100%) brightness(100) opacity(0.6);
    transition: all 0.3s ease;
    object-fit: contain;
}

.company-logo:hover {
    filter: grayscale(100%) brightness(100) opacity(1);
    transform: scale(1.1);
}

/* Update the logo group spacing */
.logo-group {
    display: flex;
    gap: 8rem;
    align-items: center;
    padding: 0 2rem;
}

.logo-scroll {
    display: flex;
    animation: scroll 10s linear infinite;
    gap: 8rem;
}

/* Update showcase section styles */
.showcase-section {
    margin-top: 2rem;
    padding: 2rem 0;
    overflow: hidden;
}

/* Add media query to hide showcase on mobile */
@media (max-width: 768px) {
    .showcase-section {
        display: none;
    }
}

.device-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
    padding: 0 1rem;
}

.policy-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.policy-container h1 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 600;
}

.policy-container section {
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
}

.policy-container h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.policy-container ul, 
.policy-container ol {
    margin-left: 1.5rem;
    color: var(--text-secondary);
}

.policy-container li {
    margin: 0.5rem 0;
}

.policy-container p {
    color: var(--text-secondary);
    line-height: 1.6;
}