/* Twitch Picker - Twitch Chat Picker Styles */

:root {
    --primary: #00f2fe;
    --secondary: #4facfe;
    --accent: #ff00ff;
    --dark: #0f172a;
    --darker: #020617;
    --light: #e2e8f0;
    --neon-glow: 0 0 10px rgba(0, 242, 254, 0.7), 0 0 20px rgba(0, 242, 254, 0.5);
    --neon-text: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--primary), 0 0 20px var(--primary);
    --glass: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --fb-blue: #1877f2;
}

@font-face {
    font-family: 'Inter';
    src: url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
}

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

body {
    background: linear-gradient(to bottom, var(--darker), var(--dark));
    color: var(--light);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--fb-blue);
    border-radius: 5px;
}

/* Futuristic Header */
.neo-header {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    height: 80px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.neo-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.neo-logo:hover {
    transform: scale(1.05);
}

.neo-logo:hover .neo-logo-icon {
    color: var(--primary);
}

.neo-logo:hover .neo-logo-text {
    background: linear-gradient(to right, var(--primary), var(--fb-blue));
    -webkit-background-clip: text;
    background-clip: text;
}

.neo-logo-icon {
    color: var(--fb-blue);
    font-size: 28px;
    text-shadow: var(--neon-text);
    animation: pulse 2s infinite alternate;
}

.neo-logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(to right, var(--fb-blue), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

.neo-logo-img {
    display: block;
    width: auto;
    max-width: 240px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(24, 119, 242, 0.35));
}

.logo-img {
    width: 240px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(24, 119, 242, 0.3));
    border-radius: 4px;
}

.neo-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.neo-nav-item {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
}

.neo-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--fb-blue), var(--primary));
    transition: width 0.3s ease;
}

.neo-nav-item:hover::after {
    width: 100%;
}

.neo-nav-item.active {
    color: var(--primary);
    text-shadow: var(--neon-text);
}

.neo-nav-login {
    min-width: 92px;
    padding: 12px 22px;
    border-radius: 8px;
    background: var(--primary);
    color: #0f172a;
    box-shadow: 5px 5px 0 #0f172a;
    text-align: center;
    font-weight: 800;
}

.neo-nav-login::after {
    display: none;
}

.neo-nav-login:hover,
.neo-nav-login.active {
    color: #0f172a;
    text-shadow: none;
    transform: translate(-1px, -1px);
}

.neo-main {
    margin-top: 80px;
    padding: 40px;
}

/* Home Page Container */
.home-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.home-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--fb-blue), var(--primary), var(--secondary));
    z-index: -1;
    border-radius: 22px;
    opacity: 0.1;
}

/* Override hero section for boxed layout */
.home-container .neo-hero {
    padding: 60px 40px;
    margin: 0;
    background: transparent;
    border-radius: 0;
}

/* Override text box for boxed layout */
.home-container .neo-text-box {
    margin: 0 40px 40px;
    border-radius: 16px;
}

/* Override features for boxed layout */
.home-container .neo-features-boxed {
    margin: 40px;
}

/* Override FAQ for boxed layout */
.home-container .neo-faq-section {
    margin: 40px;
    padding: 0;
}

/* Override picker form for boxed layout */
.home-container .neo-card {
    margin: 0 40px 40px;
    border-radius: 16px;
}

/* Trial Banner */
.trial-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(145, 70, 255, 0.12);
    border: 1px solid rgba(145, 70, 255, 0.25);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #c8b3e8;
}

.trial-banner .trial-icon {
    font-size: 18px;
}

.trial-banner .trial-text strong {
    color: #9146ff;
    font-weight: 700;
}

/* Futuristic Card */
.neo-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.neo-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--fb-blue), var(--primary), var(--secondary));
    z-index: -1;
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.5s;
}

.neo-card:hover::before {
    opacity: 0.3;
}

.neo-card-header {
    padding: 24px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.neo-card-title {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(to right, var(--fb-blue), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

.neo-card-body {
    padding: 24px;
}

/* Futuristic Form Elements */
.neo-form-group {
    margin-bottom: 24px;
    position: relative;
}

.neo-form-label {
    display: block;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--light);
    letter-spacing: 0.5px;
}

.neo-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 16px;
    color: var(--light);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.neo-input:focus {
    outline: none;
    border-color: var(--fb-blue);
    box-shadow: var(--neon-glow);
}

.neo-input::placeholder {
    color: #64748b;
    font-family: 'Segoe UI', sans-serif;
}

/* Futuristic Toggle */
.neo-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
}

.neo-toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--light);
}

.neo-toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.neo-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.neo-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #334155;
    transition: .4s;
    border-radius: 34px;
}

.neo-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.neo-toggle-slider {
    background: linear-gradient(to right, var(--fb-blue), var(--primary));
}

input:checked+.neo-toggle-slider:before {
    transform: translateX(30px);
    background-color: white;
}

/* Futuristic Buttons */
.neo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.neo-btn-primary {
    background: linear-gradient(to right, var(--fb-blue), var(--primary));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

.neo-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.neo-btn-primary:active {
    transform: translateY(0);
}

.neo-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--fb-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.neo-btn-primary:hover::before {
    opacity: 1;
}

/* Export Menu */
.neo-export-menu {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.neo-export-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--glass-border);
    color: var(--light);
}

.neo-export-btn:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: var(--fb-blue);
    box-shadow: var(--neon-glow);
}


/* Text Box Container */
.neo-text-box {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid var(--fb-blue);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.neo-text-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--fb-blue), var(--primary));
}

.neo-text-box-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(to right, var(--fb-blue), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.neo-text-box-content {
    font-size: 16px;
    line-height: 1.7;
    color: var(--light);
}

.neo-text-box-content p {
    margin-bottom: 12px;
}

/* Features Grid - Boxed Style */
.neo-features-boxed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.neo-feature-box {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.neo-feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--fb-blue);
    box-shadow: 0 15px 30px rgba(24, 119, 242, 0.2);
}

.neo-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(24, 119, 242, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.neo-feature-box:hover::before {
    transform: translateX(100%);
}

.neo-feature-box-icon {
    font-size: 36px;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--fb-blue), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.neo-feature-box-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--fb-blue);
}

.neo-feature-box-desc {
    font-size: 15px;
    color: var(--light);
    opacity: 0.8;
    line-height: 1.6;
}

/* FAQ Section - Boxed Style */
.neo-faq-section {
    margin: 50px 0;
}

.neo-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.neo-faq-box {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.neo-faq-box:hover {
    border-color: var(--fb-blue);
}

.neo-faq-question {
    background: rgba(15, 23, 42, 0.5);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--light);
    transition: all 0.3s ease;
}

.neo-faq-question:hover {
    background: rgba(30, 41, 59, 0.5);
}

.neo-faq-question i {
    transition: all 0.3s ease;
}

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

.neo-faq-box.active .neo-faq-question {
    background: linear-gradient(to right, rgba(24, 119, 242, 0.2), rgba(0, 242, 254, 0.2));
}

.neo-faq-box.active .neo-faq-question i {
    transform: rotate(180deg);
}

.neo-faq-box.active .neo-faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Footer */
.neo-footer {
    background: linear-gradient(to bottom, var(--dark), var(--darker));
    padding: 60px 40px 30px;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

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

.neo-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.neo-footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--fb-blue), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Footer Logo Styling */
.neo-footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    display: block;
    height: 36px;
    max-width: 260px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(24, 119, 242, 0.3));
    border-radius: 4px;
}

.neo-footer-logo h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(to right, var(--fb-blue), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.neo-footer-links {
    list-style: none;
}

.neo-footer-links li {
    margin-bottom: 12px;
}

.neo-footer-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.neo-footer-links a:hover {
    opacity: 1;
    color: var(--fb-blue);
    transform: translateX(5px);
}

/* Special styling for blog links in footer */
.neo-footer-column:last-child .neo-footer-links a {
    position: relative;
    padding-left: 8px;
}

.neo-footer-column:last-child .neo-footer-links a::before {
    content: '📝';
    position: absolute;
    left: -8px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.neo-footer-column:last-child .neo-footer-links a:hover::before {
    opacity: 1;
}

.neo-footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--light);
    opacity: 0.7;
    font-size: 14px;
}

.neo-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.neo-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-size: 18px;
    transition: all 0.3s ease;
}

.neo-social-links a:hover {
    background: var(--fb-blue);
    color: white;
    transform: translateY(-3px);
}

/* Twitch Loading Page Styles */
.twitch-loading-container {
    background: 
        radial-gradient(circle at 20% 30%, rgba(145, 70, 255, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(145, 70, 255, 0.15) 0%, transparent 30%),
        var(--darker) !important;
}

.twitch-spinner {
    border-left-color: #9146ff !important;
}

.twitch-spinner-inner {
    border-right-color: #b19cd9 !important;
}

.twitch-fb-logo {
    color: #9146ff !important;
}

.twitch-loading-title {
    background: linear-gradient(135deg, #9146ff, #b19cd9) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.twitch-active .step-icon {
    background: linear-gradient(135deg, #9146ff, #b19cd9) !important;
    border-color: #9146ff !important;
    box-shadow: 0 0 15px rgba(145, 70, 255, 0.5) !important;
    animation: twitch-glow 2s ease-in-out infinite !important;
}

@keyframes twitch-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(145, 70, 255, 0.5); }
    50% { box-shadow: 0 0 25px rgba(145, 70, 255, 0.8); }
}

.twitch-stat-number {
    color: #9146ff !important;
}

.twitch-current-message {
    color: #b19cd9 !important;
}

.twitch-loading-messages {
    border-left-color: #9146ff !important;
}

/* Animation */
@keyframes pulse {
    0% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* Hero Section Styles */
.neo-hero {
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.neo-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(24, 119, 242, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 15s infinite alternate;
}

.neo-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--fb-blue), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.neo-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.neo-cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(to right, var(--fb-blue), var(--primary));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
    text-decoration: none;
}

.neo-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

/* Mobile Menu Toggle Button */
.neo-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--light);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.neo-mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.neo-mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.neo-mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .neo-header {
        padding: 0 20px;
    }

    .neo-main {
        padding: 30px 20px;
    }

    .home-container {
        margin: 0 20px;
        border-radius: 16px;
    }

    .home-container .neo-hero {
        padding: 40px 30px;
    }

    .home-container .neo-text-box {
        margin: 0 30px 30px;
    }

    .home-container .neo-features-boxed {
        margin: 30px;
    }

    .home-container .neo-faq-section {
        margin: 30px;
    }

    .home-container .neo-card {
        margin: 0 30px 30px;
    }

    .neo-footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .logo-img {
        width: 200px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .neo-mobile-toggle {
        display: flex;
    }

    .neo-footer-logo h3 {
        font-size: 18px;
    }

    .footer-logo-img {
        height: 28px;
    }

    .neo-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--glass-border);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    }

    .neo-nav.active {
        transform: translateX(0);
    }

    .neo-nav-item {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        margin: 0.5rem 0;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .neo-nav-login {
        width: calc(100% - 4rem);
        min-width: 0;
        padding: 1rem 2rem;
        border-bottom: 0;
    }

    .neo-nav-item:hover {
        background: rgba(24, 119, 242, 0.2);
        transform: translateX(10px);
    }

    .neo-features-boxed {
        grid-template-columns: 1fr;
    }

    .neo-export-menu {
        flex-direction: column;
    }

    .neo-footer-content {
        grid-template-columns: 1fr;
    }

    .neo-hero h1 {
        font-size: 2.5rem;
    }

    .home-container {
        margin: 0 15px;
        border-radius: 12px;
    }

    .home-container .neo-hero {
        padding: 30px 20px;
    }

    .home-container .neo-text-box {
        margin: 0 20px 20px;
    }

    .home-container .neo-features-boxed {
        margin: 20px;
    }

    .home-container .neo-faq-section {
        margin: 20px;
    }

    .home-container .neo-card {
        margin: 0 20px 20px;
    }
}

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

    .neo-logo-text {
        font-size: 20px;
    }

    .neo-logo-icon {
        font-size: 24px;
    }

    .logo-img {
        width: 180px;
        height: auto;
    }

    .neo-logo-img {
        max-width: 180px;
        height: 36px;
    }

    .neo-footer-logo h3 {
        font-size: 16px;
    }

    .footer-logo-img {
        max-width: 200px;
        height: 30px;
    }

    .home-container {
        margin: 0 10px;
        border-radius: 8px;
    }

    .home-container .neo-hero {
        padding: 20px 15px;
    }

    .home-container .neo-text-box {
        margin: 0 15px 15px;
    }

    .home-container .neo-features-boxed {
        margin: 15px;
    }

    .home-container .neo-faq-section {
        margin: 15px;
    }

    .home-container .neo-card {
        margin: 0 15px 15px;
    }

    .neo-footer-content {
        grid-template-columns: 1fr;
    }
}
