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

        .invisible-footer {
    visibility: hidden; /* Makes the footer invisible */
    margin-top: 40px; /* Adds margin to the footer's position */
    height: 20px; /* You can adjust the height to your preference */
}
        body {
            background-color: #0a0a0a; /* Black background */
            color: #f4f4f4; /* Light gray text */
            font-family: 'Roboto', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            overflow-x: hidden;
        }

        h1 {
            font-family: 'Press Start 2P', cursive; /* Retro gaming font */
            color: #ffa500; /* Orange color for the title */
            font-size: 3.5em;
            margin-bottom: 20px;
            text-align: center;
            padding-top: 40px; /* Added padding to the top of the header */
        }

        h1 a {
            text-decoration: none;
            color: #ffa500;
            transition: color 0.3s;
        }

        h1 a:hover {
            color: #ff6f00; /* Darker orange on hover */
        }

        /* Menu Style */
        .menu {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
            font-size: 1.2em;
        }

        .menu a {
            text-decoration: none;
            color: #ffa500;
            padding: 10px 20px;
            border-radius: 5px;
            transition: background-color 0.3s, color 0.3s;
        }

        .menu a:hover {
            background-color: #ff6f00;
            color: #fff;
        }

        /* Search Bar Style */
        .search-bar {
            margin-top: 20px;
            padding: 10px;
            font-size: 1.2em;
            border-radius: 5px;
            border: 2px solid #ff6f00;
            background-color: #1e1e1e;
            color: #f4f4f4;
            width: 300px;
            text-align: center;
            margin-bottom: 40px;
        }

        .search-bar::placeholder {
            color: #bbb;
        }

        /* Main container for the content */
        .content-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin-top: 20px;
            padding: 0 20px;
            width: 100%;
        }

        .box {
            position: relative;
            background-color: #1e1e1e;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, opacity 0.5s ease-in-out; /* Added opacity transition */
            opacity: 1; /* Fully visible by default */
            visibility: visible; /* Ensures visibility is visible initially */
        }

        .box.hidden {
            opacity: 0; /* Fades out */
            visibility: hidden; /* Makes the box invisible */
        }

        .box:hover {
            transform: scale(1.05); /* Slight zoom effect */
            box-shadow: 0 6px 15px rgba(255, 105, 0, 0.6); /* Orange shadow on hover */
        }

        /* Modify the image to take up the full width of the box */
        .box img {
            width: 100%; /* Make the image take the full width */
            height: 200px; /* Maintain height to 200px, but adjust if needed */
            object-fit: cover; /* Ensure the image covers the full area, preserving the aspect ratio */
            border-bottom: 2px solid #ff6f00; /* Orange border below image */
        }

        .box .content {
            padding: 15px;
        }

        .box .content h3 {
            color: #ffa500; /* Title in orange */
            font-size: 1.6em;
            margin-bottom: 10px;
            transition: color 0.3s;
        }

        .box .content h3:hover {
            color: #ff6f00; /* Darker orange on hover */
        }

        .box .content p {
            color: #b0b0b0;
            font-size: 1em;
            margin-bottom: 10px;
        }

        /* Remove blue color and underline from links */
        a {
            text-decoration: none; /* Remove underline */
            color: inherit; /* Inherit the color from the parent element (e.g., the orange text color) */
        }

        .show-more-btn {
            background-color: #ff6f00;
            color: #fff;
            border: none;
            padding: 15px 30px;
            font-size: 1.2em;
            font-weight: bold;
            border-radius: 5px;
            margin: 40px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .show-more-btn:hover {
            background-color: #ffa500; /* Lighter orange on hover */
        }

        /* Discord Icon Button */
        .discord-btn {
            position: fixed;
            top: 20px;
            right: 20px;
            background-color: #5865F2;
            color: white;
            padding: 10px; /* Smaller padding for a smaller button */
            border-radius: 50%;
            font-size: 1.5em; /* Reduced font size */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: background-color 0.3s, transform 0.3s ease;
        }

        /* Discord button hover effect */
        .discord-btn:hover {
            background-color: #ffa500; /* Change background to orange on hover */
            transform: rotate(360deg); /* Spin effect on hover */
        }

        .discord-btn i {
            pointer-events: none; /* Prevent icon from being clickable */
        }
.iframe-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 800px;
    height: 500px;  /* Sets the iframe container to take up 70% of the viewport height */
    margin: 20px 0;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px; /* Rounded corners for the iframe */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8); /* Adds a subtle shadow around the iframe */
    object-fit: cover;  /* Ensures the iframe covers the container while maintaining aspect ratio */
}

/* Fullscreen Button styles */
.fullscreen-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(255, 165, 0, 1);
    color: white;
    border: none;
    padding: 10px;
    font-size: 1.5em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.fullscreen-btn:hover {
    background-color: RGBA(255, 111, 0, 1);
}
