* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

.main-container {
  min-height: 100vh;
  width: 100%;
}

/* Desktop Layout */
.desktop-layout {
  display: none;
}

@media (min-width: 768px) {
  .desktop-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100vh;
    width: 100%;
  }
}

.section {
  width: 100%;
  height: 100%;
}

/* Red Section - Logo */
.section-red {
  background-color: #e31e30;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
}

.slide-number {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-family: "Courier New", monospace;
}

.logo {
  width: 100%;
  max-width: 28rem;
  height: auto;
  object-fit: contain;
}

/* Blue Section - Text */
.section-blue {
  background-color: #2b9fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 3rem;
}

.blue-header {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.since-text {
  color: white;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.blue-content {
  width: 100%;
}

.title {
  color: white;
  font-weight: bold;
  font-size: 2.75rem;
  line-height: 1.15;
}

/* Image Section */
.section-image {
  background-color: black;
  overflow: hidden;
}

.roblox-map {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Social Section */
.section-social {
  background-color: #2a3d5a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 3rem;
}

.social-link {
  transition: transform 0.2s ease;
  display: inline-block;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-link:active {
  transform: scale(0.95);
}

.social-icon {
  width: 5rem;
  height: 5rem;
}

/* Mobile Layout */
.mobile-layout {
  display: block;
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 1rem;
}

@media (min-width: 768px) {
  .mobile-layout {
    display: none;
  }
}

.mobile-card {
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.card-content {
  display: flex;
  flex-direction: column;
}

.mobile-section {
  width: 100%;
}

/* Mobile Red Section */
.mobile-red {
  background-color: #e31e30;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  aspect-ratio: 16 / 9;
}

.mobile-red .slide-number {
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.625rem;
}

.mobile-logo {
  width: 100%;
  max-width: 17.5rem;
  height: auto;
  object-fit: contain;
}

/* Mobile Blue Section */
.mobile-blue {
  background-color: #2b9fff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-blue-header {
  display: flex;
  justify-content: flex-end;
}

.mobile-since-text {
  color: white;
  font-weight: bold;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.mobile-title {
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.25;
}

/* Mobile Social Section */
.mobile-social {
  background-color: #2a3d5a;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-social-link {
  transition: transform 0.2s ease;
  display: inline-block;
}

.mobile-social-link:active {
  transform: scale(0.95);
}

.mobile-social-icon {
  width: 3.5rem;
  height: 3.5rem;
}

/* Mobile Image Footer */
.mobile-image-footer {
  height: 14rem;
  background-color: black;
  overflow: hidden;
}

.mobile-roblox-map {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.google-sans-700 {
  font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "GRAD" 0;
}
