* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ff06ff;
    margin: 0;
}

/* Main Container */
.maincontainer {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: flex-start;
    align-items: center;
    background-color: #ff06ff;
    min-height: 100vh;
    padding: 20px;
}

/* Header */
.header {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background-image: url('https://i.pinimg.com/736x/52/86/4c/52864cdd1bc83eb36d2ffd4e7ff1e64d.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #020803;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Logo in Top-Right Corner */
.top-right-logo {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: auto;
    border-radius: 8px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Menu Box in Lower-Left of Header */
.menu-box {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: #ff06ff;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.menu-box:hover {
    background-color: #ff33ff;
    transform: scale(1.05);
}

/* All Content Boxes */
.content,
.shuffle,
.skateboarding,
.rhythm-games {
    width: 100%;
    max-width: 800px;
    padding: 25px;
    background-color: #ff990033;
    border: 10px solid rgb(206, 252, 1);
    border-radius: 8px;
    box-sizing: border-box;
    margin: 0 auto;
}

/* Image Styling */
.shuffle-image,
.skateboarding-image,
.rhythm-games-image {
    width: 100%;
    height: auto;
    min-height: 280px;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 0 20px 0;
    border-radius: 8px;
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    background-color: rgba(0,0,0,0.1);
}

/* Headings */
.content h2,
.shuffle h2,
.skateboarding h2,
.rhythm-games h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    text-align: left;
    font-size: 28px;
}

/*  Paragraphs */
.content p,
.shuffle p,
.skateboarding p,
.rhythm-games p {
    margin: 0;
    line-height: 1.8;
    color: #222;
    text-align: left;
    font-size: 18px;
}