@charset "utf-8";

/* Akhlys Official Link Page CSS */

body {
    margin-top: 105px;
	margin-bottom: 40px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
	min-height: 100vh;
    background: url('images/akhlys.png') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Abel', sans-serif;
}

/* Container */
.container {
	width: 400px;
	max-width: 90vw;
    min-height: 1120px;
    display: flex;
    flex-direction: column;
	justify-content: space-between;
    background: url('images/bg.png') no-repeat center center;
    background-size: cover;
    padding-top: 50px;
    text-align: center;
    border-radius: 0px;
	position: relative;
}

@media (max-width: 450px) {
    .container {
        min-height: 100vh;
        padding-top: 20px;
	}
}

/* Banner */
.banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
	position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.banner-container img {
    max-width: 215px;
    border-radius: 0px;
    display: block;
}

/* Video */
.video-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: auto;
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Custom Play Button */
.custom-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: auto;
    max-width: 25%;
    max-height: 80px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.custom-play-button:hover {
    opacity: 0.8;
}

/* Make iframe responsive */
.video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

/* Headers */
.header {
    font-family: 'Abel', sans-serif;
	font-size: 18px;
	font-weight: 200;
	text-transform: uppercase;
    color: #c0c0c0;
	margin-top: 10px;
}

.subheader {
    font-family: 'Abel', sans-serif;
	font-size: 16px;
	font-weight: 200;
	text-transform: uppercase;
	color: #999999;
	margin-top: -13px;
}

/* Social Icons */
.social-icons {
    margin: 0px 0px 0px 0px;
}

.social-icons img {
    width: 20px;
    margin: 20px 3px;
	transition: transform 1s ease;
}
.social-icons img:hover {
    transform: scale(1.1);
}

/* Link List */
.link-list {
    margin-top: 00px;
}

.list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
	padding: 25px 20px 25px 20px;
    border-bottom: 1px solid #404040;
    transition: background-color 0.5s ease;
}

.list-item:hover {
    background-color: rgba(195, 190, 171, 0.1);
}

.list-item img {
    width: 112px;
    height: auto;
}

.list-btn {
    text-decoration: none;
	font-weight: 200;
	text-transform: uppercase;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: none;
    transition: text-shadow 0.3s ease;
}

/* Hover Effect: Text Only */
.list-btn:hover {
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.8);
}

/* Hover Effect: Icon Only */
.button-icon {
    width: 14px; 
    height: 14px;
    max-height: 14px;
	max-width: 14px;
    flex-shrink: 0;
}

.list-btn:hover .button-icon {
    text-shadow: 0 0 8px rgba(192, 192, 192, 0.5);
    filter: drop-shadow(0 0 8px rgba(192, 192, 192, 0.5));
	opacity: 1;
}

/* Logo */
.logo {
    margin-top: auto;
    margin-bottom: 20px;
	position: relative;
}

.logo img {
    width: 125px;
    height: 33px;
	transition: transform 3s ease;
}
.logo img:hover {
    transform: scale(1.1);
}
}

/* ✅ 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) {
    body {
        background: url('images/bg-ph.png') no-repeat center !important;
        background-size: cover !important;
	}
	.container {
        width: 85vw;
        max-width: 400px;
        height: 1021px;
        padding: 0px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 100vh;
	}
	.banner-container {
        max-width: 90vw;
		top: -90px;
    }
	.banner-container img {
    	max-width: 175px;
    	border-radius: 0px;
    	display: block;
	}
}
@media (max-width: 450px) {
    body {
        background: url('images/bg-ph.png') no-repeat center !important;
        background-size: cover !important;
	}
	.container {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
	}
	.banner-container {
        max-width: 90vw;
		top: -90px;
	}
	.banner-container img {
    	max-width: 175px;
    	border-radius: 0px;
    	display: block;
	}
	 .video-container {
        max-width: 90vw;
    }

    .play-button {
        font-size: 40px;
        width: 60px;
        height: 60px;
    }
}