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

:root {
    --primary-color: #3b82f6;
    --secondary-color: #1e40af;
    --dark-bg: #000000;
    --darker-bg: #000000;
    --card-bg: rgba(10, 10, 10, 0.7);
    --glass-bg: rgba(15, 15, 15, 0.5);
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --glass-border: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar for entire page */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000000;
    border-left: 1px solid rgba(59, 130, 246, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3b82f6, #1e40af);
    border-radius: 10px;
    border: 2px solid #000000;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2563eb, #1e3a8a);
    border: 2px solid #0a0a0a;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #3b82f6 #000000;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.08), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(30, 64, 175, 0.08), transparent 50%),
        radial-gradient(ellipse at center, rgba(59, 130, 246, 0.03), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-brand h2 {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.theme-toggle {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.theme-toggle:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(180deg);
}

.btn-login, .btn-register {
    padding: 0.5rem 1.5rem !important;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-login {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color) !important;
}

.btn-login:hover {
    background: var(--primary-color);
    color: white !important;
}

.btn-register {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.15), transparent);
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-badge i {
    color: #fbbf24;
    margin-right: 0.5rem;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
        transform: scale(1.02);
    }
}

/* Status dot glow animation */
.status-dot-glow {
    animation: status-dot-pulse 2s ease-in-out infinite;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.badge {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Stats Section */
.stats {
    background: transparent;
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Locations Section */
.locations {
    padding: 5rem 0;
}

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

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.location-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
    text-align: center;
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.flag {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.flag i {
    font-size: 2.5rem;
}

.location-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.status {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 0.5rem 0;
}

.status.active {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.status.discontinued {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
}

.status.coming-soon, .status.renewal {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning-color);
}

.ping {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 1rem;
}

.ping.coming-soon-ping {
    color: var(--danger-color) !important;
    font-size: 1.2rem;
}

.location-card.coming-soon-node {
    opacity: 0.7;
}

.location-card.coming-soon-node:hover {
    opacity: 0.85;
}

.locations .btn-primary {
    display: block;
    margin: 0 auto;
    max-width: 300px;
}

/* DDoS Protection Section */
.ddos-protection {
    background: transparent;
    padding: 5rem 0;
}

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

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

.feature-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.terminal {
    background: #000000;
    border-radius: 15px;
    overflow: hidden;
    max-width: 900px;
    margin: 2rem auto;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
}

.terminal-header {
    background: #0a0a0a;
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

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

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-title {
    margin-left: auto;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    color: #e0e0e0;
    font-size: 0.88rem;
    line-height: 1.5;
    height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #000000;
    scroll-behavior: smooth;
    flex: 1;
}

.terminal-body::-webkit-scrollbar {
    width: 10px;
}

.terminal-body::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-radius: 10px;
    margin: 5px;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3b82f6, #1e40af);
    border-radius: 10px;
    border: 2px solid #0a0a0a;
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2563eb, #1e3a8a);
}

/* Firefox scrollbar */
.terminal-body {
    scrollbar-width: thin;
    scrollbar-color: #3b82f6 #0a0a0a;
}

.terminal-line {
    margin-bottom: 0.25rem;
}

.terminal-line.output {
    padding-left: 1rem;
    color: #b0b0b0;
}

.prompt {
    color: #5af78e;
    font-weight: 600;
}

.path {
    color: #57c7ff;
}

.command {
    color: #f3f99d;
}

.timestamp {
    color: #808080;
}

.info {
    color: #57c7ff;
}

.success {
    color: #5af78e;
}

.cursor {
    animation: blink 1s infinite;
    color: #5af78e;
}

.cursor-blink {
    animation: blink 1s infinite;
    color: #5af78e;
    margin-left: 2px;
}

.terminal-input-line {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
}

.fake-input {
    color: #f3f99d;
    outline: none;
    border: none;
    background: transparent;
    font-family: inherit;
    min-width: 50px;
    display: inline-block;
}

/* Console Input Box */
.terminal-input-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #0a0a0a;
    border-top: 1px solid rgba(59, 130, 246, 0.3);
}

.console-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #e0e0e0;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s;
}

.console-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: rgba(0, 0, 0, 0.7);
}

.console-input::placeholder {
    color: #666;
}

.console-send-btn {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

.console-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

.console-send-btn:active {
    transform: translateY(0);
}

.console-welcome {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
    white-space: pre;
    line-height: 1.4;
}

.status-info {
    font-weight: 600;
    font-size: 1rem;
}

.status-starting {
    color: #f59e0b;
    animation: pulse 1.5s ease-in-out infinite;
}

.status-online {
    color: #10b981;
    font-weight: 700;
}

.status-offline {
    color: #ef4444;
}

.success-bold {
    color: #10b981;
    font-weight: 700;
}

.player-join {
    color: #3b82f6;
}

.player-name {
    color: #fbbf24;
    font-weight: 600;
}

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

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

/* Hardware Section */
.hardware {
    padding: 5rem 0;
}

.hardware h2.flagship {
    text-align: center;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hardware h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.hardware-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.hardware-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.hardware-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hardware-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.hardware-card h5 {
    color: var(--text-secondary);
    font-weight: normal;
    margin-bottom: 1rem;
}

.hardware-card .specs {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.hardware-additional {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    margin-top: 2rem;
}

.hardware-additional h4 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.hardware-additional > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.option i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.option h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.option p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Server Types Section */
.server-types {
    background: transparent;
    padding: 5rem 0;
}

.server-types h2 {
    text-align: center;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

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

.server-icon {
    text-align: center;
    transition: transform 0.3s;
}

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

.server-icon img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.server-icon:hover img {
    border-color: var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
}

.server-icon p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.server-types .more {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* Control Panel Section */
.control-panel {
    padding: 5rem 0;
}

.control-panel h2 {
    text-align: center;
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.control-panel h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.panel-features {
    margin: 3rem 0;
}

.panel-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.panel-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

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

.feature-check {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-check i {
    color: var(--success-color);
    font-size: 1.2rem;
}

/* Why Choose Us Section */
.why-choose {
    background: transparent;
    padding: 5rem 0;
}

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

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

.showcase-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.showcase-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.showcase-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.showcase-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.showcase-card p {
    color: var(--text-secondary);
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: transparent;
}

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

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

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.pricing-card.popular {
    border-color: #3b82f6;
    border-width: 2px;
    transform: scale(1.05);
    background: rgba(59, 130, 246, 0.05);
}

.pricing-card.popular:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-card.enterprise {
    border-color: #1e40af;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(30, 64, 175, 0.08));
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.plan-badge.free {
    background: var(--success-color);
    color: white;
}

.plan-badge.popular {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
}

.plan-badge.enterprise {
    background: var(--secondary-color);
    color: white;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

.price .amount {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price .period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.plan-description {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features-list i {
    font-size: 1rem;
    flex-shrink: 0;
}

.features-list .fa-check {
    color: var(--success-color);
}

.features-list .fa-times {
    color: var(--text-secondary);
    opacity: 0.3;
}

.pricing-note {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    margin-top: 2rem;
}

.pricing-note p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
}

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

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

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

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

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial-header h4 {
    font-size: 1.1rem;
}

.role {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.stars {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card > p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.rating {
    color: var(--primary-color);
    font-weight: bold;
}

/* FAQ Section */
.faq {
    background: transparent;
    padding: 5rem 0;
}

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

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

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

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

.faq-question:hover {
    background: rgba(99, 102, 241, 0.1);
}

.faq-question h4 {
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--glass-border);
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

/* Cookie Notification */
.cookie-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 450px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 9998;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.4s ease-out;
}

.cookie-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-icon {
    font-size: 2rem;
    color: #f59e0b;
}

.cookie-text h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.cookie-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
}

.cookie-btn.decline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

/* Light Theme */
body.light-theme {
    background: #ffffff;
    color: #000000;
}

body.light-theme::before {
    background: 
        radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.05), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(30, 64, 175, 0.05), transparent 50%);
}

body.light-theme {
    --text-primary: #000000;
    --text-secondary: #4b5563;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --card-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.1);
}

body.light-theme ::-webkit-scrollbar-track {
    background: #f3f4f6;
}

body.light-theme ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3b82f6, #1e40af);
}

body.light-theme .navbar {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .terminal {
    background: #f9fafb;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

body.light-theme .terminal-header {
    background: #f3f4f6;
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

body.light-theme .terminal-body {
    background: #ffffff;
    color: #1f2937;
}

body.light-theme .terminal-line {
    color: #374151;
}

body.light-theme .prompt {
    color: #10b981;
}

body.light-theme .timestamp {
    color: #6b7280;
}

body.light-theme .info {
    color: #3b82f6;
}

body.light-theme .success {
    color: #10b981;
}

body.light-theme .command {
    color: #f59e0b;
}

body.light-theme .terminal-input-box {
    background: #f3f4f6;
}

body.light-theme .console-input {
    background: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #1f2937;
}

body.light-theme .console-input::placeholder {
    color: #9ca3af;
}

body.light-theme .footer {
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .cookie-notification {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

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

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

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .locations-grid,
    .hardware-grid,
    .features-showcase,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: transparent;
    position: relative;
}

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

.review-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(16, 185, 129, 0.3));
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

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

.review-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-style: italic;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.review-author strong {
    color: #3b82f6;
    font-size: 1rem;
}

.review-rating {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Light theme adjustments for reviews */
body.light-theme .review-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(59, 130, 246, 0.3);
}

body.light-theme .review-text {
    color: rgba(0, 0, 0, 0.8);
}

body.light-theme .review-author {
    border-top-color: rgba(59, 130, 246, 0.3);
}

/* Mobile responsive for reviews */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .reviews-section {
        padding: 3rem 0;
    }
}

/* ===== HARDWARE SECTION WITH IMAGES ===== */
.hardware-grid-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    width: 100%;
    margin-bottom: 50px;
}

.hardware-card-cpu {
    grid-column: span 2;
    background-image: url('https://cdn.pixabay.com/photo/2017/04/25/20/18/processor-2260987_1280.jpg');
    background-size: cover;
    background-position: center;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

.hardware-card-ssd {
    background-color: var(--card-bg);
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.hardware-card-ram {
    background-image: url('https://cdn.pixabay.com/photo/2014/09/27/13/44/chip-463496_1280.jpg');
    background-size: cover;
    background-position: center;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.hw-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 15, 23, 0.4), rgba(13, 15, 23, 0.98));
    z-index: 1;
}

.hw-content-centered {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    height: 100%;
    justify-content: center;
}

.hw-img-transparent {
    width: 130px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    margin-bottom: 15px;
}

/* Floating Animation for Hardware Images */
@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hw-float-animation {
    animation: floatUpDown 4s ease-in-out infinite;
    will-change: transform;
}

.hw-float-delay-1 {
    animation-delay: 1s;
}

.hw-float-delay-2 {
    animation-delay: 2s;
}

.hw-gradient-title {
    display: inline-block;
    font-weight: 800;
    margin: 0 auto 10px;
    font-family: sans-serif;
}

.grad-epyc {
    background: linear-gradient(90deg, #fff, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
}

.grad-ssd {
    background: linear-gradient(90deg, #fff, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
}

.grad-ram {
    background: linear-gradient(90deg, #fff, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
}

.hw-main-text {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.hw-detail-text {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hardware-grid-images {
        grid-template-columns: 1fr;
    }
    
    .hardware-card-cpu {
        grid-column: span 1;
    }
}

/* ===== DISCORD-STYLE TESTIMONIALS ===== */
.testimonials-section {
    width: 100%;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 30px;
}

.testimonials-header h2 {
    text-align: center !important;
}

.testimonials-slider-container {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.testimonials-track {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: max-content;
    animation: scroll-left 40s linear infinite;
    will-change: transform;
    align-items: flex-start;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Avatar placeholder */
.discord-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1rem;
}

/* Column Container for small cards */
.review-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: auto;
    max-width: 320px;
    flex-shrink: 0;
}

.discord-review-card {
    width: auto;
    min-width: 280px;
    max-width: 340px;
    flex-shrink: 0;
    background: rgba(30, 32, 44, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discord-review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.review-card-large {
    width: auto;
    min-width: 300px;
    max-width: 380px;
    align-self: flex-start;
}

.discord-review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.discord-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.discord-user-info {
    flex: 1;
    min-width: 0;
}

.discord-username {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.discord-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(88, 101, 242, 0.2);
    color: #a5b4fc;
    font-size: 0.65rem;
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 700;
}

.discord-timestamp {
    color: #b5bac1;
    font-size: 0.7rem;
}

.discord-review-content {
    color: #dbdee1;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.discord-review-content ul {
    margin: 6px 0;
    padding-left: 16px;
    list-style: none;
}

.discord-review-content li {
    margin-bottom: 4px;
    position: relative;
    font-size: 0.82rem;
}

.discord-review-content li:before {
    content: "•";
    position: absolute;
    left: -12px;
    color: #b5bac1;
}

.discord-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #b5bac1;
    font-size: 0.78rem;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.discord-stars {
    color: #f0b232;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .discord-review-card {
        min-width: 260px;
        max-width: 300px;
        padding: 12px 14px;
    }
    
    .review-column {
        max-width: 300px;
    }
    
    .review-card-large {
        min-width: 280px;
        max-width: 320px;
    }
    
    .testimonials-track {
        animation-duration: 25s;
        gap: 12px;
    }
    
    .discord-review-content {
        font-size: 0.82rem;
    }
    
    .discord-review-content li {
        font-size: 0.78rem;
    }
}

/* Light theme for Discord cards */
body.light-theme .discord-review-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(59, 130, 246, 0.2);
}

body.light-theme .discord-username {
    color: #1a1a2e;
}

body.light-theme .discord-review-content {
    color: #374151;
}

body.light-theme .discord-timestamp,
body.light-theme .discord-rating {
    color: #6b7280;
}
