body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(0, 0, 0, 0.5) 10%,  
        rgba(0, 31, 63, 0.8) 40%, 
        #001f3f 70%, 
        #001f3f 100%  
    ),
    url('../background.gif') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    color: white;
    text-shadow: 
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000,
        -2px  0 0 #000,
         2px  0 0 #000,
         0 -2px 0 #000,
         0  2px 0 #000; /* Thicker outline for better visibility */
}

.main-title {
    font-size: 4em; /* Adjust the size as needed */
    text-align: center;
    margin-top: 20px;
    color: white;
    text-shadow: 
        -2px -2px 0 #000,  
         2px -2px 0 #000,
        -2px  2px 0 #000,
         2px  2px 0 #000;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.logo {
    font-size: 3em;
    padding: 5px;
    border-radius: 5px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    padding: 5px;
    border-radius: 5px;
}

.info {
    text-align: center;
    margin-top: 50px;
    font-size: 2em;
    position: relative;
}

.media {
    text-align: center;
    margin-top: 50px;
}

.video-container {
    margin-bottom: 30px;
}

.image-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 2px 0; /* Further reduced margin for even closer images */
}

.image-wrapper.left {
    justify-content: flex-start;
}

.image-wrapper.right {
    justify-content: flex-end;
}

.image-wrapper img {
    max-width: 45%;
    border-radius: 10px;
}

.description-box, .ip-box {
    background-color: rgba(0, 0, 0, 0.7);
    display: inline-block;
    padding: 20px;
    border-radius: 5px;
    margin: 10px 0;
    font-size: 1em;
    color: white;
    text-shadow: 
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000,
        -2px  0 0 #000,
         2px  0 0 #000,
         0 -2px 0 #000,
         0  2px 0 #000;
}

.code-box {
    background-color: rgba(0, 0, 0, 0.7);
    display: inline-flex; 
    align-items: center; 
    padding: 10px;
    border-radius: 5px;
    font-family: monospace;
    font-size: 1em;
    color: white;
    text-shadow: 
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000,
        -2px  0 0 #000,
         2px  0 0 #000,
         0 -2px 0 #000,
         0  2px 0 #000;
    position: relative;
    cursor: pointer;
    min-width: 150px; 
    max-width: fit-content; 
}

.clipboard-icon {
    width: 24px;
    height: auto;
    margin-left: 10px; 
    opacity: 0;
    transition: opacity 0.3s;
}

.code-box:hover .clipboard-icon {
    opacity: 1;
}

.copy-notification {
    position: fixed; 
    top: 20px; 
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.9em;
    z-index: 1000; 
}

.shop {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    align-items: flex-start; 
    padding: 20px; 
    background-color: transparent; /* Make the shop background transparent */
    min-height: 100vh; 
}

.shop h1 {
    width: 100%; 
    font-size: 3em;
    margin-bottom: 20px;
    text-align: center;
    color: white; 
}

.shop-item {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px;
    text-align: center;
    width: 150px;
    background-color: rgba(0, 31, 63, 0.9); /* Slightly transparent blue */
    color: white; 
    flex: 0 1 auto; 
}

.shop-item img {
    width: 100px;
    height: 100px;
}

.shop-item h2 {
    font-size: 1.2em;
    margin: 10px 0;
}

.shop-item p {
    margin: 5px 0;
}

.shop-item button {
    padding: 5px 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

.shop-item button:hover {
    background-color: #45a049;
}