/* --- 1. Default State (Desktop) --- */
#mobile-blocked {
  display: none;
}

#main-content {
  display: block;
}

/* --- 2. Mobile Detection Logic --- */
/* Changed to 768px as requested */
@media screen and (max-width: 768px), screen and (pointer: coarse) {

  /* Hide the actual site */
  #main-content {
    display: none;
  }

  /* Show the warning overlay */
  #mobile-blocked {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #222;
    color: white;
    z-index: 10000;
    text-align: center;
    padding: 20px;
  }
  
  .message-box {
    border: 2px solid #ff4444;
    padding: 30px;
    border-radius: 10px;
    background-color: #333;
  }
}

@font-face {
  font-family: "GGSans";
  src: url('fonts/ggsans-Medium.woff'),
}
@font-face {
  font-family: "GGSansBold";
  src: url('fonts/ggsans-Semibold.woff'),
}
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

body {
  background-color: white;
}

.headlink {
  font-family: "GGSansBold";
  font-size: 40px;
  color: #6895c8;
  position: fixed;
  bottom: 51%;
  left: 56%;
}
.headlink:hover {
  color: #004494;
}

a {
  text-decoration: none;
  font-family: "GGSansBold";
  font-size: 40px;
  color: rgb(0, 0, 0);
}


.leftside {
  text-decoration: none;
  font-family: "GGSansBold";
  font-size: 40px;
  color: rgb(0, 0, 0);
  line-height: 0.45;
  position: fixed;
  top: 44%;
  left: 56%;
}
.leftside2 {
  text-decoration: none;
  font-family: "GGSansBold";
  font-size: 4vh;
  color: rgb(0, 0, 0);
  line-height: 0.45;
  position: absolute;
  top: 20%;
  left: 56%;
}
.files:hover::before {
  content: ">";
  position:absolute;
  right:153px
}
.services:hover::before {
  content: ">";
  position:absolute;
  right:153px
}
.socials:hover::before {
  content: ">";
  position:absolute;
  right:153px
}
.map:hover::before {
  content: ">";
  position:absolute;
  right:153px
}

.rightside {
  text-align: right;
  font-family: "GGSansBold";
  font-size: 40px;
  color: rgb(0, 0, 0);
  line-height: 0.45;
  position: fixed;
  bottom: 270px;
  left: 1430px;
}


.steam:hover::after {
  position:absolute;
  right:-30px
}
.twitter:hover::after {
  content: "> ‎ ‎ ‎ ‎ @tomthebotfly";
  position:absolute;
  right:-90px
}
.email:hover::after {
  content: "> ‎ ‎ ‎ ‎ tomthebotfly@gmail.com";
  position:absolute;
  right:-270px
}
.discord:hover::after {
  position:absolute;
  right:-30px
}


.back:hover::after {
  content: "<";
  position:absolute;
  right:240px
}