
/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--navbar-height);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.0);
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
}

.hero-content {
  text-align: center;
  z-index: 1;
  padding: var(--spacing-md);
}

.hero-logo {
  width: min(700px, 80vw);
  margin: 0 auto var(--spacing-md);
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.788));
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
  opacity: 0.9;
}

.hero-ip-box {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 6px;
  margin-top: var(--spacing-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-width: 520px;
}

.hero-ip-address {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 18px;
  border-radius: 8px;
  flex: 1;
  transition: background 0.2s ease;
}

.hero-ip-address:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-ip-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #888888;
  box-shadow: 0 0 6px #888888;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.status-indicator.online {
  background: #00ff00;
  box-shadow: 0 0 6px #00ff00, 0 0 12px rgba(0, 255, 0, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.status-indicator.offline {
  background: #ff4444;
  box-shadow: 0 0 8px #ff4444, 0 0 16px rgba(255, 68, 68, 0.5);
  animation: none;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.hero-ip-text {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.5px;
  font-family: 'Outfit', sans-serif;
  user-select: all;
}

.copy-btn {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.copy-btn:active {
  transform: none;
  transition: none;
}

.copy-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--gradient-orange);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(255, 34, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 34, 0, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-orange);
  transform: translateY(-3px);
}

.btn-discord {
  background: #5865F2;
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
  font-size: 1.1rem;
}

.btn-discord:hover {
  background: #4752C4;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(88, 101, 242, 0.5);
}

/* === FEATURES SECTION === */
.features-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 34, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(255, 34, 0, 0.3);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--spacing-md);
  background: var(--gradient-orange);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 34, 0, 0.4);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 30px rgba(255, 34, 0, 0.6);
}

.feature-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--color-white);
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--spacing-xs);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* === ABOUT SECTION === */
.about-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  margin-bottom: var(--spacing-xl);
}

.about-block:last-child {
  margin-bottom: 0;
}

.about-block.reverse {
  direction: rtl;
}

.about-block.reverse > * {
  direction: ltr;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--color-orange);
  margin-bottom: var(--spacing-sm);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--spacing-sm);
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  transition: var(--transition-normal);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-slow);
}

.about-image:hover {
  box-shadow: 0 0 30px rgba(255, 34, 0, 0.4);
}

.about-image:hover img {
  transform: scale(1.05);
}

/* === COMMUNITY SECTION === */
.community-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.community-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.community-widget {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.community-widget iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: var(--radius-md);
}

.community-content {
  padding: var(--spacing-md);
}

.community-content h2 {
  font-size: 2.5rem;
  color: var(--color-orange);
  margin-bottom: var(--spacing-sm);
}

.community-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--spacing-md);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-block {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .about-block.reverse {
    direction: ltr;
  }
  
  .community-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    height: 100vh;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-ip-text {
    font-size: 1.05rem;
  }
  
  .hero-ip-box {
    padding: 5px;
  }
  
  .hero-ip-address {
    padding: 12px 16px;
    gap: 10px;
  }
  
  .hero-ip-content {
    gap: 8px;
  }
  
  .status-indicator {
    width: 7px;
    height: 7px;
  }
  
  .copy-btn {
    width: 34px;
    height: 34px;
  }
  
  .copy-btn svg {
    width: 15px;
    height: 15px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
  }
  
  .about-text h2 {
    font-size: 2rem;
  }
  
  .about-text p {
    font-size: 1rem;
  }
  
  .about-stats {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .stat-item h3 {
    font-size: 2rem;
  }
  
  .community-content h2 {
    font-size: 2rem;
  }
  
  .community-content p {
    font-size: 1rem;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: var(--spacing-md);
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 100vh;
    height: 100vh;
    padding-top: var(--navbar-height);
  }
  
  .hero-content {
    padding: 10px var(--spacing-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }
  
  .hero-logo {
    width: 80vw;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
  }
  
  .hero-ip-box {
    padding: 3px;
    width: 95%;
    border-radius: 10px;
    margin: 0 auto;
  }
  
  .hero-ip-address {
    padding: 10px 12px;
    gap: 6px;
    border-radius: 7px;
  }
  
  .hero-ip-content {
    gap: 6px;
  }
  
  .hero-ip-text {
    font-size: 0.85rem;
    letter-spacing: 0.3px;
  }
  
  .hero-actions {
    margin: 0;
    gap: 8px;
  }
  
  .hero-actions .btn {
    font-size: 0.9rem;
    padding: 9px var(--spacing-md);
  }
  
  .hero-actions .btn svg {
    width: 18px;
    height: 18px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .feature-card {
    padding: var(--spacing-md);
  }
  
  .feature-icon {
    width: 55px;
    height: 55px;
  }
  
  .feature-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .feature-card p {
    font-size: 0.95rem;
  }
  
  .section {
    padding: var(--spacing-lg) 0;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
  }
  
  .about-block {
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }
  
  .about-text h2 {
    font-size: 1.5rem;
  }
  
  .about-text p {
    font-size: 0.9rem;
  }
  
  .community-container {
    gap: var(--spacing-md);
  }
  
  .community-content h2 {
    font-size: 1.5rem;
  }
  
  .community-content p {
    font-size: 0.9rem;
  }
  
  .community-widget iframe {
    height: 400px;
  }
  
  .status-indicator {
    width: 6px;
    height: 6px;
  }
  
  .copy-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }
  
  .copy-btn svg {
    width: 14px;
    height: 14px;
  }
  
  .about-text h2 {
    font-size: 1.6rem;
  }
  
  .about-text p {
    font-size: 0.95rem;
  }
  
  .stat-item h3 {
    font-size: 1.8rem;
  }
  
  .stat-item p {
    font-size: 0.9rem;
  }
  
  .community-content h2 {
    font-size: 1.6rem;
  }
  
  .community-content p {
    font-size: 0.95rem;
  }
  
  .news-card {
    padding: var(--spacing-sm);
  }
  
  .news-card h3 {
    font-size: 1.2rem;
  }
  
  .news-card p {
    font-size: 0.9rem;
  }
  
  .feature-card {
    padding: var(--spacing-sm);
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .feature-card p {
    font-size: 0.85rem;
  }
}

/* === MAZECRAFT NEWS SECTION === */
.news-section {
  padding: var(--spacing-xl) 0;
  background: #0a0a0a;
}

.news-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 34, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.news-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 34, 0, 0.1) 0%, transparent 70%);
  animation: pulse-news 3s ease-in-out infinite;
}

@keyframes pulse-news {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.news-content {
  text-align: center;
  z-index: 1;
  position: relative;
}

.news-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  color: var(--color-orange);
}

.news-content h3 {
  font-size: 2rem;
  color: var(--color-orange);
  margin-bottom: var(--spacing-sm);
}

.news-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}
