/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  background-image:url(images/carpet.png);
  display: flex;
  justify-content: center;
  padding: 20px;
  font-family: sans-serif;
}

/* Layout */
.container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
}

/* Base column styles */
.column {
  border-radius: 8px;
  padding: 20px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Column sizing */
.column-1, .column-3 {
  flex: 1;
  min-width: 150px;
  background-color: #007BFF;
}


.column-2 {
  flex: 3;
  background-color: cyan;
  padding: 40px;
  color: black;
  border-top: 6px solid yellow;
  border-left: 6px solid yellow;
  border-bottom: 6px solid hotpink;
  border-right: 6px solid hotpink;
  box-shadow:
    0 -2px 0 1px gray,   /* outline for top border */
    0 2px 0 1px gray;    /* outline for bottom border */
}

/* Frame inside column 2  */
.content-frame {
  background-color: rgba(255, 255, 255, 0.8);
  width:100%;
  
  padding: 40px;
  text-align: center;
  border: none; /* removed double border */
}

/* Responsive iframe container */
.iframe-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 aspect ratio — square */
  overflow: hidden;
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Optional pixelated text styling */
.pixelated-text {
  font-family: 'Press Start 2P', cursive;
  font-size: 0.7rem;
  margin-top: 20px;
  text-align: center;
  color: black;
}

.optional-text {
  margin-top: 20px;
  padding: 10px;
}

/* Column 1 - green round arcade buttons */
.button-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.button-links a {
  background-color: limegreen;
  color: black;
  font-weight: bold;
  text-decoration: none;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  box-shadow: 0 4px #004d00;
  text-align: center;
  display: inline-block;
  transition: transform 0.1s ease;
  font-size: 0.9rem;
}

.button-links a:hover {
  transform: scale(1.1);
}

/* Column 3 - pixelated yellow options */
.options-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.7rem;
}

.options-menu a {
  color: yellow;
  text-decoration: none;
  background: none;
  padding: 10px;
  display: inline-block;
  border: 2px dashed yellow;
  text-align: center;
  transition: background-color 0.2s;
}

.options-menu a:hover {
  background-color: rgba(255, 255, 0, 0.2);
}

/* Responsive order and stacking */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .column-1 {
    order: 2;
  }

  .column-2 {
    order: 1;
  }

  .column-3 {
    order: 3;
  }

  .column {
    width: 100%;
    max-width: 500px;
  }
}
