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

html {
  font-size: 16px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: hsl(240, 21%, 8%);
  color: hsl(0, 0%, 98%);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 600px;
  width: 100%;
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

.icon-container {
  margin-bottom: 2.5rem;
  animation: float 3s ease-in-out infinite;
}

.offline-icon {
  width: 120px;
  height: 120px;
  color: hsl(250, 84%, 54%);
  filter: drop-shadow(0 0 40px hsla(250, 84%, 54%, 0.3));
}
.offline-icon .wifi-arc {
  opacity: 0.6;
  animation: fadeArc 2s ease-in-out infinite;
}
.offline-icon .wifi-arc.wifi-arc-1 {
  animation-delay: 0s;
}
.offline-icon .wifi-arc.wifi-arc-2 {
  animation-delay: 0.2s;
}
.offline-icon .wifi-arc.wifi-arc-3 {
  animation-delay: 0.4s;
}
.offline-icon .wifi-dot {
  opacity: 0.8;
}
.offline-icon .slash-line {
  stroke: hsl(0, 84%, 54%);
  animation: pulse 2s ease-in-out infinite;
}

.title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, hsl(0, 0%, 98%) 0%, hsl(240, 5%, 65%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .title {
    font-size: 2.25rem;
  }
}

.description {
  font-size: 1.125rem;
  color: hsl(240, 5%, 65%);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .description {
    font-size: 1rem;
  }
}

.retry-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  font-family: inherit;
  color: hsl(0, 0%, 98%);
  background: hsl(250, 84%, 54%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px hsla(0, 0%, 0%, 0.3), 0 0 40px hsla(250, 84%, 54%, 0.3);
  position: relative;
  overflow: hidden;
}
.retry-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, hsla(255, 100%, 100%, 0.1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.retry-button:hover {
  background: hsl(250, 84%, 48%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px hsla(0, 0%, 0%, 0.4), 0 0 50px hsla(250, 84%, 54%, 0.4);
}
.retry-button:hover::before {
  transform: translateX(100%);
}
.retry-button:hover .button-icon {
  transform: rotate(180deg);
}
.retry-button:active {
  background: hsl(250, 84%, 42%);
  transform: translateY(0);
}
.retry-button .button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: transform 0.6s ease;
}
.retry-button .button-icon svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .retry-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

.tips-container {
  margin-top: 4rem;
  padding: 2rem;
  background: hsl(240, 15%, 12%);
  border: 1px solid hsla(240, 15%, 25%, 0.3);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px hsla(0, 0%, 0%, 0.3);
  animation: fadeInUp 0.8s ease 0.2s backwards;
}
@media (max-width: 768px) {
  .tips-container {
    padding: 1.5rem;
    margin-top: 3rem;
  }
}

.tips-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: hsl(0, 0%, 98%);
}
@media (max-width: 768px) {
  .tips-title {
    font-size: 1.125rem;
  }
}

.tips-list {
  list-style: none;
  text-align: left;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: hsla(240, 15%, 18%, 0.5);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.tip-item:last-child {
  margin-bottom: 0;
}
.tip-item:hover {
  background: hsla(240, 15%, 20%, 0.7);
  border-color: hsla(250, 84%, 54%, 0.3);
  transform: translateX(4px);
}
.tip-item .tip-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}
.tip-item .tip-text {
  color: hsl(240, 5%, 65%);
  font-size: 0.9375rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .tip-item {
    padding: 0.875rem;
  }
  .tip-item .tip-icon {
    font-size: 1.25rem;
  }
  .tip-item .tip-text {
    font-size: 0.875rem;
  }
}

.bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, hsla(250, 84%, 54%, 0.15) 0%, hsla(280, 84%, 54%, 0.05) 100%);
  filter: blur(80px);
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}
.circle.circle-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
  background: linear-gradient(135deg, hsla(250, 84%, 54%, 0.15) 0%, hsla(280, 84%, 54%, 0.05) 100%);
  animation-duration: 10s;
}
.circle.circle-2 {
  width: 500px;
  height: 500px;
  bottom: -250px;
  left: -150px;
  background: linear-gradient(225deg, hsla(200, 84%, 54%, 0.1) 0%, hsla(250, 84%, 54%, 0.05) 100%);
  animation-duration: 12s;
  animation-delay: -2s;
}
.circle.circle-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, hsla(280, 84%, 54%, 0.1) 0%, hsla(200, 84%, 54%, 0.05) 100%);
  animation-duration: 15s;
  animation-delay: -5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes fadeArc {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 8px hsla(0, 84%, 54%, 0.8));
  }
}/*# sourceMappingURL=styles.css.map */