:root {
  --primary-color: #00c3ff;
  --secondary-color: #ff00e6;
  --accent-color: #7000ff;
  --tertiary-color: #00ff88;
  --quaternary-color: #ff6b00;
  --background-color: #0a0e17;
  --background-secondary: #0f1419;
  --background-tertiary: #141922;
  --card-bg-color: rgba(17, 24, 39, 0.15);
  --card-bg-hover: rgba(17, 24, 39, 0.3);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.12);
  --text-color: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #6b7280;
  --text-accent: #e2e8f0;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --info-color: #3b82f6;
  --border-color: rgba(30, 41, 59, 0.2);
  --border-hover: rgba(30, 41, 59, 0.4);
  --border-focus: rgba(0, 195, 255, 0.5);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(0, 195, 255, 0.2);
  --shadow-glow-hover: 0 0 30px rgba(0, 195, 255, 0.4);
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  --gradient-tertiary: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
  --gradient-rainbow: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--tertiary-color), var(--quaternary-color));
  --gradient-mesh: radial-gradient(circle at 20% 50%, rgba(0, 195, 255, 0.2) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 0, 230, 0.2) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(112, 0, 255, 0.2) 0%, transparent 50%);
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  --blur-sm: blur(4px);
  --blur-md: blur(8px);
  --blur-lg: blur(12px);
  --blur-xl: blur(16px);
  --blur-2xl: blur(24px);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: var(--gradient-mesh);
}

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

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.highlight {
  background: 
    linear-gradient(
      90deg,
      rgba(0, 123, 255, 0.4) 0%,
      rgba(0, 123, 255, 1) 50%,
      rgba(0, 123, 255, 0.4) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 123, 255, 0.4) 0%,
      rgba(0, 123, 255, 1) 50%,
      rgba(0, 123, 255, 0.4) 100%
    );
  background-repeat: repeat-x;
  background-size: 200% 100%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s linear infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}


.section-header {
    text-align: center;
}
.section-header-about {
    text-align: center;
    margin-top : -150px;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    outline: none;
    backdrop-filter: var(--blur-sm);
    
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0, 195, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 195, 255, 1);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(255, 0, 230, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 230, 0.4);
}

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

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

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
    background-color: rgba(10, 14, 23, 0.4);
    backdrop-filter: var(--blur-xl);
    padding: 10px 0;
    transition: all var(--transition-normal);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
}

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

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    color: white;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(270deg, 
        rgba(0, 123, 255, 0.4),
        rgba(0, 123, 255, 1),
        rgba(0, 123, 255, 0.4),
        rgb(0, 123, 255, 1),
        rgba(0, 123, 255, 0.4) 
    );
    background-size: 400% 100%;
    transition: width 0.3s ease;
    border-radius: 2px;
    animation: gradientSlide 8s linear infinite;
    opacity: 0;
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active::after {
    width: 100%;
    opacity: 1;
}

/* gradient animation */
@keyframes gradientSlide {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 400% 0%;
    }
}


.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all var(--transition-normal);
}

.hero {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

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

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-xl);
    backdrop-filter: var(--blur-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.floating-stats {
    position: absolute;
    bottom: -30px;
    left: 0;
    display: flex;
    gap: 20px;
    background: rgba(17, 24, 39, 0);
    backdrop-filter: var(--blur-lg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

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

.services {
    padding: 100px 0;
}

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

.service-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: var(--card-bg-hover);
    box-shadow: var(--shadow-glow-hover);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: var(--blur-sm);
}

.service-icon i {
    font-size: 30px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.locations {
    padding: 100px 0;
    background-color: rgba(17, 24, 39, 0.3);
    backdrop-filter: var(--blur-sm);
}

.globe-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.globe {
    flex: 1;
    min-width: 300px;
    height: 400px;
    position: relative;
    perspective: 1000px;
}

.globe-sphere {
    width: 300px;
    height: 300px;
    background: url('https://via.placeholder.com/600x600') no-repeat center center;
    background-size: cover;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(0deg);
    box-shadow: 0 0 50px rgba(0, 195, 255, 0.3);
    animation: rotate 60s linear infinite;
    backdrop-filter: var(--blur-sm);
    border: 1px solid var(--glass-border);
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateY(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateY(360deg);
    }
}

.location-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 10;
}

.location-marker.germany {
    top: 35%;
    left: 48%;
}

.location-marker.bulgaria {
    top: 40%;
    left: 55%;
}

.marker-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.marker-pulse {
    width: 30px;
    height: 30px;
    background: rgba(0, 195, 255, 0.3);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    backdrop-filter: var(--blur-sm);
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.location-info {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg-color);
    padding: 15px;
    border-radius: 10px;
    width: 250px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 100;
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
}

.location-marker:hover .location-info {
    opacity: 1;
    visibility: visible;
}

.location-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.location-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.location-stats {
    margin-bottom: 10px;
}

.location-stats .stat {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.location-stats .stat-label {
    color: var(--text-secondary);
}

.location-stats .stat-value {
    font-size: 0.9rem;
}

.location-stats .stat-value.online {
    color: var(--success-color);
}

.location-stats .stat-value.offline {
    color: var(--danger-color);
}

.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.location-details {
    flex: 1;
    min-width: 300px;
}

.location-tabs {
    display: flex;
    margin-bottom: 20px;
    background-color: var(--card-bg-color);
    border-radius: 50px;
    padding: 5px;
    backdrop-filter: var(--blur-sm);
    border: 1px solid var(--glass-border);
}

.location-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 500;
    transition: all var(--transition-normal);
    background: transparent;
    border: none;
    color: var(--text-color);
}

.location-tab.active {
    background: var(--gradient-primary);
}

.location-content {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 20px;
    display: none;
    backdrop-filter: var(--blur-sm);
    border: 1px solid var(--glass-border);
}

.location-content.active {
    display: block;
}

.location-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.spec {
    display: flex;
    align-items: center;
    gap: 15px;
}

.spec i {
    font-size: 24px;
    color: var(--primary-color);
}

.spec h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

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

.location-status {
    margin-top: 20px;
}

.status-chart {
    height: 200px;
    background: var(--glass-bg);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}

.latency {
    padding: 100px 0;
}

.latency-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.latency-map {
    flex: 1;
    min-width: 300px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: var(--card-bg-color);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: var(--blur-sm);
    border: 1px solid var(--glass-border);
}

.map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://via.placeholder.com/1000x500') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.map-point {
    position: absolute;
    width: 20px;
    height: 20px;
}

.user-point {
    top: 50%;
    left: 20%;
}

.germany-point {
    top: 30%;
    left: 48%;
}

.bulgaria-point {
    top: 35%;
    left: 55%;
}

.point-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.point-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: var(--text-color);
    font-size: 0.8rem;
    margin-top: 5px;
    background: var(--card-bg-color);
    padding: 3px 8px;
    border-radius: 5px;
    backdrop-filter: var(--blur-sm);
    border: 1px solid var(--glass-border);
}

.connection-line {
    position: absolute;
    height: 2px;
    background: var(--primary-color);
    transform-origin: 0 0;
    opacity: 0.5;
}

.latency-results {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.latency-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow-md);
    backdrop-filter: var(--blur-sm);
    border: 1px solid var(--glass-border);
}

.latency-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.latency-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: var(--blur-sm);
}

.latency-icon i {
    font-size: 18px;
}

.latency-value {
    text-align: center;
    margin-bottom: 15px;
}

.latency-value .value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.latency-value .unit {
    font-size: 1rem;
    color: var(--text-secondary);
}

.latency-bar {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
}

.latency-progress {
    height: 100%;
    background: var(--gradient-primary);
    width: 0;
    transition: width 1s ease;
}

.status {
    padding: 100px 0;
    background-color: rgba(17, 24, 39, 0.3);
    backdrop-filter: var(--blur-sm);
}

.status-dashboard {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.status-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.status-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-md);
    backdrop-filter: var(--blur-sm);
    border: 1px solid var(--glass-border);
}

.status-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: var(--blur-sm);
}

.status-icon i {
    font-size: 24px;
}

.status-info {
    flex: 1;
}

.status-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-indicator .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-secondary);
}

.status-indicator.online .dot {
    background-color: var(--success-color);
}

.status-indicator.issue .dot {
    background-color: var(--warning-color);
}

.status-indicator.offline .dot {
    background-color: var(--danger-color);
}

.status-details {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: var(--blur-sm);
    border: 1px solid var(--glass-border);
}

.status-tabs {
    display: flex;
    background-color: rgba(0, 0, 0, 0.2);
}

.status-tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition-normal);
    background: transparent;
    border: none;
    color: var(--text-color);
}

.status-tab.active {
    background: var(--gradient-primary);
}

.status-content {
    padding: 20px;
    display: none;
}

.status-content.active {
    display: block;
}

.status-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.metric-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: var(--blur-sm);
}

.metric-icon i {
    font-size: 18px;
}

.metric-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-info h4 {
    font-size: 1rem;
}

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

.chart-bar {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.chart-fill {
    height: 100%;
    background: var(--gradient-primary);
    width: 0;
    transition: width 1s ease;
}

.status-history {
    margin-top: 20px;
}

.status-history h4 {
    margin-bottom: 15px;
}

.history-chart {
    height: 200px;
    background: var(--glass-bg);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}

.features {
    padding: 100px 0;
}

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

.feature-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    flex-direction: column;
    justify-content: space-between;
}

.feature-card img {
    width: 300;
    height: 300;
    object-fit: contain;
    align-self: center;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.feature-card .btn {
    margin-top: 30px;
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: var(--card-bg-hover);
    box-shadow: var(--shadow-glow-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: var(--blur-sm);
}

.feature-icon i {
    font-size: 30px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

.features {
    padding: 100px 0;
}

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

.review-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
}

.review-card img {
    width: 300;
    height: 300;
    object-fit: contain;
    align-self: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.review-card .btn {
    margin-top: auto;
}

.review-card:hover {
    transform: translateY(-10px);
    background-color: var(--card-bg-hover);
    box-shadow: var(--shadow-glow-hover);
}

.review-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: var(--blur-sm);
}

.faq {
    padding: 100px 0;
    background-color: rgba(17, 24, 39, 0.3);
    backdrop-filter: var(--blur-sm);
}

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

.faq-item {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    backdrop-filter: var(--blur-sm);
    border: 1px solid var(--glass-border);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 500;
}

.faq-icon i {
    transition: all var(--transition-normal);
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.footer {
    padding: 80px 0 30px;
    background-color: var(--card-bg-color);
    backdrop-filter: var(--blur-md);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo p {
    color: var(--text-secondary);
    margin: 15px 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    backdrop-filter: var(--blur-sm);
    border: 1px solid var(--glass-border);
}

.social-icons a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links-column {
    min-width: 150px;
}

.footer-links-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(270deg, 
        rgba(0, 123, 255, 0.4),
        rgba(0, 123, 255, 1),
        rgba(0, 123, 255, 0.4),
        rgb(0, 123, 255, 1),
        rgba(0, 123, 255, 0.4) 
    );
    background-size: 400% 100%;
    animation: gradientSlide 8s linear infinite;
    border-radius: 2px;
}

.footer-links-column ul li {
    margin-bottom: 10px;
}

.footer-links-column ul li a {
    color: var(--text-secondary);
    transition: all var(--transition-normal);
    position: relative;
}

.footer-links-column ul li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(270deg, 
        rgba(0, 123, 255, 0.4),
        rgba(0, 123, 255, 1),
        rgba(0, 123, 255, 0.4),
        rgb(0, 123, 255, 1),
        rgba(0, 123, 255, 0.4) 
    );
    background-size: 400% 100%;
    transition: width 0.3s ease;
    animation: gradientSlide 8s linear infinite;
    border-radius: 2px;
    opacity: 0;
}

.footer-links-column ul li a:hover::after {
    width: 100%;
    opacity: 1;
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 400% 0%;
    }
}


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

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

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 195, 255, 0.3);
    transition: all var(--transition-normal);
    backdrop-filter: var(--blur-sm);
}

.chat-button i {
    font-size: 24px;
}

.chat-button span {
    display: none;
}

.chat-button:hover {
    width: auto;
    padding: 0 20px;
    border-radius: 30px;
}

.chat-button:hover i {
    margin-right: 10px;
}

.chat-button:hover span {
    display: block;
}

.chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background-color: var(--card-bg-color);
    border-radius: 10px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    display: none;
    transition: all var(--transition-normal);
    backdrop-filter: var(--blur-xl);
    border: 1px solid var(--glass-border);
}

.chat-popup.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    padding: 15px;
    background: var(--gradient-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: var(--blur-sm);
}

.chat-header h3 {
    font-size: 1.2rem;
}

.chat-close {
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-size: 1.2rem;
}

.chat-messages {
    height: 300px;
    padding: 15px;
    overflow-y: auto;
}

.chat-message {
    display: flex;
    margin-bottom: 15px;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    backdrop-filter: var(--blur-sm);
    border: 1px solid var(--glass-border);
}

.chat-message.user .message-avatar {
    margin-right: 0;
    margin-left: 10px;
}

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

.message-content {
    max-width: 70%;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    backdrop-filter: var(--blur-sm);
    border: 1px solid var(--glass-border);
}

.chat-message.user .message-content {
    background: var(--gradient-primary);
}

.message-time {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

.chat-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid var(--border-color);
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--text-color);
    outline: none;
    backdrop-filter: var(--blur-sm);
    border: 1px solid var(--glass-border);
}

.chat-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: var(--text-color);
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: var(--blur-sm);
}

.service-hero {
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 23, 0.9), rgba(17, 24, 39, 0.8));
    z-index: -1;
    backdrop-filter: var(--blur-sm);
}

.discord-hero::before {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(17, 24, 39, 0.8)), url('https://via.placeholder.com/1920x1080') no-repeat center center;
    background-size: cover;
}

.minecraft-hero::before {
    background: linear-gradient(135deg, rgba(67, 176, 71, 0.2), rgba(17, 24, 39, 0.8)), url('https://via.placeholder.com/1920x1080') no-repeat center center;
    background-size: cover;
}

.beamng-hero::before {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2), rgba(17, 24, 39, 0.8)), url('https://via.placeholder.com/1920x1080') no-repeat center center;
    background-size: cover;
}

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

.service-hero-content {
    flex: 1;
    max-width: 600px;
}

.service-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.service-hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.service-hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-xl);
    backdrop-filter: var(--blur-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.service-features {
    padding: 100px 0;
}

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

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .service-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .service-hero-content {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 15px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--background-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: all var(--transition-normal);
        backdrop-filter: var(--blur-xl);
        border-top: 1px solid var(--glass-border);
    }
    
    .nav-links.active {
        left: 0;
        background-color: rgba(10, 14, 23, 0.6);
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .floating-stats {
        position: static;
        margin-top: 20px;
    }
    
    .globe {
        height: 300px;
    }
    
    .globe-sphere {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .chat-popup {
        width: 300px;
    }
}

@media only screen and (max-width: 1000px) {
    .discord-widget {
    display: none;
    }
}

.flux-node {
    position: relative;
    cursor: pointer;
    transition:
        transform 1.1s cubic-bezier(.36,1.7,.43,1.01),
        box-shadow 1.1s cubic-bezier(.36,1.7,.43,1.01);
    backdrop-filter: var(--blur-sm);
    border: 1px solid var(--glass-border);
}

.flux-node:hover {
    transform: translateY(-10px) scale(1.07) rotate(-2deg);
    box-shadow:
        0 0 24px 2px #3efffa,
        0 12px 36px rgba(0,255,255,0.25),
        0 4px 24px rgba(0,0,0,0.10);
    z-index: 2;
}

.flux-popup {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translate(-50%, -24px) scale(0.85);
    min-width: 180px;
    padding: 15px 22px;
    background: rgba(25, 32, 50, 0.97);
    color: #fff;
    border-radius: 13px;
    box-shadow:
        0 0 24px 2px #3efffa,
        0 8px 32px rgba(0,255,255,0.10),
        0 1.5px 6px rgba(0,0,0,0.15);
    font-size: 1.08rem;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 1.5s cubic-bezier(.36,1.7,.43,1.01),
        transform 1.5s cubic-bezier(.36,1.7,.43,1.01),
        box-shadow 1.5s cubic-bezier(.36,1.7,.43,1.01);
    z-index: 10;
    font-family: inherit;
    filter: drop-shadow(0 0 6px #0ffbea99);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
}

.flux-node:hover .flux-popup {
    opacity: 1;
    transform: translate(-50%, 0) scale(1.13);
    pointer-events: auto;
    box-shadow:
        0 0 32px 4px #00fff7,
        0 12px 40px rgba(0,255,255,0.20),
        0 2px 18px rgba(0,0,0,0.18);
    filter: drop-shadow(0 0 14px #00ffe0cc);
}

.flux-popup::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -13px;
    transform: translateX(-50%);
    border-width: 0 12px 14px 12px;
    border-style: solid;
    border-color: transparent transparent #3efffa transparent;
    filter: blur(2px) brightness(2);
    opacity: 0.8;
    z-index: 1;
}

@media (max-width: 500px) {
    .flux-popup {
        min-width: 120px;
        font-size: 0.95rem;
        padding: 11px 7px;
    }
}

.trustpilot-wrapper {
display: flex;
justify-content: center;
align-items: center;
margin-top: 2rem;
}

.trustpilot-link {
position: relative;
display: inline-block;
color: #00b67a;
font-weight: 600;
text-decoration: none;
padding-bottom: 4px;
transition: color 0.3s ease, transform 0.3s ease;
}

.trustpilot-link::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
height: 2px;
width: 100%;
background-color: #00b67a;
transform: scaleX(0);
transform-origin: right;
transition: transform 0.3s ease;
}

.trustpilot-link:hover {
color: #00e69b;
transform: scale(1.03);
}

.trustpilot-link:hover::after {
transform: scaleX(1);
transform-origin: left;
}

.feature-cards-container {
display: flex;
margin-bottom: 30px;
flex-wrap: wrap;
gap: 16px;
justify-content: center;
}

.game-image {
  width: 350px;
  height: 100px;
}

.feature-card {
position: relative;
display: flex;
flex-direction: column;
padding: 35px;
border-radius: 16px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(0, 123, 255, 0.2);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
color: #e0e0e0;
max-width: 425px;
overflow: hidden;
transition: box-shadow 0.5s ease, border 0.5s ease;
box-shadow: 0 0 0 rgba(0, 123, 255, 0);
text-align: center;
}

.feature-card::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(45deg, rgba(0, 123, 255, 0.05), rgba(0, 123, 255, 0.15), rgba(0, 123, 255, 0.05));
z-index: 0;
transition: left 0.6s ease-in-out;
}

.feature-card:hover::before {
left: 100%;
}

.feature-card:hover {
box-shadow: 0 0 30px rgba(0, 123, 255, 0.2);
border-color: rgba(0, 123, 255, 0.4);
}

.feature-card * {
position: relative;
z-index: 1;
}

.icon-box,
.feature-icon {
background: rgba(0, 123, 255, 0.2);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
border-radius: 13px;
padding: 28px 12px 27px 12px;
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
margin: 0 auto px auto;
box-shadow: inset 0 0 6px rgba(0, 80, 255, 0.4), 0 4px 8px rgba(0, 80, 255, 0.3);
color: #a8d1ff;
transition: transform 0.5s ease, color 0.5s ease;
height: 56px;
width: 56px;
}

.feature-card:hover .icon-box,
.feature-card:hover .feature-icon {
transform: translateY(-10px) scale(1.25);
color: #c1e3ff;
}

.icon-gap {
margin-right: 15px;
}

.small-icons-gap{
    margin-right: 6px;
}

.review-card {
position: relative;
overflow: hidden;
}

.review-card::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(45deg, rgba(0, 123, 255, 0.05), rgba(0, 123, 255, 0.15), rgba(0, 123, 255, 0.05));
z-index: 0;
transition: left 0.6s ease-in-out;
}

.review-card:hover::before {
left: 100%;
}

.marquee-container {
overflow: hidden;
position: relative;
padding: 1.5rem 0;
background: rgba(20, 20, 25, 0.4);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.08);
box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.marquee-track {
display: flex;
gap: 2.5rem;
width: max-content;
animation: scroll 35s linear infinite;
will-change: transform;
padding: 0.5rem 1.5rem;
}

.marquee-track.pause-on-hover:hover {
animation-play-state: paused;
}

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

.brand-item {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100px;
height: 60px;
transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-img {
width: 100%;
height: 100%;
object-fit: contain;
filter: grayscale(100%) contrast(85%) brightness(0.9);
transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
opacity: 0.9;
}

.brand-label {
position: absolute;
bottom: -1.5rem;
opacity: 0;
font-size: 0.7rem;
font-weight: 500;
color: white;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
padding: 0.3rem 0.8rem;
border-radius: 1rem;
transform: translateY(0.5rem);
transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
white-space: nowrap;
text-transform: uppercase;
letter-spacing: 0.5px;
border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-item:hover {
transform: translateY(-0.25rem);
}

.brand-item:hover .brand-img {
filter: grayscale(0%) contrast(110%) brightness(1.05);
opacity: 1;
transform: scale(1.1);
}

.brand-item:hover .brand-label {
opacity: 1;
transform: translateY(0);
background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
.marquee-container {
    padding: 1rem 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.marquee-track {
    gap: 2rem;
    animation-duration: 25s;
}
.brand-item {
    width: 80px;
    height: 50px;
}
.brand-label {
    font-size: 0.6rem;
    bottom: -1.25rem;
}
}

.btn.btn-primary {
position: relative;
display: inline-block;
padding: 12px 28px;
font-size: 16px;
font-weight: 600;
color: #fff;
background: linear-gradient(135deg, #007bff, #0056b3);
border: none;
border-radius: 10px;
overflow: hidden;
cursor: pointer;
transition: 
    transform 0.3s cubic-bezier(0.33, 1, 0.68, 1), 
    box-shadow 0.3s ease;
z-index: 1;
transform-style: preserve-3d;
will-change: transform;
backdrop-filter: var(--blur-sm);
}

.btn.btn-primary::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 255, 255, 0.4),
    transparent
);
transform: skewX(-20deg);
z-index: 2;
transition: left 0.75s ease; 
pointer-events: none;
}

.btn.btn-primary:hover::before {
left: 100%;
}

.btn.btn-primary::after {
content: "";
position: absolute;
inset: 0;
background: rgba(255, 255, 255, 0.05);
opacity: 0;
transition: opacity 0.3s ease;
z-index: -1;
}

.btn.btn-primary:hover {
transform: translateY(-8px) translateZ(20px) scale(1.1);
box-shadow: 0 12px 35px rgba(0, 123, 255, 0.6);
}

.btn.btn-primary:hover::after {
opacity: 1;
}

#status-text {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 2rem;
font-weight: 700;
text-align: center;
padding: 30px 20px;
border-radius: 12px;
max-width: 400px;
margin: 50px auto;
box-shadow: 0 6px 15px rgba(0,0,0,0.1);
transition: all 0.4s ease;
user-select: none;
backdrop-filter: var(--blur-sm);
border: 1px solid var(--glass-border);
}

#status-text.operational {
color: #2ecc71;
background-color: #e6f4ea;
border: 2px solid #27ae60;
text-shadow: 0 0 8px rgba(46, 204, 113, 0.5);
}

#status-text.partial {
color: #f39c12;
background-color: #fff8e1;
border: 2px solid #f1c40f;
text-shadow: 0 0 8px rgba(243, 156, 18, 0.5);
}

#status-text.outage {
color: #e74c3c;
background-color: #fdecea;
border: 2px solid #c0392b;
text-shadow: 0 0 10px rgba(231, 76, 60, 0.6);
}

#status-text.maintenance {
color: #3498db;
background-color: #e6f0fa;
border: 2px solid #2980b9;
text-shadow: 0 0 8px rgba(52, 152, 219, 0.5);
}

.unique-new-badge {
    position: absolute;
    top: 0px; 
    left: 290px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #222;
    font-weight: 900;
    font-size: 0.8rem;
    padding: 8px 20px;
    border: 2px solid #FFD700;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    user-select: none;
    z-index: 10;
    transform: rotate(-10deg);
    animation: glowPulse 2s ease-in-out infinite;
    backdrop-filter: var(--blur-sm);
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 1), 0 0 60px rgba(255, 215, 0, 0.8), 0 0 90px rgba(255, 215, 0, 0.6);
    }
}


.gradient-hr {
    border: none;
    height: 2px;
    width: 100%;
    background: linear-gradient(270deg, 
        rgba(0, 123, 255, 0.4),
        rgba(0, 123, 255, 1),
        rgba(0, 123, 255, 0.4),
        rgb(0, 123, 255, 1),
        rgba(0, 123, 255, 0.4)
    );
    background-size: 400% 100%;
    animation: gradientSlide 8s linear infinite;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.7);
    border-radius: 2px;
    margin: 40px 0;
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 400% 0%;
    }
}

.trustpilot-badge-wrapper {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  margin-bottom: -25px;
}

.trustpilot-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  color: white;
  font-weight: 600;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  gap: 6px;
}

.trustpilot-badge .stars {
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: #ffb400; /* gold stars */
}

.trustpilot-badge .rating {
  font-size: 1.2rem;
  font-weight: 800;
  margin-left: 6px;
  background: linear-gradient(270deg, 
    rgba(0, 123, 255, 0.4),
    rgba(0, 123, 255, 1),
    rgba(0, 123, 255, 0.4),
    rgb(0, 123, 255, 1),
    rgba(0, 123, 255, 0.4)
  );
  background-size: 400% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientSlide 8s linear infinite;
  text-shadow: 0 0 5px rgba(0, 123, 255, 0.6);
  display: inline-block;
}

.trustpilot-badge .text {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

/* gradient animation */
@keyframes gradientSlide {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 400% 0%;
  }
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-weight: 700;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
    margin-left: 4px;
}

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

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    backdrop-filter: var(--blur-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition-normal);
    z-index: 1000;
    padding: var(--space-xs) 0;
}

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

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: var(--space-sm) var(--space-lg);
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid var(--glass-border);
    transition: background var(--transition-fast), color var(--transition-fast), padding-left var(--transition-fast);
    font-weight: 700;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--card-bg-hover);
    color: var(--primary-color);
    padding-left: calc(var(--space-lg) + 8px);
}

.game-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    filter: brightness(0.8);
    transition: filter var(--transition-fast);
    border-radius: 4px;
}

.dropdown-menu a:hover .game-icon {
    filter: brightness(1.2);
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-normal);
        border-radius: 0;
        background: var(--background-secondary);
        box-shadow: none;
        border: none;
    }

    .dropdown:hover .dropdown-menu {
        max-height: 300px;
    }

    .game-icon {
        width: 18px;
        height: 18px;
    }
}


@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    border-radius: 12px;
    background: rgba(10, 14, 23, 0.3);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
    padding: 0;
    z-index: auto;
    margin-right: -200px;
    margin-bottom: -10px;
  }

  .dropdown.open .dropdown-menu,
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    max-height: 150px;
    max-width: 100px;
    margin-left: -75px;
    background: rgba(10, 14, 23, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
  }

  .dropdown-menu a {
    padding: var(--space-sm) var(--space-lg);
    color: var(--text-color);
    font-weight: 700;
    background: transparent;
    border-bottom: none;
    transition: background var(--transition-fast), color var(--transition-fast), padding-left var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .dropdown-menu a:hover {
    background: var(--card-bg-hover);
    color: var(--primary-color);
    padding-left: calc(var(--space-lg) + 8px);
  }

  .game-icon {
    width: 18px;
    height: 18px;
  }
}

/*Out of stock badge*/
.ofs-badge {
    position: absolute;
    top: 0px; 
    left: 0px;
    background: linear-gradient(45deg, #ff0000, #ff0000);
    color: #222;
    font-weight: 900;
    font-size: 0.8rem;
    padding: 8px 20px;
    border: 2px solid #ff0000;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.6), 0 0 60px rgba(255, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    user-select: none;
    z-index: 10;
    transform: rotate(-10deg);
    animation: ofs-pulse 2s ease-in-out infinite;
    backdrop-filter: var(--blur-sm);
}

@keyframes ofs-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgb(255, 0, 0), 0 0 60px rgba(255, 0, 0, 0.8)90px rgba(255, 215, 0, 0.6);
    }
}
/* In stock badge */
.ins-badge {
    position: absolute;
    top: 0px; 
    left: 0px;
    background: linear-gradient(45deg, #2bff00, #2bff00);
    color: #222;
    font-weight: 900;
    font-size: 0.8rem;
    padding: 8px 20px;
    border: 2px solid rgb(0, 255, 42);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 255, 42, 0.8), 0 0 40px rgba(0, 255, 42, 0.8), 0 0 60px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    user-select: none;
    z-index: 10;
    transform: rotate(-10deg);
    animation: ins-badge 2s ease-in-out infinite;
    backdrop-filter: var(--blur-sm);
}

@keyframes ins-badge {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 42, 0.8), 0 0 40px rgba(0, 255, 42, 0.7), 0 0 60px rgba(255, 215, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 255, 42, 0.7), 0 0 60px rgba(0, 255, 42, 0.8), 0 0 90px rgba(255, 215, 0, 0.7);
    }
}
