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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    background-color: #101010;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    background: rgba(126, 126, 126, 0.1);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-links a.active {
    color: #72a7eb;
}


.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 40px;
}

.logo img {
    height: 150%;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a:hover {
    color: #72a7eb;
    transform: translateY(-2px);
}

/* Hero Background */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 1rem 3rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 102%;
  background: url('/resources/sitebackground.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
}

.hero h1 {
  font-size: 3.5rem;
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: #ffffffd7;
  margin-bottom: 2rem;
}

/* Socials */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  justify-items: center;
  margin-top: 2rem;
  padding: 0 1rem;
}

.social-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 180px;
}

.social-card img {
  width: 48px;
  height: 48px;
}

.social-card span {
  font-size: 1rem;
  font-weight: bold;
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(11, 90, 204, 0.2);
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Modal */
.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-overlay.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 500px;
  width: 90%;
  text-align: center;
  color: #ffffff;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.cookie-overlay.show .cookie-modal {
  transform: scale(1);
}

.cookie-title {
  font-size: 1.5rem;
  background: linear-gradient(45deg, #5f178c, #0b5acc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.cookie-text {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-button {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  font-family: inherit;
}

.cookie-accept {
  background: linear-gradient(45deg, #5f178c, #0b5acc);
  color: white;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(11, 90, 204, 0.4);
}

.cookie-decline {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
  .nav-container button {
    display: block !important;
  }
  .nav-container.mobileopen button {
    display: none !important;
  }
  .nav-links {
    display: none;
  }
  .mobileopen .mobileonly {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-button {
    width: 100%;
  }
}

.nav-container button {
  background: transparent;
  border: none;
  border-radius: 12px;
  padding: 4px 8px;
  cursor: pointer;
  transition: background 0.2s;
  display: none;
}
.nav-container button:focus {
  outline: 2px solid #72a7eb;
}
.nav-container button:hover {
  background: rgba(114,167,235,0.15);
}

.mobileonly {
  display: none;
}

.mobileopen.nav-links {
  display: block;
  width: 100%;
}

.mobileopen.nav-links a {
  display: block;
  font-size: 1.2rem;
  text-align: center;
  padding: 5px;
  margin: 6px 0;
  border-radius: 10px;
  background-color: #00000046;
}

.mobileopen.nav-container {
  display: block;
}
