/* Holy Oath | CSS */

body {
    background: url('images/bg.png') no-repeat center top;
    background-size: auto;
	background-color: #090909;
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
	margin-top: 30px;
	margin-bottom: 40px;
}

.container {
    width: 335px;
    max-width: 90vw;
    height: auto;
    background: linear-gradient(to bottom, #00EEC1 0%, #000000 40%, #000000 100%);
	border: 1px solid #00EEC1;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    justify-content: flex-start;
}

.top-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.top-section img {
    width: auto;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.9));
}

/* Logo Styling */
.img {
    width: 275px !important;
    height: 275px !important;
    object-fit: contain;
}

/* Text Styling */
.bandname {
    font-family: "Germania One", system-ui;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    letter-spacing: 5px;
    text-shadow: 0px -9px 4px #00EEC1;
	margin-top: 18px;
	z-index: 1;	
}

.subheader {
    font-family: "Germania One", system-ui;
    text-transform: uppercase;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #fff;
    letter-spacing: 5px;
    margin-top: -17px;
}

.arrow {
    width: 30px !important;
    height: 30px !important;
    object-fit: contain;
	margin-top: 15px;
	margin-bottom: 0px;
	animation: flash 6s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.list-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.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;
}

.list-item button {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: #fd33c5;
    background: transparent;
    border: 1px solid #fd33c5;
    padding: 3px 30px;
    border-radius: 50px;
    cursor: pointer;
	box-shadow: 0px -8px 10px rgba(0, 238, 193, 0.2);
    transition: all 1s ease;
	position: relative;
	overflow: hidden; 
}

.list-item button:hover {
    font-size: 16px;
    color: #AA007D;
    border: 1px solid #AA007D;
}

.list-item button .label {
  position: relative;
  z-index: 1;
}

.list-item button .spirit {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
}

.list-item button .spirit .char {
  display: inline-block;
  opacity: 0; 
  transform: translateY(0);
  filter: none;
}

.list-item button.haunt .spirit .char {
  animation: spirit-drift 0.8s ease-out forwards;
  animation-delay: calc(var(--i) * 22ms);
  color: #00EEC1;
  text-shadow: 0 0 6px #00EEC1, 0 0 14px rgba(0,238,193,0.6);
}

@keyframes spirit-drift {
  0%   { opacity: .55; transform: translateY(0);    filter: blur(0px); }
  60%  { opacity: .35; transform: translateY(-8px); filter: blur(1px); }
  100% { opacity: 0;   transform: translateY(-14px);filter: blur(2px); }
}

@media (prefers-reduced-motion: reduce) {
  .list-item button.haunt .spirit .char {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}

.logo {
    width: 65px;
    height: auto;
	margin-top: 50px;
	margin-bottom: 5px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-icons img {
	width: 20px;
	transition: transform 1.5s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

.divider {
    width: auto;
    height: auto;
    display: block;
    margin: 1px auto;
    padding: 10px;
}

.copyright {
	font-family: "Germania One", system-ui;
	font-size: 12px;
	text-transform: uppercase;
	color: #ccc;
	text-align: center;
}

a {
  	font-family: "Germania One", system-ui;
	font-size: 12px;
	text-transform: uppercase;
	text-decoration: none;
	color: #ccc;
}

a:hover {
  color: #fd33c5;
}

/* ✅ Desktop Optimization */
@media screen and (min-width: 1025px) {
    .container {
        min-height: 100vh;
        height: auto;
        margin: 20px auto;
    }
}

/* ✅ Mobile Optimization */
@media screen and (max-width: 768px) {
	.container {
        width: 70vw;
        max-width: 350px;
        height: auto;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100vh;
	}
    .divider {
        width: 90%;
        padding: 10px;
    }
}	
@media (max-width: 450px) {
	.container {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
	.divider {
        width: 95%;
        padding: 10px;
    }
}