/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-gray-900: #111827;
    --color-gray-800: #1f2937;
    --color-gray-700: #374151;
    --color-gray-600: #4b5563;
    --color-gray-500: #6b7280;
    --color-gray-400: #9ca3af;
    --color-gray-300: #d1d5db;
    --color-gray-200: #e5e7eb;
    --color-gray-100: #f3f4f6;
    
    --color-blue-600: #2563eb;
    --color-blue-500: #3b82f6;
    --color-blue-400: #60a5fa;
    
    --color-purple-600: #9333ea;
    --color-purple-500: #a855f7;
    --color-purple-400: #c084fc;
    
    --color-green-600: #16a34a;
    --color-green-500: #22c55e;
    --color-green-400: #4ade80;
    
    --color-amber-600: #d97706;
    --color-amber-500: #f59e0b;
    --color-amber-400: #fbbf24;
    
    --color-rose-600: #e11d48;
    --color-rose-500: #f43f5e;
    --color-rose-400: #fb7185;
    
    --color-indigo-600: #4f46e5;
    --color-indigo-500: #6366f1;
    --color-indigo-400: #818cf8;
    
    --color-pink-600: #db2777;
    --color-pink-500: #ec4899;
    --color-pink-400: #f472b6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background-color: var(--color-gray-900);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Background Effects */
.background-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.05), transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(124, 58, 237, 0.05), transparent 50%);
}

.background-effects::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(50, 50, 50, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(50, 50, 50, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to bottom, transparent, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black, transparent);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(55, 65, 81, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    padding: 0 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--color-blue-500), var(--color-blue-600));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.brand-highlight {
    color: var(--color-blue-500);
    font-weight: 900;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    position: fixed;
    right: 1.25rem;
    top: 1.25rem;
    z-index: 1100;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 1.5rem;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    color: var(--color-gray-200);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background: var(--color-gray-800);
    color: white;
}

.nav-icon {
    width: 1.125rem;
    height: 1.125rem;
    stroke: currentColor;
}

.nav-icon svg {
    width: 100%;
    height: 100%;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-gray-900);
    border: 1px solid var(--color-gray-800);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    min-width: 20rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    padding: 0.75rem;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: var(--color-gray-200);
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(55, 65, 81, 0.5);
    color: white;
}

.dropdown-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    stroke: currentColor;
}

.dropdown-icon svg {
    width: 100%;
    height: 100%;
}

.dropdown-icon-img {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.25rem;
    margin-top: 0.125rem;
}

.dropdown-title {
    font-weight: 500;
    color: var(--color-gray-200);
}

.dropdown-desc {
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

.dropdown-item:hover .dropdown-title {
    color: white;
}

.dropdown-item:hover .dropdown-icon {
    color: var(--color-blue-400);
}

/* Auth Buttons */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--color-gray-800);
}

.auth-link {
    padding: 0.5rem 1rem;
    color: var(--color-gray-200);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.auth-link:hover {
    background: var(--color-gray-800);
    color: white;
}

.auth-button {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--color-blue-600), var(--color-blue-700));
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-weight: 500;
}

.auth-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(4px);
}

.mobile-nav-content {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    max-width: 24rem;
    background: var(--color-gray-900);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding-top: 5rem;
}

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

.mobile-nav-items {
    flex: 1;
    padding: 1.5rem 1rem;
    space-y: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    color: var(--color-gray-200);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--color-gray-800);
    color: white;
}

.mobile-nav-section {
    border-bottom: 1px solid var(--color-gray-800);
    margin-bottom: 0.5rem;
}

.mobile-nav-section:last-child {
    border-bottom: none;
}

.mobile-nav-section-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
    background: none;
    border: none;
    color: var(--color-gray-200);
    text-align: left;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.mobile-nav-section-btn:hover {
    background: rgba(55, 65, 81, 0.5);
}

.mobile-nav-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-nav-arrow {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.mobile-nav-section.active .mobile-nav-arrow {
    transform: rotate(90deg);
}

.mobile-nav-submenu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(55, 65, 81, 0.3);
    margin: 0 1rem;
    border-radius: 0.5rem;
}

.mobile-nav-section.active .mobile-nav-submenu {
    max-height: 62.5rem;
    opacity: 1;
    padding: 0.5rem;
}

.mobile-nav-sublink {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--color-gray-200);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
}

.mobile-nav-sublink:hover {
    background: rgba(55, 65, 81, 0.5);
}

.mobile-nav-subdesc {
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

.mobile-nav-auth {
    padding: 1rem;
    border-top: 1px solid var(--color-gray-800);
}

.mobile-auth-link,
.mobile-auth-button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    text-align: center;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    margin-bottom: 0.75rem;
}

.mobile-auth-link {
    color: var(--color-gray-200);
    border: 1px solid transparent;
}

.mobile-auth-link:hover {
    background: var(--color-gray-800);
    color: white;
}

.mobile-auth-button {
    background: linear-gradient(135deg, var(--color-blue-600), var(--color-blue-700));
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.mobile-auth-button:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    margin-bottom: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--color-gray-400);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(55, 65, 81, 0.3);
    color: var(--color-gray-200);
}

.trust-icon {
    font-size: 1rem;
}

.hero-content {
    margin: 2rem 0 3rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-highlight {
    background: linear-gradient(135deg, var(--color-blue-400), var(--color-blue-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.hero-description p {
    font-size: 1.125rem;
    color: var(--color-gray-400);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.dynamic-feature {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    height: 2rem;
    font-size: 0.875rem;
    color: var(--color-gray-300);
    transition: opacity 0.5s ease;
}

.feature-icon {
    color: var(--color-blue-400);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 5rem;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-blue-600), var(--color-blue-700));
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%) skewX(-30deg);
    transition: transform 0.5s ease;
}

.btn-primary:hover::before {
    transform: translateX(100%) skewX(-30deg);
}

.btn-secondary {
    border: 2px solid rgba(37, 99, 235, 0.5);
    color: var(--color-gray-200);
}

.btn-secondary:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--color-blue-600);
    transform: scale(1.05);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon,
.btn-secondary:hover .btn-icon {
    transform: translateX(2px);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.5), rgba(55, 65, 81, 0.3));
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    backdrop-filter: blur(12px);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(2rem);
    animation: fadeInUp 0.6s ease forwards;
}

.stat-card:hover {
    border-color: rgba(55, 65, 81, 0.7);
    transform: translateY(-0.25rem);
}

.stat-icon {
    position: relative;
    margin-bottom: 1rem;
}

.stat-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    filter: blur(0.75rem);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon::before {
    background: rgba(59, 130, 246, 0.3);
}

.stat-icon span {
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon span {
    transform: scale(1.1);
}

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

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    margin-bottom: 0.25rem;
}

.stat-metric {
    font-size: 0.75rem;
    color: var(--color-blue-400);
    font-weight: 600;
}

/* Features Section */
.features-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-header span {
    display: block;
}

.section-highlight {
    background: linear-gradient(135deg, var(--color-blue-400), var(--color-blue-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.5), rgba(55, 65, 81, 0.3));
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(2rem);
}
.feature-card[data-feature="0"] { animation-delay: 0.1s; }
.feature-card[data-feature="1"] { animation-delay: 0.2s; }
.feature-card[data-feature="2"] { animation-delay: 0.3s; }
.feature-card[data-feature="3"] { animation-delay: 0.4s; }
.feature-card[data-feature="4"] { animation-delay: 0.5s; }
.feature-card[data-feature="5"] { animation-delay: 0.6s; }

.feature-card.visible {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    position: relative;
    display: inline-flex;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-icon span {
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon span {
    transform: scale(1.1) rotate(6deg);
}

/* Theme Colors */
.blue-theme {
    background: rgba(59, 130, 246, 0.1);
}

.purple-theme {
    background: rgba(147, 51, 234, 0.1);
}

.amber-theme {
    background: rgba(251, 191, 36, 0.1);
}

.rose-theme {
    background: rgba(244, 63, 94, 0.1);
}

.indigo-theme {
    background: rgba(99, 102, 241, 0.1);
}

.pink-theme {
    background: rgba(236, 72, 153, 0.1);
}

.feature-card:hover .blue-theme {
    border-color: rgba(59, 130, 246, 0.5);
}

.feature-card:hover .purple-theme {
    border-color: rgba(147, 51, 234, 0.5);
}

.feature-card:hover .amber-theme {
    border-color: rgba(251, 191, 36, 0.5);
}

.feature-card:hover .rose-theme {
    border-color: rgba(244, 63, 94, 0.5);
}

.feature-card:hover .indigo-theme {
    border-color: rgba(99, 102, 241, 0.5);
}

.feature-card:hover .pink-theme {
    border-color: rgba(236, 72, 153, 0.5);
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-content h3 {
    color: var(--color-blue-400);
}

.feature-content p {
    color: var(--color-gray-400);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-content p {
    color: var(--color-gray-300);
}

.feature-benefits {
    list-style: none;
    padding-top: 1rem;
    border-top: 1px solid rgba(55, 65, 81, 0.5);
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-gray-400);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-benefits li {
    color: var(--color-gray-300);
}

.benefit-icon {
    color: var(--color-blue-400);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.feature-card:hover .benefit-icon {
    transform: scale(1.1);
}

/* Panel Section */
.panel-section {
    position: relative;
    padding: 6rem 0;
    background: rgba(17, 24, 39, 0.5);
    overflow: hidden;
}

.panel-preview {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.5), rgba(55, 65, 81, 0.3));
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(12px);
}

.panel-interface {
    display: flex;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--color-gray-800);
}

.panel-sidebar {
    width: 14rem;
    background: rgba(31, 41, 55, 0.3);
    border-right: 1px solid rgba(55, 65, 81, 0.5);
    padding: 0.75rem;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: 0.5rem;
    color: var(--color-gray-400);
    font-size: 0.875rem;
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
}

.sidebar-item:hover,
.sidebar-item.active {
    background: var(--color-blue-600);
    color: white;
}

.sidebar-icon {
    font-size: 1.25rem;
}

.panel-main {
    flex: 1;
    padding: 1rem;
}

.panel-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.panel-stat {
    background: rgba(55, 65, 81, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.panel-stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    margin-bottom: 0.25rem;
}

.panel-stat-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.panel-stat-bar {
    height: 0.25rem;
    background: rgba(55, 65, 81, 0.5);
    border-radius: 0.125rem;
    overflow: hidden;
}

.panel-stat-fill {
    height: 100%;
    border-radius: 0.125rem;
    transition: width 0.3s ease;
}

.panel-stat-fill.blue { background: var(--color-blue-500); }
.panel-stat-fill.purple { background: var(--color-purple-500); }
.panel-stat-fill.green { background: var(--color-green-500); }
.panel-stat-fill.yellow { background: var(--color-amber-500); }

.panel-console {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.5rem;
    overflow: hidden;
}

.console-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(31, 41, 55, 0.5);
    border-bottom: 1px solid rgba(55, 65, 81, 0.5);
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

.console-controls {
    display: flex;
    gap: 0.5rem;
}

.console-btn {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.console-btn.red { background: #ff5f56; }
.console-btn.yellow { background: #ffbd2e; }
.console-btn.green { background: #27ca3f; }

.console-body {
    padding: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    max-height: 12rem;
    overflow: hidden;
}

.console-line {
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.5rem;
}

.console-prompt {
    color: var(--color-blue-400);
    margin-right: 0.5rem;
}

.console-text {
    color: var(--color-gray-300);
}

.console-text.blue { color: var(--color-blue-400); }
.console-text.yellow { color: var(--color-amber-400); }
.console-text.green { color: var(--color-green-400); }

.panel-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.panel-feature {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.5), rgba(55, 65, 81, 0.3));
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.panel-feature:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.panel-feature-icon {
    display: inline-flex;
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.panel-feature:hover .panel-feature-icon {
    transform: scale(1.1);
}

.panel-feature-icon span {
    font-size: 1.5rem;
}

.panel-feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.panel-feature:hover h3 {
    color: var(--color-blue-400);
}

.panel-feature p {
    color: var(--color-gray-400);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.panel-feature:hover p {
    color: var(--color-gray-300);
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.5), rgba(55, 65, 81, 0.3));
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: var(--color-gray-800);
    border-color: rgba(55, 65, 81, 0.7);
}

.testimonial-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.testimonial-verified {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--color-green-400);
}

.verified-icon {
    font-size: 1rem;
}

.testimonial-quote {
    color: var(--color-gray-300);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 2rem;
    color: var(--color-gray-600);
    position: absolute;
    left: -1rem;
    top: -0.5rem;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author h4 {
    font-weight: 500;
    color: white;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-author h4 {
    color: var(--color-blue-400);
}

.testimonial-author p {
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

.testimonial-rating {
    display: flex;
    gap: 0.125rem;
}

.star {
    color: var(--color-amber-400);
    font-size: 1rem;
}

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

.testimonials-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--color-blue-400);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.testimonials-link a:hover {
    color: var(--color-blue-300);
    background: rgba(59, 130, 246, 0.1);
}

.link-arrow {
    transition: transform 0.2s ease;
}

.testimonials-link a:hover .link-arrow {
    transform: translateX(0.25rem);
}

/* FAQ Section */
.faq-section {
    position: relative;
    padding: 3rem 0 5rem;
    overflow: hidden;
}

.faq-search {
    max-width: 56rem;
    margin: 0 auto 2rem;
    padding: 0 0.5rem;
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gray-400);
    font-size: 1.25rem;
}

.search-input {
    width: 100%;
    background: rgba(55, 65, 81, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem 0.75rem 3rem;
    color: var(--color-gray-200);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.search-input::placeholder {
    color: var(--color-gray-500);
}

.search-input:focus {
    outline: none;
    border-color: var(--color-blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.popular-searches {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.popular-label {
    color: var(--color-gray-500);
    margin-right: 0.5rem;
}

.popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.popular-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(55, 65, 81, 0.5);
    color: var(--color-gray-400);
    border: none;
    border-radius: 9999px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.popular-tag:hover {
    background: var(--color-gray-800);
    color: var(--color-blue-400);
}

.faq-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    max-width: 64rem;
    margin: 0 auto 3rem;
    padding: 0 0.5rem;
}

.faq-tab {
    position: relative;
    padding: 1rem;
    background: rgba(55, 65, 81, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    color: var(--color-gray-400);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-tab:hover,
.faq-tab.active {
    background: var(--color-blue-600);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.faq-tab .tab-icon {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.faq-tab:hover .tab-icon {
    transform: scale(1.1);
}

.tab-content {
    text-align: left;
}

.tab-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.tab-desc {
    font-size: 0.875rem;
    opacity: 0.75;
    line-height: 1.4;
}

.faq-content {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.faq-item {
    margin-bottom: 0.75rem;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: rgba(55, 65, 81, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.5rem;
    color: var(--color-gray-200);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover,
.faq-item.active .faq-question {
    background: var(--color-gray-800);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-icon {
    color: var(--color-blue-400);
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.faq-question:hover .faq-icon {
    transform: scale(1.1);
}

.faq-text {
    flex: 1;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-question:hover .faq-text {
    color: white;
}

.faq-tag {
    padding: 0.125rem 0.5rem;
    background: rgba(59, 130, 246, 0.2);
    color: var(--color-blue-400);
    border-radius: 9999px;
    font-size: 0.75rem;
}

.faq-arrow {
    color: var(--color-gray-400);
    transition: all 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--color-blue-400);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 31.25rem;
    opacity: 1;
}

.faq-answer > * {
    padding: 1rem 1.5rem;
    background: rgba(55, 65, 81, 0.3);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
}

.faq-answer p {
    color: var(--color-gray-300);
    line-height: 1.6;
}

.faq-features {
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-gray-300);
    font-size: 0.875rem;
}

.feature-bullet {
    color: var(--color-blue-400);
    font-size: 0.75rem;
}

.faq-related {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(55, 65, 81, 0.5);
}

.related-label {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    margin-bottom: 0.5rem;
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.related-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background: rgba(55, 65, 81, 0.5);
    color: var(--color-gray-300);
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.related-link:hover {
    background: var(--color-gray-800);
    color: var(--color-blue-400);
}

.external-icon {
    font-size: 0.75rem;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 0 0.5rem;
}

.cta-content {
    max-width: 36rem;
    margin: 0 auto 2rem;
}

.cta-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: var(--color-gray-400);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: var(--color-blue-600);
    color: white;
}

.cta-btn.primary:hover {
    background: var(--color-blue-700);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.cta-btn.secondary {
    border: 1px solid rgba(37, 99, 235, 0.5);
    color: var(--color-gray-200);
}

.cta-btn.secondary:hover {
    background: rgba(37, 99, 235, 0.1);
}

.btn-icon {
    font-size: 1.25rem;
}

.support-metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    padding-top: 1rem;
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

.metric-icon {
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.badge-icon {
    color: var(--color-blue-400);
    font-size: 1rem;
}

.cta-badge span:last-child {
    font-size: 0.875rem;
    color: var(--color-blue-400);
    font-weight: 500;
}

.cta-content h2 {
    font-size: clamp(1.875rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content h2 span {
    display: block;
}

.cta-highlight {
    background: linear-gradient(135deg, var(--color-blue-400), var(--color-blue-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--color-gray-400);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.cta-btn:hover .btn-arrow {
    transform: translateX(0.25rem);
}

/* Footer */
.footer {
    position: relative;
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--color-gray-800);
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.footer-section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-icon {
    background: rgba(59, 130, 246, 0.1);
    padding: 0.5rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.footer-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-blue-500);
    stroke: currentColor;
}

.footer-section h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--color-gray-400);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.footer-links a:hover {
    color: white;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-blue-500);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-link-highlight {
    color: var(--color-blue-400) !important;
    font-weight: 500;
}

.footer-link-highlight:hover {
    color: var(--color-blue-300) !important;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(55, 65, 81, 0.5);
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    background: rgba(55, 65, 81, 0.3);
    backdrop-filter: blur(12px);
    border-radius: 0.5rem;
    border: 1px solid rgba(55, 65, 81, 0.5);
    padding: 0.25rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--color-gray-400);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-link:hover {
    color: var(--color-blue-400);
    background: rgba(55, 65, 81, 0.9);
    transform: scale(1.1);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
    fill: currentColor;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.footer-copyright {
    color: var(--color-gray-500);
    font-size: 0.875rem;
    text-align: center;
}

.footer-legal {
    margin-top: 0.5rem;
}

.footer-legal a {
    color: var(--color-gray-400);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--color-gray-200);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .desktop-nav,
    .nav-auth {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 6rem 0 4rem;
    }
    
    .trust-indicators {
        gap: 0.5rem 1rem;
    }
    
    .trust-item {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .panel-interface {
        flex-direction: column;
    }
    
    .panel-sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .sidebar-item {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
        padding: 0.5rem;
    }
    
    .panel-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-tabs {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .feature-card,
    .panel-feature,
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .popular-searches {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .popular-label {
        margin-right: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .support-metrics {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* VPS Page Styles */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.badge-icon {
    color: var(--color-blue-400);
    font-size: 1rem;
}

.hero-badge span:last-child {
    font-size: 0.875rem;
    color: var(--color-blue-400);
    font-weight: 500;
}

.vps-plans-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.region-selector {
    text-align: center;
    margin-top: 1rem;
}

.region-selector label {
    color: var(--color-gray-400);
    margin-right: 0.5rem;
    font-weight: 500;
}

.region-dropdown {
    background: var(--color-gray-800);
    color: white;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-gray-700);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.region-dropdown:focus {
    outline: none;
    border-color: var(--color-blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: 4rem auto;
    max-width: 1400px;
    justify-items: center;
}

.plan-card {
    position: relative;
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.5), rgba(55, 65, 81, 0.3));
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.plan-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(55, 65, 81, 0.7);
}

.plan-card.popular {
    transform: scale(1.05);
    border-color: var(--color-blue-500);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gray-700);
    color: white;
    font-size: 0.875rem;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.sparkle-icon {
    font-size: 0.875rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.period {
    color: var(--color-gray-400);
}

.plan-specs {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-gray-400);
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-icon {
    font-size: 1rem;
    color: var(--color-blue-400);
}

.spec-label {
    min-width: 4rem;
}

.spec-value {
    color: white;
    font-weight: 500;
}

.deploy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.deploy-btn.primary {
    background: var(--color-blue-600);
    color: white;
}

.deploy-btn.primary:hover {
    background: var(--color-blue-700);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.deploy-btn.secondary {
    background: var(--color-gray-700);
    color: white;
}

.deploy-btn.secondary:hover {
    background: var(--color-gray-600);
    transform: scale(1.05);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.deploy-btn:hover .btn-arrow {
    transform: translateX(0.25rem);
}

.vps-features {
    margin: 4rem 0;
    text-align: center;
}

.vps-features h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.vps-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.5), rgba(55, 65, 81, 0.3));
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--color-gray-400);
    line-height: 1.6;
}

.payment-methods {
    text-align: center;
    margin-top: 4rem;
}

.payment-methods h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.payment-icons img {
    height: 2rem;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.payment-icons img:hover {
    transform: scale(1.1);
}

/* Minecraft Page Styles */
.minecraft-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.minecraft-feature {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.5), rgba(55, 65, 81, 0.3));
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.minecraft-feature:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(55, 65, 81, 0.7);
}

.minecraft-feature-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.minecraft-feature:hover .minecraft-feature-icon {
    transform: scale(1.1);
}

.minecraft-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.minecraft-feature:hover h3 {
    color: var(--color-blue-400);
}

.minecraft-feature p {
    color: var(--color-gray-400);
    transition: color 0.3s ease;
}

.minecraft-feature:hover p {
    color: var(--color-gray-300);
}

.minecraft-plans-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.minecraft-plan-card {
    position: relative;
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.5), rgba(55, 65, 81, 0.3));
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
}

.minecraft-plan-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(55, 65, 81, 0.7);
}

.minecraft-plan-card.popular {
    transform: scale(1.05);
    border-color: var(--color-blue-500);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.minecraft-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.minecraft-plan-features {
    margin: 1.5rem 0;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.feature-row.highlight {
    background: rgba(59, 130, 246, 0.1);
    color: white;
}

.feature-row:not(.highlight) {
    color: var(--color-gray-400);
}

.feature-icon {
    font-size: 1rem;
    color: var(--color-blue-400);
    min-width: 1.5rem;
}

.feature-label {
    min-width: 5rem;
    font-weight: 500;
}

.feature-value {
    font-weight: 600;
}

/* Rust Page Styles */
.rust-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.rust-feature {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.5), rgba(55, 65, 81, 0.3));
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.rust-feature:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(55, 65, 81, 0.7);
}

.rust-feature-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(255, 87, 51, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.rust-feature:hover .rust-feature-icon {
    transform: scale(1.1);
}

.rust-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.rust-feature:hover h3 {
    color: #ff5733;
}

.rust-feature p {
    color: var(--color-gray-400);
    transition: color 0.3s ease;
}

.rust-feature:hover p {
    color: var(--color-gray-300);
}

.rust-plans-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.rust-plan-card {
    position: relative;
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.5), rgba(55, 65, 81, 0.3));
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
}

.rust-plan-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(55, 65, 81, 0.7);
}

.rust-plan-card.popular {
    transform: scale(1.05);
    border-color: #ff5733;
    box-shadow: 0 10px 40px rgba(255, 87, 51, 0.2);
}

.rust-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.rust-plan-features {
    margin: 1.5rem 0;
}

.rust-plan-features .feature-row.highlight {
    background: rgba(255, 87, 51, 0.1);
    color: white;
}

/* Locations Section */
.locations-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.location-card {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.5), rgba(55, 65, 81, 0.3));
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(2rem);
}

.location-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.location-card:hover {
    background: var(--color-gray-800);
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.location-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.location-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.location-icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
    color: var(--color-blue-400);
}

.location-title h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-indicator.operational {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-green-400);
}

.status-indicator.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-amber-400);
}

.status-indicator.critical {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-rose-400);
}

.status-indicator.small {
    padding: 0.25rem 0.5rem;
    font-size: 0.625rem;
}

.status-icon {
    font-size: 0.875rem;
}

.cities-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.city-card {
    background: rgba(17, 24, 39, 0.5);
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.city-card:hover {
    background: rgba(17, 24, 39, 0.8);
}

.city-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.city-name {
    font-weight: 500;
    color: white;
    transition: color 0.3s ease;
}

.city-card:hover .city-name {
    color: var(--color-blue-400);
}

.city-specs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.spec-icon {
    width: 0.875rem;
    height: 0.875rem;
    stroke: currentColor;
}

.spec-item:first-child .spec-icon {
    color: var(--color-purple-400);
}

.spec-item:last-child .spec-icon {
    color: var(--color-blue-400);
}

.spec-text {
    color: var(--color-gray-400);
}

/* Container spacing */
.nav-auth {
  display: flex;
  gap: 0.5rem; /* space between buttons */
  align-items: center;
}

/* Base styles for both buttons */
.nav-auth .auth-link,
.nav-auth .auth-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.375rem; /* 6px */
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* "Node Panel" as a secondary/outline button */
.nav-auth .auth-link {
  border: 1px solid #1d4ed8;
  color: #1d4ed8;
  background-color: transparent;
}
.nav-auth .auth-link:hover {
  background-color: rgba(29, 78, 216, 0.1);
}

/* "Client Area" as a primary/filled button */
.nav-auth .auth-button {
  border: none;
  color: #ffffff;
  background-color: #5725d5;
}
.nav-auth .auth-button:hover {
  background-color: #2563eb;
}

.dropdown-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-right: 0.75rem;
}
.dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #f1f1f1;
}
/* ===== Locations Section Styles ===== */
.locations-section {
  padding: 4rem 0;
  position: relative;
}
.locations-section .background-effects {
  /* your background effects */
  position: absolute;
  inset: 0;
  z-index: -1;
}

.locations-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.section-header h2 {
  font-size: 2rem;
  line-height: 1.2;
}
.section-highlight {
  display: block;
  color: #5725d5;
  margin-top: 0.5rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.location-card {
  background: rgba(255,255,255,0.05);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.location-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.location-title {
  display: flex;
  align-items: center;
}
.location-icon {
  margin-right: 0.5rem;
  color: #5725d5;
}

.status-indicator {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}
.status-icon {
  margin-right: 0.25rem;
  color: #22c55e;
}

.cities-list {
  padding: 1rem;
}
.city-card {
  margin-bottom: 1rem;
}
.city-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.city-name {
  font-weight: 500;
}
.city-specs {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.spec-item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}
.spec-icon {
  margin-right: 0.25rem;
  color: #60a5fa;
}
/* Features Grid: 3 columns on desktop, 1�2 columns on smaller screens */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* fluid columns */
  gap: 1.5rem;
}

/* Force exactly 3 columns at wide viewports */
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Icon container sizing */
.feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Normalize all SVGs inside .feature-icon */
.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2;
  stroke: currentColor; /* inherits the text color for easy theming */
  fill: none;
}

/* Example theme colors: adjust to your palette */
.blue-theme { color: #5725d5; }
.purple-theme { color: #8b5cf6; }
.amber-theme { color: #f59e0b; }
.rose-theme { color: #f43f5e; }
.indigo-theme { color: #6366f1; }
.pink-theme { color: #ec4899; }


.feature-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.panel-sidebar {
  background: #1f2937;
  padding: 1rem;
}

.sidebar-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  color: #d1d5db;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 0.25rem;
}

.sidebar-item.active,
.sidebar-item:hover {
  background: #374151;
  color: #fff;
}

.sidebar-icon {
  width: 28px;
  height: 28px;
  margin-right: 0.75rem;
  stroke: currentColor;
  fill: none;
}
