@import url("../styles/components/base.css");

:root {
  --header-height: 80px;
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Enhanced Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  box-shadow: 0 15px 35px rgba(108, 50, 172, 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;
  border-color: var(--primary-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #0a0a0a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(108, 50, 172, 0.3) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light), #9d50bb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite, fadeInUp 0.8s ease backwards;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: 2rem;
  color: var(--text-secondary);
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* Sections */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 0.8rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--primary-color), var(--primary-light), transparent);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(108, 50, 172, 0.4);
}

.section-title::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(1.1);
  width: 130px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(157, 80, 187, 0.3), rgba(108, 50, 172, 0.3), transparent);
  border-radius: 10px;
  filter: blur(3px);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 4rem;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Server Cards */
.servers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.server-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}

.server-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(108, 50, 172, 0.15), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.server-card:hover::before {
  opacity: 1;
}

.server-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 25px 50px rgba(108, 50, 172, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.server-image-container {
  height: 300px;
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
}

.server-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.server-card:hover .server-image {
  transform: scale(1.1);
}

.server-status {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(76, 175, 80, 0.95);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.server-status::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.server-content {
  padding: 2.5rem;
  position: relative;
  z-index: 2;
}

.server-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.server-title {
  font-size: 2rem;
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.server-location {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.server-location i {
  color: var(--primary-color);
}

.server-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.spec-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.2rem;
  transition: all 0.3s ease;
}

.spec-item:hover {
  border-color: var(--primary-color);
  background: rgba(108, 50, 172, 0.1);
  transform: translateY(-3px);
}

.spec-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spec-value {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 700;
}

.spec-icon {
  color: var(--primary-color);
  font-size: 1rem;
}

/* Datacenter Section */
.datacenter-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(26, 26, 26, 0.5) 50%, var(--bg-secondary) 100%);
}

.datacenter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.datacenter-info {
  padding: 2rem 0;
}

.datacenter-info h3 {
  font-size: 2.2rem;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.datacenter-info p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.datacenter-features {
  list-style: none;
  margin-bottom: 2rem;
}

.datacenter-features li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: all 0.3s ease;
  color: var(--text-secondary);
}

.datacenter-features li:hover {
  padding-left: 0.5rem;
  color: var(--text-primary);
}

.datacenter-features li:last-child {
  border-bottom: none;
}

.datacenter-features .feature-icon {
  color: var(--primary-color);
  font-size: 1.3rem;
  width: 30px;
  text-align: center;
  flex-shrink: 0;
}

/* Slideshow */
.slideshow-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.slide {
  display: none;
  position: relative;
}

.slide.active {
  display: block;
  animation: slideIn 0.6s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slide img {
  width: 100%;
  height: auto;
  min-height: 500px;
  max-height: 500px;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
  padding: 2.5rem;
  color: white;
}

.slide-overlay h4 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.slide-overlay p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.slideshow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideshow-nav:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.slideshow-nav.prev {
  left: 1.5rem;
}

.slideshow-nav.next {
  right: 1.5rem;
}

.slideshow-indicators {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
}

.indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.indicator.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(108, 50, 172, 0.5);
}

.indicator:hover {
  background: var(--primary-light);
  transform: scale(1.2);
}

/* Network Stats */
.network-stats {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(74, 34, 118, 0.1) 100%);
  padding: 6rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(108, 50, 172, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 25px 50px rgba(108, 50, 172, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

/* Security Section */
.security-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-dark) 100%);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.security-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.security-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(108, 50, 172, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.security-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 25px 50px rgba(108, 50, 172, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.security-card:hover::before {
  opacity: 1;
}

.security-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  display: inline-block;
}

.security-card:hover .security-icon {
  transform: scale(1.1) rotate(5deg);
  color: var(--primary-light);
}

.security-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.security-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  position: relative;
  z-index: 2;
  font-size: 1.05rem;
}

/* Goal Cards */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.goal-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.goal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(108, 50, 172, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.goal-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 25px 50px rgba(108, 50, 172, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.goal-card:hover::before {
  opacity: 1;
}

.goal-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  display: inline-block;
}

.goal-card:hover .goal-icon {
  color: var(--primary-light);
  transform: scale(1.1) rotate(5deg);
}

.goal-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.goal-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */

/* Large Desktop */
@media (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }
  
  .servers-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 1200px) {
  .datacenter-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .slideshow-container {
    max-width: 700px;
    margin: 0 auto;
  }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .section {
    padding: 6rem 0;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .server-specs {
    grid-template-columns: 1fr;
  }
}

/* Tablet Portrait and Mobile Landscape */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding: calc(var(--header-height) + 2rem) 1rem 4rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
    margin-bottom: 3rem;
  }

  .servers-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .server-card {
    border-radius: 24px;
  }
  
  .server-image-container {
    height: 250px;
  }
  
  .server-content {
    padding: 2rem;
  }
  
  .server-title {
    font-size: 1.8rem;
  }

  .server-specs {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .spec-item {
    padding: 1rem;
  }
  
  .spec-value {
    font-size: 1.1rem;
  }

  .datacenter-info h3 {
    font-size: 1.8rem;
  }
  
  .datacenter-info p {
    font-size: 1rem;
  }
  
  .datacenter-features li {
    padding: 0.8rem 0;
    gap: 1rem;
  }
  
  .datacenter-features .feature-icon {
    font-size: 1.1rem;
    width: 25px;
  }
  
  .slide img {
    min-height: 350px;
    max-height: 350px;
  }
  
  .slide-overlay {
    padding: 2rem;
  }
  
  .slide-overlay h4 {
    font-size: 1.3rem;
  }
  
  .slide-overlay p {
    font-size: 0.95rem;
  }
  
  .slideshow-nav {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  
  .slideshow-nav.prev {
    left: 1rem;
  }
  
  .slideshow-nav.next {
    right: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .stat-card {
    padding: 2rem 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }

  .security-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .security-card {
    padding: 2rem;
  }
  
  .security-icon {
    font-size: 2.5rem;
  }
  
  .security-card h4 {
    font-size: 1.3rem;
  }
  
  .security-card p {
    font-size: 1rem;
  }
  
  .goals-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .goal-card {
    padding: 2.5rem 2rem;
  }
  
  .goal-icon {
    font-size: 2.5rem;
  }
  
  .goal-card h3 {
    font-size: 1.5rem;
  }
  
  .goal-card p {
    font-size: 1rem;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .hero {
    padding: calc(var(--header-height) + 1rem) 0.5rem 3rem;
  }
  
  .hero h1 {
    font-size: 2rem;
    padding: 0 1rem;
  }
  
  .hero p {
    font-size: 0.95rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
  }
  
  .server-card {
    border-radius: 20px;
  }
  
  .server-image-container {
    height: 220px;
  }
  
  .server-content {
    padding: 1.5rem;
  }
  
  .server-title {
    font-size: 1.6rem;
  }
  
  .server-location {
    font-size: 0.85rem;
  }
  
  .server-status {
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .spec-item {
    padding: 0.9rem;
  }
  
  .spec-label {
    font-size: 0.75rem;
  }
  
  .spec-value {
    font-size: 1rem;
  }
  
  .datacenter-info h3 {
    font-size: 1.6rem;
  }
  
  .datacenter-info p {
    font-size: 0.95rem;
  }
  
  .datacenter-features li {
    padding: 0.7rem 0;
    font-size: 0.95rem;
  }
  
  .datacenter-features .feature-icon {
    font-size: 1rem;
    width: 22px;
  }
  
  .slide img {
    min-height: 280px;
    max-height: 280px;
  }
  
  .slide-overlay {
    padding: 1.5rem;
  }
  
  .slide-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .slide-overlay p {
    font-size: 0.85rem;
  }
  
  .slideshow-nav {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .slideshow-nav.prev {
    left: 0.8rem;
  }
  
  .slideshow-nav.next {
    right: 0.8rem;
  }
  
  .slideshow-indicators {
    gap: 0.6rem;
    padding: 1rem;
  }
  
  .indicator {
    width: 12px;
    height: 12px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .stat-card {
    padding: 2rem 1.5rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .security-card {
    padding: 2rem 1.5rem;
  }
  
  .security-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }
  
  .security-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .security-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .goal-card {
    padding: 2rem 1.5rem;
  }
  
  .goal-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }
  
  .goal-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  
  .goal-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .server-title {
    font-size: 1.4rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .security-icon,
  .goal-icon {
    font-size: 2rem;
  }
  
  .security-card h4,
  .goal-card h3 {
    font-size: 1.1rem;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .server-card:hover,
  .stat-card:hover,
  .security-card:hover,
  .goal-card:hover {
    transform: none;
  }
  
  .btn:hover {
    transform: translateY(-2px);
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .server-image,
  .slide img {
    image-rendering: -webkit-optimize-contrast;
  }
}