body {
    background: url('images/danzig-skull-bg.png') no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
	margin-top: 30px;
	margin-bottom: 40px;
}

/* ✅ Fully Dynamic Container */
.container {
    width: 340px; /* Default width for desktop */
    max-width: 90vw; /* Ensures it shrinks properly on smaller screens */
    height: auto; /* Expands dynamically */
    background: #000000;
	border: 1px solid #404040;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    justify-content: flex-start;
}
/* ✅ Ensure Top Section Scales Properly */
.top-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0; /* Prevents shrinking */
}

.top-section img {
    width: auto;
    height: 350px;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.9));
}

/* Logo Styling */
.logo {
    width: 165px !important;
    height: 100px !important;
    object-fit: contain;
    margin-top: -115px;
}

/* Text Styling */
.subheader {
    font-family: "Bangers", serif;
    text-transform: uppercase;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 5px;
    margin-top: -7px;
}

.arrow {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
	margin-top: 30px;
	margin-bottom: 0px;
	animation: flash 6s infinite; /* 6-second duration, loops infinitely */
}
@keyframes flash {
    0%, 100% { opacity: 1; }   /* Fully visible */
    50% { opacity: 0; }        /* Hidden */
}

.list-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px; /* Provides space before the footer */
    flex-grow: 1; /* Expands as needed */
}

.list-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
}

.list-item img {
    max-width: 140px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain; /* Ensures the entire image fits within the box */
}

.list-item button {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: white;
    background: transparent;
    border: 1px solid white;
    padding: 3px 30px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 0px 20px 5px rgba(30, 30, 30, 0.9);
    transition: all 1s ease;
}

.list-item button:hover {
    font-size: 16px;
    color: #404040;
    border: 1px solid #404040;
}
.footer {
    width: 145px;
    height: auto;
	margin-top: 50px;
	margin-bottom: 5px;
}

/* Social Icons Container */
.social-icons {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Aligns them vertically */
    gap: 15px; /* Adjust spacing between icons */
}

/* Each Icon Wrapper */
.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-icons img {
    transition: transform 1.5s ease;
}
.icon-danzig {
    width: 40px;
    height: auto;
}
.icon-verotik {
    width: 23px;
    height: auto;
}
.icon-fb {
    width: 40px;
    height: auto;
}
.danzig {
    padding-bottom: 20px; /* Moves the smaller icon down */
}
.verotik {
    padding-bottom: 0px;
}
.fb {
    padding-bottom: 0px;
}
/* Hover effect */
.social-icons img:hover {
    transform: scale(1.2);
}
.divider {
    width: auto;  /* Ensures it doesn't stretch too wide on large screens */
    height: auto;  /* Keeps the aspect ratio */
    display: block;  /* Ensures proper alignment */
    margin: 1px auto; /* Centers it */
    padding: 10px; /* Adjusts spacing */
}
.copyright {
	font-family: 'Gideo Roman', serif;
	font-size: 12px;
	text-transform: uppercase;
	color: #d9d9d9;
	text-align: center;
}
a {
  	font-family: 'Gideo Roman', serif;
	font-size: 12px;
	text-transform: uppercase;
	text-decoration: none;
	color: #d9d9d9;
	}
a:hover {
  color: #404040;
}

/* ✅ Desktop Optimization */
@media screen and (min-width: 1025px) {
    .container {
        min-height: 100vh; /* Ensures it fills the screen */
        height: auto; /* Expands as needed */
        margin: 20px auto; /* Keeps it centered */
    }
}

/* ✅ Mobile Optimization */
@media screen and (max-width: 768px) {
	body {
        background: url('images/bg-ph.png') no-repeat center !important;
        background-size: cover !important;
	}
	.container {
        width: 75vw;
        max-width: 350px;
        height: auto; /* Allows it to expand properly */
        padding: 20px; /* Ensures proper spacing */
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100vh; /* Ensures full screen coverage */
	}
    .divider {
        width: 90%;
        padding: 10px;
    }
}	
@media (max-width: 450px) {
	body {
        background: url('images/bg-ph.png') no-repeat center !important;
        background-size: cover !important;
	}	
	.container {
        min-height: 100vh; /* Ensures full height on mobile */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
	.divider {
        width: 95%;
        padding: 10px;
    }
}