body {
  background: #000;
  color: #2db569;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://default.seohost.pl/bg.svg');
  opacity: 0.6;
  z-index: -1;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: calc(100vh - 100px); /* Miejsce na footer */
}

.container {
  width: 100%;
  max-width: 800px;
  text-align: center;
}

/* Główna ikona domeny */
.domain-icon {
  margin-bottom: 3rem;
  animation: fadeIn 0.8s ease-out;
}

.domain-icon img {
  width: 100%;
  height: 400px;
  margin: 0 auto;
  display: block;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(45, 181, 105, 0.4));
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px); 
  }
  50% { 
    transform: translateY(-20px); 
  }
}

/* Sekcja domeny */
.domain-section {
  margin-bottom: 4rem;
  animation: fadeInDown 0.8s ease-out 0.3s both;
}

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

.domain-title {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 1rem 2rem;
  display: inline-block;
  position: relative;
  color: #2db569;
  text-transform: uppercase;
}

/* Narożniki dla domain title */
.domain-title::before,
.domain-title::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(45, 181, 105, 0.3);
}

.domain-title::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.domain-title::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

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

/* Sekcja powiadomienia */
.default-page-notice {
  background: rgba(45, 181, 105, 0.02);
  border: 1px solid rgba(45, 181, 105, 0.08);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 2rem auto;
  max-width: 600px;
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.6s both;
  transition: all 0.3s ease;
}

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

.notice-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: center;
}

.notice-icon {
  flex-shrink: 0;
  color: rgba(45, 181, 105, 0.4);
  margin-top: 2px;
  transition: all 0.3s ease;
}

.notice-icon svg {
  width: 18px;
  height: 18px;
}

.notice-text {
  margin: 0;
  color: rgba(45, 181, 105, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
}

.notice-text code {
  background: rgba(45, 181, 105, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
  color: #2db569;
  white-space: nowrap;
}

.notice-footer {
  margin: 1rem 0 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(45, 181, 105, 0.05);
  color: rgba(45, 181, 105, 0.3);
  font-size: 0.8rem;
  text-align: center;
}

/* Hover efekt */
.default-page-notice:hover {
  background: rgba(45, 181, 105, 0.03);
  border-color: rgba(45, 181, 105, 0.12);
  transform: translateY(-2px);
}

.default-page-notice:hover .notice-icon {
  color: rgba(45, 181, 105, 0.6);
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 1.5rem;
  z-index: 10;
}

.logo {
  max-width: 120px;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 1;
}

/* Responsywność */
@media (max-width: 768px) {
  .domain-icon img {
    width: 250px;
    height: 250px;
  }
  
  .domain-title {
    font-size: 2rem;
  }
  
  .domain-title::before,
  .domain-title::after {
    width: 30px;
    height: 30px;
  }
  
  .default-page-notice {
    padding: 1.2rem 1.5rem;
  }
  
  .notice-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .notice-text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .domain-icon img {
    width: 180px;
    height: 180px;
  }
  
  .domain-title {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  
  .default-page-notice {
    margin: 1rem;
  }
  
  .notice-text {
    font-size: 0.9rem;
  }
  
  .notice-footer {
    font-size: 0.75rem;
  }
}
