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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Header */
.header {
    background-color: #111111;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.node-network {
    position: relative;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

.main-node {
    width: 14px;
    height: 14px;
    top: 13px;
    left: 13px;
    animation: pulse 2s infinite;
}

.sub-node-1 {
    width: 8px;
    height: 8px;
    top: 4px;
    left: 4px;
    animation: pulse 2s infinite 0.3s;
}

.sub-node-2 {
    width: 8px;
    height: 8px;
    top: 4px;
    right: 4px;
    animation: pulse 2s infinite 0.6s;
}

.sub-node-3 {
    width: 8px;
    height: 8px;
    bottom: 4px;
    left: 16px;
    animation: pulse 2s infinite 0.9s;
}

.connection {
    position: absolute;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.3), rgba(0, 204, 255, 0.3));
    height: 2px;
}

.con-1 {
    width: 15px;
    top: 12px;
    left: 8px;
    transform: rotate(-45deg);
}

.con-2 {
    width: 15px;
    top: 12px;
    right: 8px;
    transform: rotate(45deg);
}

.con-3 {
    width: 15px;
    bottom: 12px;
    left: 20px;
    transform: rotate(135deg);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-name {
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.7rem;
    color: #00ff88;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00ff88;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 204, 102, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,255,136,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #000;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 50%, #00cc66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.3s ease;
}

.highlight:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

.highlight-icon {
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-primary {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #000000;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #00ff88;
    border-color: #00ff88;
}

.cta-secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(37, 37, 37, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.stat-desc {
    font-size: 0.9rem;
    color: #999999;
}

.hero-trust {
    text-align: center;
    margin-top: 4rem;
}

.trust-text {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section-header .section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Performance Section */
.performance-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
}

.performance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(0, 204, 102, 0.05) 0%, transparent 50%);
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.performance-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(37, 37, 37, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.performance-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.1);
}

.performance-card.highlight-card {
    border-color: #00ff88;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
    transform: scale(1.05);
}

.performance-card.highlight-card:hover {
    transform: scale(1.05) translateY(-5px);
}

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

.card-header h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
}

.badge-best {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

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

.metric:last-child {
    border-bottom: none;
}

.metric-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ff88;
}

.highlight-card .metric-value {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.metric-label {
    color: #cccccc;
    font-size: 0.9rem;
}

.performance-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.summary-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.summary-item:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-3px);
}

.summary-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.summary-item h4 {
    color: #00ff88;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.summary-item p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Servers Section */
.servers-section {
    padding: 80px 0;
    background-color: #0f0f0f;
}

.servers-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #999999;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Server Filters */
.servers-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.availability-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #1a1a1a;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid #00ff88;
}

.status-label {
    color: #cccccc;
    font-weight: 500;
}

.status-value {
    color: #00ff88;
    font-weight: 600;
}

.refresh-indicator {
    color: #ffa500;
    font-size: 0.85rem;
    background: #2a2a2a;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    animation: pulse 2s infinite;
}

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

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

.notification.success {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
}

.notification.info {
    background: linear-gradient(135deg, #007acc, #005999);
    color: #fff;
}

.notification.error {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: #fff;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    gap: 10px;
}

.notification-message {
    font-weight: 500;
    font-size: 14px;
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.notification-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.filter-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    color: #cccccc;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-group select {
    background: #1a1a1a;
    color: #ffffff;
    border: 2px solid #333333;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: border-color 0.3s;
    min-width: 150px;
}

.filter-group select:focus {
    outline: none;
    border-color: #00ff88;
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.server-card {
    background: linear-gradient(135deg, #1a1a1a, #252525);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #333333;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.server-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00cc66);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.server-name {
    color: #00ff88;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.server-specs {
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #333333;
}

.spec-label {
    color: #999999;
    font-weight: 500;
}

.spec-value {
    color: #ffffff;
    font-weight: bold;
}

/* Storage formatting - right align like other spec values */
.spec-item .spec-value {
    text-align: right;
    line-height: 1.4;
}

.server-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-monthly {
    font-size: 2rem;
    color: #00ff88;
    font-weight: bold;
}

.price-label {
    color: #999999;
    font-size: 0.9rem;
}

.price-note {
    color: #00ff88;
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 0.2rem;
}

.price-options {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    font-size: 0.85rem;
}

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

.price-option .period {
    color: #999999;
    display: block;
}

.price-option .amount {
    color: #ffffff;
    font-weight: bold;
}

.configure-btn {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #000000;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

.configure-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

/* Solana Section */
.solana-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

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

.latency-card {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #1a1a1a, #252525);
    border-radius: 20px;
    border: 1px solid #333333;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.latency-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.latency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ff88, #00cc66);
}

.latency-value {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #00ff88, #00cc66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.latency-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.latency-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Locations Section */
.locations-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
}

.locations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 255, 136, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 204, 102, 0.04) 0%, transparent 50%);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.location-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(37, 37, 37, 0.9));
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.location-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
}

.location-card.featured-location {
    border-color: #00ff88;
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.2);
    transform: scale(1.02);
}

.location-card.featured-location:hover {
    transform: scale(1.02) translateY(-8px);
}

.location-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-flag {
    font-size: 4.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.location-card h3 {
    color: #ffffff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 12px;
    border-left: 3px solid #00ff88;
    transition: all 0.3s ease;
}

.location-feature:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(5px);
}

.location-feature.premium {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 102, 0.1));
    border-left-color: #00ff88;
    border-left-width: 4px;
}

.location-feature .feature-icon {
    font-size: 1.3rem;
    width: 35px;
    text-align: center;
    color: #00ff88;
}

.location-feature span:last-child {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
}

.location-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 1.5rem 1rem;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #00ff88;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 500;
}

.network-partners {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 5rem;
}

.network-partners h3 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.partner-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(37, 37, 37, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.partner-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.1);
}

.partner-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.partner-item strong {
    color: #00ff88;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.partner-item span {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Why Choose Evolus Section */
.why-evolus-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.why-evolus-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.why-evolus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.why-feature {
    background: linear-gradient(135deg, #1a1a1a, #252525);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    border: 1px solid #333333;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.why-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
    border-color: #00ff88;
}

.why-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ff88, #00cc66);
    opacity: 0;
    transition: opacity 0.3s;
}

.why-feature:hover::before {
    opacity: 1;
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.why-feature h3 {
    color: #00ff88;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.why-feature p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 204, 102, 0.05) 0%, transparent 50%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(37, 37, 37, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
}

.testimonial-card.featured {
    border-color: #00ff88;
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.2);
    transform: scale(1.02);
}

.testimonial-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-content {
    flex-grow: 1;
}

.stars {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.testimonial-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    color: #00ff88;
    font-size: 3rem;
    position: absolute;
    top: -10px;
    left: -15px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 204, 102, 0.2));
    border-radius: 15px;
    flex-shrink: 0;
}

.author-info {
    flex-grow: 1;
}

.author-info strong {
    color: #ffffff;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.author-info span {
    color: #00ff88;
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.8rem;
}

.author-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.author-stats .stat {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #cccccc;
    white-space: nowrap;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
}

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

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00ff88;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.stats-label {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #0f0f0f;
    position: relative;
}

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

.faq-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(37, 37, 37, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(0, 255, 136, 0.05);
}

.faq-question h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 0;
    flex-grow: 1;
    padding-right: 1rem;
    font-weight: 600;
}

.faq-toggle {
    color: #00ff88;
    font-size: 2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 2rem;
    max-height: 200px;
    opacity: 1;
}

.faq-answer p {
    color: #cccccc;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.faq-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 102, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    padding: 4rem 2rem;
    position: relative;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
    border-radius: 20px;
}

.faq-cta h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.faq-cta p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.faq-cta .cta-primary {
    position: relative;
    z-index: 2;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a, #252525);
    border-radius: 15px;
    border: 1px solid #333333;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.feature p {
    color: #999999;
}

/* Footer */
.footer {
    background-color: #111111;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #333333;
}

.footer p {
    color: #999999;
}

/* Loading */
.loading {
    text-align: center;
    color: #999999;
    font-size: 1.2rem;
    grid-column: 1 / -1;
    padding: 3rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-card.highlight-card {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .performance-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .servers-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .why-evolus-grid {
        grid-template-columns: 1fr;
    }

    .why-feature {
        padding: 2rem 1.5rem;
    }

    .why-feature h3 {
        font-size: 1.4rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.5rem;
    }
    
    .faq-cta {
        padding: 3rem 1.5rem;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-card {
        padding: 2rem;
    }
    
    .location-card.featured-location {
        transform: none;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .partner-item {
        padding: 1.5rem 1rem;
    }
    
    .location-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.5rem;
    }
    
    .stat {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-stats,
    .testimonials-stats {
        grid-template-columns: 1fr;
    }
    
    .performance-summary {
        grid-template-columns: 1fr;
    }
    
    .summary-item {
        padding: 1.5rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .network-partners h3 {
        font-size: 1.8rem;
    }
}

/* Premium Badge */
.premium-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-option.premium-only {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    text-align: center;
}

.price-option.premium-only .period,
.price-option.premium-only .amount {
    color: #ffffff;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.server-card {
    animation: fadeInUp 0.6s ease-out;
}