* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
}

.font-great-vibes {
  font-family: 'Great Vibes', cursive;
}

.container {
  height: 100vh;
  width: 100vw;
  background-image: url('Skimy.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
}

@media (orientation: portrait) and (max-width: 768px) {
  .container {
    background-image: url('Skimy2.jpg');
  }
}

.skimy-title {
  font-size: clamp(5.25rem, 13.5vw, 10.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.skimy-variant {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 20;
}

.skimy-line {
  width: 70%;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 20%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.5) 80%,
    transparent 100%
  );
  margin-top: -0.1em;
}

.skimy-tagline {
  margin-top: 1rem;
  font-size: clamp(0.425rem, 0.75vw, 0.55rem);
  color: rgba(255, 255, 255, 0.55);
  font-family: system-ui, sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
}

.mail-icon {
  position: fixed;
  top: 3rem;
  left: 3rem;
  z-index: 300;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  filter: drop-shadow(0 0 12px #ff2a2a) drop-shadow(0 0 28px #ff2a2a) drop-shadow(0 0 60px rgba(255, 42, 42, 0.7)) drop-shadow(0 0 90px rgba(255, 42, 42, 0.35));
  transition: filter 0.3s ease, transform 0.3s ease;
  animation: neonPulse 2.5s ease-in-out infinite;
  padding: 0;
}

.mail-icon:hover {
  filter: drop-shadow(0 0 16px #ff3b3b) drop-shadow(0 0 38px #ff3b3b) drop-shadow(0 0 75px rgba(255, 59, 59, 0.85)) drop-shadow(0 0 110px rgba(255, 59, 59, 0.45));
  transform: scale(1.12);
}

.mail-icon svg {
  width: 100%;
  height: 100%;
}

@keyframes neonPulse {
  0%, 100% {
    filter: drop-shadow(0 0 12px #ff2a2a) drop-shadow(0 0 28px #ff2a2a) drop-shadow(0 0 60px rgba(255, 42, 42, 0.7)) drop-shadow(0 0 90px rgba(255, 42, 42, 0.35));
  }
  50% {
    filter: drop-shadow(0 0 18px #ff3b3b) drop-shadow(0 0 42px #ff3b3b) drop-shadow(0 0 85px rgba(255, 59, 59, 0.85)) drop-shadow(0 0 120px rgba(255, 59, 59, 0.45));
  }
}

.forum-icon {
  text-decoration: none;
  position: fixed;
  top: 3rem;
  left: 7rem;
  z-index: 100;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 12px #0066ff) drop-shadow(0 0 28px #0066ff) drop-shadow(0 0 60px rgba(0, 102, 255, 0.7)) drop-shadow(0 0 90px rgba(0, 102, 255, 0.35));
  transition: filter 0.3s ease, transform 0.3s ease;
  animation: neonBluePulse 2.5s ease-in-out infinite;
  padding: 0;
}

.forum-icon:hover {
  filter: drop-shadow(0 0 16px #00aaff) drop-shadow(0 0 38px #00aaff) drop-shadow(0 0 75px rgba(0, 170, 255, 0.85)) drop-shadow(0 0 110px rgba(0, 170, 255, 0.45));
  transform: scale(1.12);
}

.forum-icon svg {
  width: 100%;
  height: 100%;
}

@keyframes neonBluePulse {
  0%, 100% {
    filter: drop-shadow(0 0 12px #0066ff) drop-shadow(0 0 28px #0066ff) drop-shadow(0 0 60px rgba(0, 102, 255, 0.7)) drop-shadow(0 0 90px rgba(0, 102, 255, 0.35));
  }
  50% {
    filter: drop-shadow(0 0 18px #00aaff) drop-shadow(0 0 42px #00aaff) drop-shadow(0 0 85px rgba(0, 170, 255, 0.85)) drop-shadow(0 0 120px rgba(0, 170, 255, 0.45));
  }
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  max-width: 480px;
  width: 140%;
  padding: 2.5rem 2rem;
  background: rgba(20, 20, 25, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 40px rgba(255, 26, 26, 0.08);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #fff;
}

.modal-text {
  color: rgba(255, 255, 255, 0.75);
  font-family: system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.modal-text strong {
  color: #fff;
  font-weight: 600;
}

.modal-contact {
  color: rgba(255, 255, 255, 0.5);
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  margin: 0;
}

.modal-contact a {
  color: #ff4444;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 68, 68, 0.3);
  transition: border-color 0.2s, color 0.2s;
}

.modal-contact a:hover {
  color: #ff6666;
  border-bottom-color: #ff6666;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.flex-8 {
  flex: 8;
}

.flex-1 {
  flex: 1;
}
