* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    -webkit-tap-highlight-color: transparent; 
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: #0f172a;
    color: #e5e7eb;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 70px;
}

@media (min-width: 769px) {
    body { padding-bottom: 0; }
}

.glow {
    position: fixed;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: #2563eb;
    opacity: 0.06;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

/* Header */
.header {
    background: #020617;
    padding: 12px 16px;
    border-bottom: 1px solid #1f2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    height: 56px;
}

.logo a {
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 40px;
    width: 40px;
    display: block;
}

.menu-icon {
    display: none;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    padding: 8px;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    transition: background 0.2s;
}

.menu-icon:active {
    background: #1f2937;
}

.menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.menu a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    padding: 6px 0;
}

.menu a:hover { color: #3b82f6; }

@media (max-width: 768px) {
    .menu-icon { display: flex; }
    
    .menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 24px 40px;
        gap: 0;
        z-index: 99;
        overflow-y: auto;
    }
    
    .menu.active { 
        display: flex; 
        animation: fadeInMenu 0.25s ease;
    }
    
    @keyframes fadeInMenu {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .menu a {
        font-size: 18px;
        padding: 16px 0;
        border-bottom: 1px solid #1f2937;
        width: 100%;
        text-align: center;
        color: #e5e7eb;
    }
    
    .menu a:last-child { border-bottom: none; }
    
    .menu a:active { color: #3b82f6; }
    
    .menu-icon.active {
        z-index: 100;
        position: relative;
    }
}

/* Main */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
}

@media (min-width: 769px) {
    main { padding: 40px 20px; }
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        margin-bottom: 24px;
    }
    
    .hero h1 {
        font-size: 28px !important;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .hero > div > p {
        margin: 0 auto;
        font-size: 15px;
        max-width: 320px;
    }
}

.hero h1 {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.hero h1 span { color: #3b82f6; }

.hero > div > p {
    color: #94a3b8;
    font-size: 17px;
    max-width: 480px;
}

/* Mail Card */
.mail-card {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .mail-card {
        padding: 16px;
        border-radius: 14px;
    }
}

.mail-title {
    color: #60a5fa;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mail-box {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .mail-box {
        flex-direction: column;
        gap: 10px;
    }
}

#temp-email {
    flex: 1;
    background: #0f172a;
    border: 1px solid #1f2937;
    border-radius: 10px;
    padding: 12px 14px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 14px;
    color: #e5e7eb;
    word-break: break-all;
    min-height: 44px;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

@media (max-width: 768px) {
    #temp-email {
        font-size: 13px;
        padding: 10px 12px;
        text-align: center;
        justify-content: center;
    }
}

/* Buttons */
.copy-btn, .gen-btn {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    font-size: 14px;
    min-height: 44px;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.copy-btn:hover, .gen-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.copy-btn:active, .gen-btn:active {
    transform: translateY(0) scale(0.97);
}

@media (max-width: 768px) {
    .copy-btn {
        width: 100%;
        padding: 14px;
    }
}

.gen-btn {
    width: 100%;
    margin-bottom: 12px;
    padding: 14px;
    font-size: 15px;
}

@media (max-width: 768px) {
    .gen-btn {
        padding: 16px;
        font-size: 16px;
    }
}

.timer {
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
}

#countdown {
    color: #f59e0b;
    font-weight: 700;
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 15px;
    margin-left: 4px;
}

/* Inbox */
.inbox-box {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .inbox-box {
        padding: 16px;
        border-radius: 14px;
        margin-bottom: 20px;
    }
}

.inbox-box h2 {
    color: #3b82f6;
    margin-bottom: 16px;
    font-size: 18px;
}

#messages { min-height: 80px; }

.message-item {
    background: #0f172a;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 10px;
    transition: border-color 0.2s, transform 0.15s;
}

.message-item:active {
    transform: scale(0.99);
    border-color: #3b82f6;
}

@media (min-width: 769px) {
    .message-item:hover {
        transform: translateX(4px);
        border-color: #3b82f6;
    }
}

.message-sender {
    color: #60a5fa;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.message-subject {
    color: #e5e7eb;
    font-weight: 600;
    margin: 4px 0;
    font-size: 15px;
    line-height: 1.4;
    word-break: break-word;
}

.message-body {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
    margin-top: 6px;
    max-height: 200px;
    overflow-y: auto;
}

.message-time {
    color: #64748b;
    font-size: 11px;
    margin-top: 8px;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

@media (max-width: 600px) {
    .stats {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 24px;
    }
}

.stat-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .stat-card {
        padding: 16px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
    
    .stat-card h2 {
        font-size: 24px !important;
        margin-bottom: 0 !important;
    }
    
    .stat-card p {
        font-size: 13px !important;
        text-align: right;
        color: #94a3b8;
    }
}

.stat-card h2 {
    color: #3b82f6;
    font-size: 32px;
    margin-bottom: 6px;
}

.stat-card p {
    color: #94a3b8;
    font-size: 13px;
}

/* Features & FAQ */
.features h2, .faq-section h2 {
    text-align: center;
    color: #e5e7eb;
    font-size: 24px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .features h2, .faq-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }
}

.feature-card, .faq-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 14px;
    padding: 20px;
}

@media (max-width: 768px) {
    .feature-card, .faq-card {
        padding: 16px;
    }
}

.feature-card h3, .faq-card h3 {
    color: #3b82f6;
    margin-bottom: 8px;
    font-size: 16px;
}

.feature-card p, .faq-card p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA */
.cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(59,130,246,0.03));
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 16px;
    padding: 32px 20px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .cta {
        padding: 24px 16px;
    }
    
    .cta h2 {
        font-size: 20px !important;
    }
    
    .cta p {
        font-size: 14px !important;
    }
}

.cta h2 {
    color: #e5e7eb;
    font-size: 24px;
    margin-bottom: 10px;
}

.cta p {
    color: #94a3b8;
    margin-bottom: 20px;
    font-size: 15px;
}

/* Ad Containers */
.ad-container {
    background: #0f172a;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 12px;
    margin: 16px auto;
    max-width: 1200px;
    text-align: center;
    min-height: 90px;
}

.ad-label {
    font-size: 10px;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-align: center;
}

.top-banner { margin-top: 12px; }
.mid-page { margin: 20px auto; }
.bottom-banner { margin-bottom: 20px; }

@media (max-width: 768px) {
    .ad-container {
        padding: 10px;
        margin: 12px;
        border-radius: 10px;
        min-height: 60px;
    }
}

/* Affiliate */
.affiliate-section {
    max-width: 1200px;
    margin: 0 auto 24px;
    padding: 0 16px;
}

@media (min-width: 769px) {
    .affiliate-section {
        padding: 0 20px;
        margin-bottom: 32px;
    }
}

.affiliate-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .affiliate-card {
        padding: 20px;
        border-radius: 14px;
    }
    
    .affiliate-card h3 {
        font-size: 17px !important;
    }
    
    .affiliate-card > p {
        font-size: 14px !important;
    }
}

.affiliate-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 250px;
    height: 250px;
    background: #3b82f6;
    opacity: 0.04;
    filter: blur(60px);
    border-radius: 50%;
}

.affiliate-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.affiliate-card h3 {
    color: #f59e0b;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.affiliate-card > p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.affiliate-card strong {
    color: #e5e7eb;
}

.affiliate-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.affiliate-features li {
    color: #cbd5e1;
    padding: 6px 0;
    font-size: 14px;
    position: relative;
    padding-left: 22px;
}

.affiliate-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.affiliate-cta {
    display: block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
    text-align: center;
    margin-bottom: 12px;
}

.affiliate-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
    text-decoration: none;
    color: #fff;
}

.affiliate-cta:active {
    transform: translateY(0) scale(0.98);
}

.affiliate-disclaimer {
    display: block;
    color: #64748b;
    font-size: 11px;
    text-align: center;
}

.sponsored-tag {
    background: #334155;
    color: #94a3b8;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 5px;
}

/* Footer */
.footer {
    background: #020617;
    border-top: 1px solid #1f2937;
    padding: 24px 16px;
    text-align: center;
}

@media (min-width: 769px) {
    .footer {
        padding: 40px 20px;
    }
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-bottom: 16px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    padding: 4px 0;
}

.footer-links a:hover { color: #3b82f6; }

.footer p {
    color: #64748b;
    font-size: 12px;
}

/* Empty State */
.empty-state {
    color: #64748b;
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #10b981;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    pointer-events: none;
}

@media (min-width: 769px) {
    .toast {
        bottom: 30px;
        right: 30px;
        left: auto;
        transform: translateY(20px);
    }
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (min-width: 769px) {
    .toast.show {
        transform: translateY(0);
    }
}

/* Mobile Bottom Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid #1f2937;
    padding: 6px 0 max(env(safe-area-inset-bottom), 8px);
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    height: 64px;
}

.mobile-nav a, .mobile-nav button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #64748b;
    text-decoration: none;
    font-size: 10px;
    background: none;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    transition: color 0.2s;
    min-width: 56px;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav a:active, .mobile-nav button:active {
    color: #3b82f6;
    transform: scale(0.95);
}

.mobile-nav a.active {
    color: #3b82f6;
}

.mobile-nav .nav-icon {
    font-size: 20px;
    line-height: 1;
    display: block;
}

@media (max-width: 768px) {
    .mobile-nav {
        display: flex;
    }
}

/* BMC Float */
.bmc-float {
    position: fixed;
    bottom: 80px;
    left: 16px;
    background: linear-gradient(135deg, #ffdd00, #ffaa00);
    color: #000;
    padding: 10px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 4px 15px rgba(255, 170, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (min-width: 769px) {
    .bmc-float {
        bottom: 24px;
        left: 24px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

.bmc-float:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 170, 0, 0.4);
    text-decoration: none;
    color: #000;
}

.bmc-float:active {
    transform: scale(0.95);
}

.bmc-icon {
    font-size: 16px;
}

.bmc-text {
    display: inline;
}

@media (max-width: 768px) {
    .bmc-float {
        padding: 10px;
    }
    
    .bmc-text {
        display: none;
    }
    
    .bmc-float:hover .bmc-text,
    .bmc-float:active .bmc-text {
        display: inline;
    }
}

/* Support Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 6, 23, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 16px;
}

.modal-overlay.active {
    display: flex;
    animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-box {
    background: #111827;
    border: 1px solid #334155;
    border-radius: 20px;
    padding: 32px 24px;
    max-width: 360px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    transform: scale(0.95);
    animation: modalScaleIn 0.3s ease forwards;
}

@keyframes modalScaleIn {
    to { transform: scale(1); }
}

.modal-icon {
    font-size: 44px;
    margin-bottom: 12px;
}

.modal-box h3 {
    color: #e5e7eb;
    font-size: 22px;
    margin-bottom: 10px;
}

.modal-box > p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.modal-btn {
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all 0.2s;
    display: block;
    width: 100%;
}

.modal-btn.primary {
    background: linear-gradient(135deg, #ffdd00, #ffaa00);
    color: #000;
}

.modal-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 170, 0, 0.25);
}

.modal-btn.secondary {
    background: #1f2937;
    color: #94a3b8;
}

.modal-btn.secondary:hover {
    background: #334155;
    color: #e5e7eb;
}

.modal-checkbox {
    color: #64748b;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.modal-checkbox input {
    accent-color: #3b82f6;
    width: 14px;
    height: 14px;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 80px;
    left: 16px;
    right: 16px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 16px;
    z-index: 998;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

@media (min-width: 769px) {
    #cookie-banner {
        bottom: 24px;
        max-width: 480px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        border-radius: 16px;
    }
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 0.4s ease;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Selection */
::selection {
    background: #3b82f6;
    color: #fff;
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .mail-box {
    flex-direction: row-reverse;
}

[dir="rtl"] .message-item {
    text-align: right;
}

[dir="rtl"] .message-sender,
[dir="rtl"] .message-subject,
[dir="rtl"] .message-body,
[dir="rtl"] .message-time {
    text-align: right;
}

[dir="rtl"] .affiliate-features li {
    padding-left: 0;
    padding-right: 22px;
}

[dir="rtl"] .affiliate-features li::before {
    left: auto;
    right: 0;
}

@media (max-width: 768px) {
    [dir="rtl"] .hero h1,
    [dir="rtl"] .hero > div > p {
        text-align: center;
    }
}

/* ============================================
   BLOG PREVIEW SECTION — Homepage
   ============================================ */

/* Reset link colors in blog preview */
.blog-preview a,
.blog-preview a:visited,
.blog-preview a:hover,
.blog-preview a:active,
.blog-card-link,
.blog-card-link:visited,
.blog-card-link:hover,
.blog-card-link:active {
    text-decoration: none;
    color: inherit;
}

.blog-preview {
    max-width: 1200px;
    margin: 0 auto 48px;
    padding: 0 16px;
    animation: fadeInUp 0.6s ease;
}

@media (min-width: 769px) {
    .blog-preview {
        padding: 0 20px;
        margin-bottom: 60px;
    }
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-header h2 {
    color: #e5e7eb;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: #64748b;
    font-size: 14px;
}

.section-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    transition: all 0.2s ease;
    white-space: nowrap
    
.section-line {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
.section-line::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, #1f2937, transparent);
    margin-bottom: 40px;
}