/* === GENERAL STYLING === */

/* @import url('https://fonts.googleapis.com/css2?family=Anton&display=swap'); */

body {
    font-family: 'Anton', sans-serif;
    background: url('../IMAGES/BLACK-WHITE-ARENA.png') no-repeat center center fixed;
    background-size: cover; /* Ensures the image fills the entire screen */
    text-align: center;
    margin: 0;
    padding: 0;
    color: white; /* Ensures text is readable */
}

/* === MAIN CONTAINER === */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Top-align content */
    min-height: 100vh; /* Allows it to grow taller if needed */
    backdrop-filter: brightness(50%);
    padding-top: 40px; /* Optional: spacing from top */
}


/* === LOGO STYLE === */
.logo h1 {
    font-size: 32px;
    border: 2px solid white;
    padding: 10px 20px;
    display: inline-block;
    background: rgba(0, 0, 0, 0.7); /* Black background to make text stand out */
}

/* === BUTTONS CONTAINER (STACKED VERTICALLY) === */
.buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Adds space between buttons */
    width: 100%;
}

.coming-soon {
    position: relative; /* Ensures overlay is positioned correctly */
    display: inline-block; /* Keeps the button/image size */
    cursor: not-allowed; /* Prevents clicking */
}

/* White semi-transparent overlay */
.coming-soon::after {
    content: "COMING SOON"; /* Text overlay */
    font-size:xx-large;
    color: grey;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5); /* White overlay with 30% opacity */
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-align: center;
    backdrop-filter: blur(3px); /* Slight blur for better effect */
    border-radius: 5px; /* Matches button/image styling */
    pointer-events: none; /* Ensures clicks don’t go through */
    border-radius: 15px; /* Rounds the corners */
}

/* === GAME IMAGE BUTTONS (GUESS THE FIGHTER & MYSTERY QUOTE) === */
.game-image {
    width: 500px;  /* Bigger button */
    height: auto;  /* Keeps aspect ratio */
    cursor: pointer;
    border-radius: 15px; /* Rounds the corners */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3); /* Adds a shadow effect */
    transition: 0.3s;
}

.game-image:hover {
    opacity: 0.85; /* Slight fade effect on hover */
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.5); /* Makes shadow more intense on hover */
}

/* === STANDARD BUTTONS STYLING === */
.buttons button {
    width: 250px;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    background-color: rgba(231, 76, 60, 0.9); /* UFC Red with transparency */
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.buttons button:hover {
    background-color: rgba(192, 57, 43, 0.9);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.4); /* Bigger shadow on hover */
}

/* === LANGUAGE BUTTON STYLE === */
.language-btn {
    background-color: rgba(220, 220, 220, 0.9);
    color: black;
    font-weight: bold;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    margin-top: 30px;
    transition: 0.3s;
    border-radius: 5px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.language-btn:hover {
    background-color: rgba(176, 176, 176, 0.9);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.4);
}

/* === RESPONSIVENESS (For Smaller Screens) === */
@media (max-width: 768px) {
    .game-image {
        width: 80%; /* Adjust image size for mobile */
    }
}

.logo img {
    width: 280px;  /* Adjust to your preferred size */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Ensures no extra spacing */
    margin: 0 auto; /* Centers it horizontally */
    max-width: 100%; /* Prevents it from overflowing */
}

/* Image Button */
.about-img-btn {
    margin-top: 30px;
    width: 60px;
    cursor: pointer;
  }
  
  /* Modal Overlay */
/* Turn modal into a normal container */
.modal {
    position: static;       /* No fixed overlay */
    width: 100%;            /* Full width of parent */
    height: auto;           /* Auto height */
    background: none;       /* No dark overlay */
    z-index: auto;          /* Normal stacking */
    overflow: visible;      /* Allow natural scrolling */
    display: block;         /* Make sure it's visible */
    padding: 40px 20px;     /* Optional spacing */
  }
  
  
  
  
  
  /* Modal Box */
  .modal-box {
    background: #2f2f2f;
    color: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    margin: 60px auto; /* Pushes it down from the top */
    padding: 30px 20px 25px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    border: 2px solid #d9a74a;
    position: relative;
  }
  
  
  
  /* Title */
  .modal-title {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
    border-bottom: 2px solid #d9a74a;
    padding-bottom: 10px;
  }
  
  /* Close Button */
  .close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 28px;
    color: #d9a74a;
    cursor: pointer;
  }
  
  /* Modal Text */
  .modal-content {
    font-size: 16px;
    color: #ddd;
    line-height: 1.5;
  }
  
  .modal-content ul {
    padding-left: 20px;
    margin-top: 10px;
  }
  
  .modal-content li {
    margin-bottom: 8px;
  }

  .privacy-button {
    display: inline-block;
    background-color: #1e40af;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 12px;
  }
  
  .privacy-button:hover {
    background-color: #1d4ed8;
  }
  