body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.slider-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.slide-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  text-align: center;
  color: white;
  padding: 0 20px;
  max-width: 800px;
  width: 100%;
  box-sizing: border-box;
}

.slide-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.slide-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #e5e5e5;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}   

.ar-button {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(31, 41, 55, 0.9);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  text-shadow: none;
}

.ar-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: rgba(31, 41, 55, 0.9);
  backdrop-filter: blur(10px);
  color: #9ca3af;
  text-align: center;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
