* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b1a30; 
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

#wrapper {
    position: relative;
    width: 100%;
    max-width: 900px; /* Limits size on large desktops */
    margin: 0 auto;
    z-index: 10;
    line-height: 0; 
}

#wrapper > .background-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Link & Asset Container */
#links, .floating-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Link Styling */
.custom-link, .image-link {
    position: absolute;
    pointer-events: auto;
    text-decoration: none;
    outline: none;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.custom-link:hover, .image-link:hover {
    transform: scale(1.05);
}

/* "Click to Listen" */
.pos-link-1 { top: 51.5%; left: 12%; }
.pos-link-2 { top: 55%; left: 12%; }
.pos-link-3 { top: 58.5%; left: 12%; }

/* Social Icons */
.pos-link-7 { top: 61.5%; left: 7.5%; }
.pos-link-8 { top: 61.5%; left: 12.5%; }
.pos-link-9 { top: 61.5%; left: 17.5%; }
.pos-link-10 { top: 61.5%; left: 22.5%; }
.pos-link-11 { top: 61.5%; left: 27.5%; }
.pos-link-12 { top: 61.5%; left: 32.5%; }

/* Contact Sections */
.pos-link-5 { top: 83.5%; left: 9%; }
.pos-link-6 { top: 92.5%; left: 8.5%; }

/* Header */
.pos-link-4 { top: 2%; left: 60.5%; }

/* Photo Scaling */
.top-right-photo {
    position: absolute;
    top: 4.8%;
    left: 55.5%;
    width: 36.5%;
    height: auto;
    pointer-events: auto;
    z-index: 100;
    border: 0.8vw solid #000000; 
    max-width: 325px; 
}

.bottom-right-photo {
    position: absolute;
    top: 67.5%;
    left: 51.5%;
    width: 41%;
    height: auto;
    pointer-events: auto;
    z-index: 100;
    border: 0.4vw solid #000000;
}

/* Typography & Icons */
.link-text {
    color: #ffffff;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(12px, 1.7vw, 18px); 
    white-space: nowrap;
}

.link-icon {
    width: 2.5vw;
    max-width: 25px;
    min-width: 15px;
    height: auto;
    margin-right: 10px;
    object-fit: contain;
}

.btn-size {
    width: 3.8vw;
    max-width: 35px;
    min-width: 20px;
    height: auto;
}