/* Version 1.0.6 - Logo Icon All Pages */
@import 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 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a0a0f 0%, #13111c 50%, #0a0a0f 100%);
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    animation: fadeIn 1s ease-in;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, hsla(255, 70%, 20%, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, hsla(240, 70%, 20%, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Glowing lights effect - top left */
body::after {
    content: '';
    position: fixed;
    top: -10%;
    left: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, hsla(240, 70%, 50%, 0.3) 0%, hsla(255, 70%, 60%, 0.2) 25%, hsla(270, 70%, 65%, 0.1) 50%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Hero Section - LofySearch Style */
.hero-section {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-left {
    opacity: 0;
    animation: slideInLeft 0.8s ease 0.2s forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.hero-badge svg {
    color: hsl(255, 70%, 60%);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-highlight {
    background: linear-gradient(135deg, hsl(240, 70%, 65%), hsl(255, 70%, 70%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.hero-btn-primary {
    background: linear-gradient(180deg, hsl(255, 70%, 55%) 0%, hsl(240, 70%, 50%) 100%);
    color: #ffffff;
    box-shadow: 0 0 4px 0 rgba(255, 255, 255, 0.07),
                0 -2px 0 0 rgba(0, 0, 0, 0.20) inset,
                0 1px 0 0 rgba(255, 255, 255, 0.40) inset;
}

.hero-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px hsla(255, 70%, 60%, 0.4);
}

.hero-btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Terminal Mockup */
.hero-right {
    opacity: 0;
    animation: slideInRight 0.8s ease 0.4s forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.terminal-mockup {
    background: rgba(10, 15, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red {
    background: #ff5f57;
}

.terminal-dot.yellow {
    background: #ffbd2e;
}

.terminal-dot.green {
    background: #28ca42;
}

.terminal-title {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.terminal-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #22c55e;
}

.terminal-status svg {
    fill: currentColor;
}

.terminal-body {
    padding: 20px;
}

.terminal-search {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
}

.terminal-search input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.875rem;
    font-family: 'Inter', monospace;
    outline: none;
}

.terminal-results {
    margin-bottom: 16px;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.result-time {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.result-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.result-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.result-item svg {
    color: rgba(255, 255, 255, 0.4);
}

.result-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.result-name {
    font-size: 0.8125rem;
    color: #ffffff;
    font-weight: 500;
}

.result-meta {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.5);
}

.result-size, .result-date {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.4);
}

.terminal-preview {
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 12px;
}

.preview-file {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
}

.preview-domain {
    color: #f59e0b;
}

.preview-cookie {
    color: rgba(255, 255, 255, 0.5);
}

.terminal-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    font-size: 0.75rem;
    color: #f59e0b;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .terminal-body {
        padding: 16px;
    }

    .result-item {
        grid-template-columns: auto 1fr;
        gap: 8px;
    }

    .result-size, .result-date {
        grid-column: 2;
        font-size: 0.625rem;
    }
}

/* Navigation - OathNet Style */
.nav-bar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: calc(100% - 48px);
    padding: 8px 8px 8px 24px;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
    transition: all 0.3s ease;
}

.nav-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
}

.nav-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top-color: rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.logo {
    position: relative;
    z-index: 10;
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-links {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 50px;
}

.nav-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

.nav-links a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.login-btn {
    position: relative;
    z-index: 10;
    margin-left: auto;
    padding: 10px 24px;
    background: linear-gradient(180deg, hsl(255, 70%, 55%) 49.18%, hsl(255, 75%, 68%) 113.93%);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 4px 0 rgba(255, 255, 255, 0.07),
                0 -2px 0 0 rgba(0, 0, 0, 0.20) inset,
                0 1px 0 0 rgba(255, 255, 255, 0.40) inset;
}

.login-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* User Menu Dropdown Styles - Global (for pages with user-menu) */
.user-menu {
    position: relative;
    z-index: 1000;
}

.user-bubble {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.user-bubble:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.user-icon {
    color: rgba(139, 92, 246, 0.9);
    flex-shrink: 0;
}

.username-text {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    filter: blur(5px);
    opacity: 0.6;
}

.user-bubble:hover .username-text {
    filter: blur(0px);
    opacity: 1;
    letter-spacing: 0px;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(5, 5, 15, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    min-width: 200px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.dropdown-item svg {
    flex-shrink: 0;
    color: rgba(139, 92, 246, 0.8);
}

.dropdown-item.logout-item {
    color: rgba(239, 68, 68, 0.8);
}

.dropdown-item.logout-item:hover {
    background: rgba(239, 68, 68, 0.1);
    color: rgba(239, 68, 68, 1);
}

.dropdown-item.logout-item svg {
    color: rgba(239, 68, 68, 0.8);
}

/* Profile Dropdown Styles - Global */
.profile-dropdown {
    position: relative;
    z-index: 1000;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.profile-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.profile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.profile-username {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-arrow {
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
}

.profile-trigger.active .dropdown-arrow {
    transform: rotate(180deg);
}

.profile-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(5, 5, 15, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    min-width: 200px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.profile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    cursor: pointer;
}

.profile-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.profile-menu-item svg {
    flex-shrink: 0;
    color: rgba(139, 92, 246, 0.8);
}

.profile-menu-item:last-child {
    color: rgba(239, 68, 68, 0.8);
}

.profile-menu-item:last-child:hover {
    background: rgba(239, 68, 68, 0.1);
    color: rgba(239, 68, 68, 1);
}

.profile-menu-item:last-child svg {
    color: rgba(239, 68, 68, 0.8);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal.closing {
    animation: fadeOut 0.3s ease;
}

.modal-content {
    background: rgba(10, 10, 15, 0.98);
    margin: 10% auto;
    padding: 50px 40px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    width: 90%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    animation: slideDown 0.4s ease;
}

.modal.closing .modal-content {
    animation: slideUp 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-30px);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.close {
    color: #ffffff;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

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

.form-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
}

.submit-btn:active {
    transform: scale(0.98);
}

.error-msg {
    color: #ff5555;
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    min-height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .cat-icon {
        width: 200px;
        height: 200px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .modal-content {
        margin: 15% auto;
        padding: 40px 25px;
        max-width: 90%;
    }

    .modal-content h2 {
        font-size: 1.8rem;
    }

    .form-group input {
        padding: 12px 15px;
    }

    .submit-btn {
        padding: 12px;
    }
}

/* Global Coverage Section */
.global-section {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.global-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.global-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.global-text {
    text-align: left;
}

.global-pretitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.global-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.global-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 500px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.globe-container {
    position: relative;
    min-height: 500px;
    width: 100%;
    cursor: grab;
}

.globe-container:active {
    cursor: grabbing;
}

/* Globe SVG Styles */
.globe-path {
    fill: rgba(255, 255, 255, 0.1);
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 0.5px;
    transition: fill 0.3s ease;
}

.globe-water {
    fill: rgba(0, 0, 0, 0.3);
}

.pin-group .marker-pin {
    fill: #ffffff;
    stroke: rgba(0, 0, 0, 0.5);
    stroke-width: 1.5px;
    transition: fill 0.2s ease;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.pin-group:hover .marker-pin {
    fill: rgba(255, 255, 255, 1);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
}

.pin-group .marker-label {
    fill: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.globe-tooltip {
    position: fixed;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 0.9rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-width: 220px;
}

.globe-tooltip strong {
    color: #ffffff;
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.globe-tooltip div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.globe-tooltip div svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.6);
    stroke: currentColor;
}

/* Responsive */
@media (max-width: 992px) {
    .global-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .global-text {
        text-align: center;
    }

    .global-title {
        font-size: 2rem;
    }

    .global-description {
        margin: 0 auto;
    }

    .globe-container {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .global-section {
        margin: 60px auto;
        padding: 0 20px;
    }

    .global-title {
        font-size: 1.8rem;
    }

    .global-description {
        font-size: 1rem;
    }

    .globe-container {
        min-height: 350px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px 100px 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.why-choose-us.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 60px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.feature-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

/* FAQ Section */
.faq-section-container {
    position: relative;
    padding: 128px 0;
    overflow: hidden;
}

.faq-border-container {
    border-radius: 16px;
    border: 2px solid #000000;
    background: linear-gradient(to bottom, #111111, #0a0a0a);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.faq-header-border {
    border-bottom: 2px solid #000000;
}

.faq-title-text {
    color: #ffffff !important;
}

.faq-item {
    border-bottom: 1px solid #1a1a1a;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-arrow {
    color: #9ca3af;
}

.faq-question {
    color: #e5e7eb;
}

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

.text-center {
    text-align: center;
}

.mb-14 {
    margin-bottom: 56px;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.font-bold {
    font-weight: 700;
}

.text-white {
    color: #ffffff;
}

.mb-4 {
    margin-bottom: 16px;
}

.text-gray-500 {
    color: #6b7280;
}

.max-w-2xl {
    max-width: 672px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.w-full {
    width: 100%;
}

.rounded-2xl {
    border-radius: 16px;
}

.border {
    border-width: 1px;
}

.overflow-hidden {
    overflow: hidden;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-black\/40 {
    --tw-shadow-color: rgba(0, 0, 0, 0.4);
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 8px;
}

.gap-4 {
    gap: 16px;
}

.px-5 {
    padding-left: 20px;
    padding-right: 20px;
}

.px-6 {
    padding-left: 24px;
    padding-right: 24px;
}

.py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
}

.py-5 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.pb-5 {
    padding-bottom: 20px;
}

.w-3 {
    width: 12px;
}

.h-3 {
    height: 12px;
}

.rounded-full {
    border-radius: 9999px;
}

.bg-\[\#ff5f57\] {
    background-color: #ff5f57;
}

.bg-\[\#febc2e\] {
    background-color: #febc2e;
}

.bg-\[\#28c840\] {
    background-color: #28c840;
}

.text-xs {
    font-size: 12px;
    line-height: 16px;
}

.text-gray-600 {
    color: #4b5563;
}

.font-medium {
    font-weight: 500;
}

details.group summary {
    cursor: pointer;
    user-select: none;
}

details.group[open] summary .w-7 {
    transform: rotate(90deg);
}

.w-7 {
    width: 28px;
}

.h-7 {
    height: 28px;
}

.rounded-lg {
    border-radius: 8px;
}

.text-sm {
    font-size: 14px;
    line-height: 20px;
}

.shrink-0 {
    flex-shrink: 0;
}

.bg-white\/\[0\.03\] {
    background-color: rgba(255, 255, 255, 0.03);
}

.bg-white\/\[0\.02\] {
    background-color: rgba(255, 255, 255, 0.02);
}

.bg-white\/\[0\.06\] {
    background-color: rgba(255, 255, 255, 0.06);
}

.bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.group:hover summary .bg-white\/\[0\.03\] {
    background-color: rgba(255, 255, 255, 0.06);
}

.group[open] summary .bg-white\/\[0\.03\] {
    background-color: rgba(255, 255, 255, 0.1);
}

.group[open] summary .text-gray-600 {
    color: #ffffff;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
}

.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-150 {
    transition-duration: 150ms;
}

.duration-200 {
    transition-duration: 200ms;
}

.select-none {
    user-select: none;
}

.flex-1 {
    flex: 1 1 0%;
}

.text-\[15px\] {
    font-size: 15px;
}

.text-gray-400 {
    color: #9ca3af;
}

.group:hover summary .text-gray-400 {
    color: #d1d5db;
}

.group[open] summary .text-gray-400 {
    color: #ffffff;
}

.ml-11 {
    margin-left: 44px;
}

.pr-8 {
    padding-right: 32px;
}

.text-\[14px\] {
    font-size: 14px;
}

.leading-relaxed {
    line-height: 1.625;
}

.list-none {
    list-style-type: none;
}

summary::-webkit-details-marker {
    display: none;
}

details.group summary:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

/* Footer */
.footer {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding: 40px 40px 30px 40px;
    margin-top: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .why-choose-us {
        padding: 0 20px 80px 20px;
        margin: 60px auto;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer {
        padding: 30px 20px 20px 20px;
    }

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

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
}

/* Custom Scrollbar - Purple */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 15, 0.5);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #a855f7 0%, #8b5cf6 100%);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #8b5cf6 rgba(10, 10, 15, 0.5);
}

/* ========== NEW HERO SECTION ========== */
.new-hero-section {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 120px auto 60px;
    padding: 0 40px;
}

.new-hero-content {
    text-align: center;
    margin-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.2);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: #a78bfa;
}

.new-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    margin-top: 16px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    letter-spacing: -0.02em;
}

.animate-text {
    background: linear-gradient(to right, #ffffff 20%, #8b5cf6 40%, #a78bfa 60%, #ffffff 80%);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.new-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons-new {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.btn-see-plans {
    padding: 16px 40px;
    background: linear-gradient(135deg, hsl(240, 70%, 55%), hsl(255, 70%, 60%));
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px hsla(255, 70%, 60%, 0.4);
}

.btn-see-plans:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px hsla(255, 70%, 60%, 0.6);
}

.btn-discord {
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-discord:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Infinite Logo Scroll */
.logo-scroll-container {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 12.5%,
        black 87.5%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 12.5%,
        black 87.5%,
        transparent 100%
    );
}

.logo-scroll-track {
    display: flex;
    gap: 100px;
    animation: scroll-logos 20s linear infinite;
    will-change: transform;
}

.logo-item {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-120px * 5 - 500px));
    }
}

/* ========== DASHBOARD TEASER SECTION ========== */
.dashboard-teaser {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 100px auto 80px;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.db-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #b4b4b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.db-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.db-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 12px;
}

.db-features li svg {
    color: #8B5CF6;
    flex-shrink: 0;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: 1.5px solid rgba(139, 92, 246, 0.5);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.8);
    transform: translateY(-2px);
}

.db-visual {
    position: relative;
    width: 100%;
    perspective: 1000px;
}

.db-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease;
}

.db-visual:hover .db-img {
    transform: scale(1.02);
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: rgba(22, 23, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.fc-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.fc-2 {
    bottom: 30px;
    left: -30px;
    animation-delay: 1.5s;
}

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

.fc-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.fc-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fc-text span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

.fc-text small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.fc-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-top-color: #8B5CF6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive for Dashboard Teaser */
@media (max-width: 1024px) {
    .dashboard-teaser {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 80px auto 60px;
    }

    .db-text h2 {
        font-size: 2.5rem;
    }

    .db-text {
        text-align: center;
    }

    .db-features {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .dashboard-teaser {
        margin: 60px auto 40px;
        padding: 0 20px;
    }

    .db-text h2 {
        font-size: 2rem;
    }

    .db-text p {
        font-size: 1rem;
    }

    .float-card {
        padding: 12px 16px;
    }

    .fc-1 {
        right: -10px;
        top: 10px;
    }

    .fc-2 {
        left: -10px;
        bottom: 20px;
    }
}

/* Detection Cards Container */
.detection-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.detection-card {
    background: rgba(20, 22, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.detection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        hsla(255, 70%, 60%, 0.5),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.detection-card:hover::before {
    opacity: 1;
}

.detection-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.detection-card-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.detection-card-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ========== ACCOUNT BREACH DETECTION ========== */
.platform-showcase-wrapper {
    position: relative;
    min-height: 280px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
}

.platform-card-small {
    background: rgb(22, 23, 26);
    border: 0.8px solid rgb(35, 35, 36);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    min-width: 170px;
    max-width: 170px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: absolute;
    opacity: 0.9;
}

/* Staircase Layout - Diagonal positioning */
.platform-card-small[data-platform="discord"] {
    top: 0;
    left: 0;
    z-index: 1;
}

.platform-card-small[data-platform="instagram"] {
    top: 70px;
    left: 90px;
    z-index: 2;
}

.platform-card-small[data-platform="youtube"] {
    top: 140px;
    left: 180px;
    z-index: 1;
}

/* Hover effects - All cards are hoverable */
.platform-card-small:hover {
    opacity: 1 !important;
    transform: translateY(-6px) scale(1.03) !important;
    z-index: 10 !important;
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.3) !important;
}

.platform-card-small[data-platform="discord"]:hover {
    border-color: rgba(88, 101, 242, 0.7) !important;
    box-shadow: 0 16px 40px rgba(88, 101, 242, 0.4) !important;
}

.platform-card-small[data-platform="instagram"]:hover {
    border-color: rgba(225, 48, 108, 0.7) !important;
    box-shadow: 0 16px 40px rgba(225, 48, 108, 0.4) !important;
}

.platform-card-small[data-platform="youtube"]:hover {
    border-color: rgba(255, 0, 0, 0.7) !important;
    box-shadow: 0 16px 40px rgba(255, 0, 0, 0.4) !important;
}

.platform-avatar {
    width: 44px;
    height: 44px;
    background: rgb(61, 64, 67);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.platform-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.platform-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    flex: 1;
}

.platform-name-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.platform-name {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: left;
}

.verified-badge {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* ========== REAL-TIME LEAK DETECTION ========== */
.leak-viz-container {
    position: relative;
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.leak-viz-container:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Top Cards Container */
.leak-cards-top {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.leak-viz-container:hover .leak-cards-top {
    transform: translateY(-8px);
}

.leak-cfx-card,
.leak-user-card {
    flex: 1;
    background: rgba(22, 23, 26, 0.8);
    border: 0.8px solid rgb(35, 35, 36);
    border-radius: 12px;
    padding: 12px 14px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.leak-cfx-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cfx-logo {
    width: 40px;
    height: 40px;
    background: rgb(61, 64, 67);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cfx-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leak-cfx-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.leak-brand {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
}

.leak-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6875rem;
}

/* Leaked User Card */
.leak-user-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.leak-user-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.leak-user-icon {
    width: 28px;
    height: 28px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.leak-user-icon svg {
    width: 16px;
    height: 16px;
    color: rgba(239, 68, 68, 0.9);
}

.leak-user-title {
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 600;
}

.leak-user-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    font-weight: 700;
}

/* Wave Animation */
.leak-wave-wrapper {
    width: 100%;
    height: 60px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.leak-viz-container:hover .leak-wave-wrapper {
    transform: scaleY(1.1);
}

.wave-animation {
    width: 100%;
    height: 100%;
}

.wave-path {
    fill: none;
    stroke: hsla(255, 70%, 60%, 0.5);
    stroke-width: 2;
    animation: wave-flow 3s ease-in-out infinite;
}

@keyframes wave-flow {
    0%, 100% {
        d: path("M0,30 Q25,20 50,30 T100,30 T150,30 T200,30");
    }
    50% {
        d: path("M0,30 Q25,40 50,30 T100,30 T150,30 T200,30");
    }
}

/* Data Grid Widget */
.leak-data-widget {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.leak-viz-container:hover .leak-data-widget {
    transform: translateY(8px);
    border-color: rgba(255, 255, 255, 0.1);
}

.leak-data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.leak-data-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.leak-data-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

.data-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.leak-data-item svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.leak-data-item:hover svg {
    color: hsl(255, 70%, 60%);
}

/* Gradient overlay on hover */
.leak-viz-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(139, 92, 246, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.leak-viz-container:hover::after {
    opacity: 1;
}

/* ========== EASY RESULTS ========== */
.easy-results-widget {
    position: relative;
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.easy-results-widget:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Data Grid */
.results-data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.results-data-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: rgba(17, 19, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.results-data-item:hover {
    background: rgba(17, 19, 26, 1);
    border-color: rgba(161, 184, 254, 0.3);
    transform: translateY(-2px);
}

.results-data-item svg {
    width: 16px;
    height: 16px;
    fill: rgb(161, 184, 254);
    flex-shrink: 0;
}

.results-data-item span {
    font-size: 0.8125rem;
    color: rgba(115, 116, 120, 1);
    font-weight: 400;
    text-align: center;
}

/* Platform Cards */
.results-platforms {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.results-platform-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(22, 23, 26, 0.8);
    border: 0.8px solid rgb(35, 35, 36);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.results-platform-card:hover {
    background: rgba(22, 23, 26, 1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.results-platform-logo {
    width: 28px;
    height: 28px;
    background: rgb(61, 64, 67);
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-platform-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.results-platform-card span {
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 500;
}

.results-verified-badge {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .detection-cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .results-data-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .results-data-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-platforms {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Original Responsive */
@media (max-width: 1024px) {
    .detection-cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .new-hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .new-hero-section {
        margin: 80px auto 40px;
        padding: 0 20px;
    }

    .new-hero-title {
        font-size: 2.5rem;
    }

    .new-hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons-new {
        flex-direction: column;
        gap: 12px;
    }

    .btn-see-plans,
    .btn-discord {
        width: 100%;
        text-align: center;
    }

    .logo-item {
        width: 80px;
        height: 60px;
    }

    .platform-showcase {
        height: 280px;
    }

    .platform-card {
        min-width: 120px;
        padding: 12px;
    }

    .leak-data-grid {
        grid-template-columns: 1fr;
    }
}

/* Features Section - Original Design */
.features-section {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.features-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.features-badge svg {
    color: hsl(255, 70%, 60%);
}

.features-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.features-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Features List (Left Side) */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    padding: 24px 0;
    border-left: 3px solid transparent;
    padding-left: 24px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-left-color: hsl(255, 70%, 60%);
}

.feature-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-item-icon {
    background: rgba(139, 92, 246, 0.15);
    border-color: hsl(255, 70%, 60%);
    box-shadow: 0 0 20px hsla(255, 70%, 60%, 0.3);
}

.feature-item-icon svg {
    color: hsl(255, 70%, 60%);
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Search Demo (Right Side) */
.search-demo {
    position: relative;
    opacity: 0;
    animation: slideInRight 0.8s ease 0.4s forwards;
}

.search-demo-card {
    background: rgba(10, 15, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    padding: 32px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 24px;
    min-height: 56px;
}

.search-input-wrapper svg {
    color: hsl(255, 70%, 60%);
    flex-shrink: 0;
}

#searchText {
    flex: 1;
    font-size: 0.9375rem;
    color: #ffffff;
    font-family: 'Inter', monospace;
}

.search-cursor {
    display: inline-block;
    width: 2px;
    height: 20px;
    background: hsl(255, 70%, 60%);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.search-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: hsl(255, 70%, 60%);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.search-spinner.active {
    display: block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.result-item-demo {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.4s ease forwards;
}

.result-item-demo:nth-child(1) { animation-delay: 0.1s; }
.result-item-demo:nth-child(2) { animation-delay: 0.2s; }
.result-item-demo:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-icon-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    flex-shrink: 0;
}

.result-icon-demo svg {
    color: hsl(255, 70%, 60%);
}

.result-details-demo {
    flex: 1;
}

.result-title-demo {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 4px;
}

.result-subtitle-demo {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.result-badge-demo {
    padding: 4px 12px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        margin: 60px auto;
        padding: 0 20px;
    }

    .features-main-title {
        font-size: 2rem;
    }

    .features-subtitle {
        font-size: 1rem;
    }

    .feature-item h3 {
        font-size: 1.25rem;
    }

    .search-demo-card {
        padding: 24px;
    }
}

/* ========== NEW WHY CHOOSE US SECTION WITH TERMINAL DEMO ========== */
.features-section-new {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.features-section-new.visible {
    opacity: 1;
    transform: translateY(0);
}

.features-container-new {
    width: 100%;
}

.features-header-new {
    text-align: center;
    margin-bottom: 60px;
}

.features-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.features-title-new {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.features-subtitle-new {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Layout - Left/Right Split */
.features-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Side - Feature Cards in 2x2 Grid */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-box-card {
    background: rgba(20, 22, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        hsla(255, 70%, 60%, 0.5),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box-card:hover::before {
    opacity: 1;
}

.feature-box-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-box-icon {
    width: 48px;
    height: 48px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.feature-box-card:hover .feature-box-icon {
    background: rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 20px hsla(255, 70%, 60%, 0.3);
}

.feature-box-icon svg {
    width: 24px;
    height: 24px;
    color: hsl(255, 70%, 60%);
}

.feature-box-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.feature-box-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Right Side - IntelX Terminal Demo */
.intelx-terminal-demo {
    position: relative;
}

.terminal-window {
    background: rgba(10, 15, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.terminal-window:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

/* Terminal Header - macOS Style */
.terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red {
    background: #ff5f57;
}

.terminal-dot.yellow {
    background: #ffbd2e;
}

.terminal-dot.green {
    background: #28ca42;
}

.terminal-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.terminal-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #22c55e;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 4px rgba(34, 197, 94, 0);
    }
}

.status-text {
    font-weight: 500;
}

/* Terminal Body */
.terminal-body {
    padding: 24px;
}

/* Terminal Search */
.terminal-search {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
}

.terminal-search .search-icon {
    width: 16px;
    height: 16px;
    color: hsl(255, 70%, 60%);
    flex-shrink: 0;
}

.terminal-search-text {
    flex: 1;
    color: #ffffff;
    font-size: 0.875rem;
    font-family: 'Inter', monospace;
}

.search-checkmark {
    width: 20px;
    height: 20px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-checkmark span {
    color: #22c55e;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Terminal Results Header */
.terminal-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    margin-bottom: 12px;
}

.results-found {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.results-found span:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 50%;
    color: #22c55e;
    font-size: 0.6875rem;
    font-weight: 700;
}

.results-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Terminal Files List */
.terminal-files {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.terminal-file {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.terminal-file:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.terminal-file.active {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.file-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    flex-shrink: 0;
}

.terminal-file.active .file-icon {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.file-icon svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.terminal-file.active .file-icon svg {
    color: hsl(255, 70%, 60%);
}

.file-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.file-name {
    font-size: 0.8125rem;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
}

.file-type {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.file-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.file-size {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.file-date {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* Terminal Preview */
.terminal-preview {
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 12px;
    min-height: 120px;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.preview-header svg {
    width: 14px;
    height: 14px;
    color: hsl(255, 70%, 60%);
}

.preview-content {
    font-family: 'Courier New', monospace;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    white-space: pre-wrap;
    margin: 0;
}

/* Terminal Warning */
.terminal-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    font-size: 0.75rem;
    color: #f59e0b;
}

.terminal-warning span:first-child {
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-title-new {
        font-size: 2.5rem;
    }

    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-section-new {
        margin: 60px auto;
        padding: 0 20px;
    }

    .features-title-new {
        font-size: 2rem;
    }

    .features-subtitle-new {
        font-size: 1rem;
    }

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

    .terminal-body {
        padding: 16px;
    }

    .terminal-file {
        grid-template-columns: auto 1fr;
        gap: 8px;
    }

    .file-meta {
        grid-column: 2;
        align-items: flex-start;
        flex-direction: row;
        gap: 8px;
    }
}
