body {
	background: url('/images/Background.webp') no-repeat center top;
	background-size: cover;
	background-attachment: fixed;
	margin: 0;
	padding: 0;
	font-family: "Segoe UI", Roboto, sans-serif;
}

.container {
	max-width: 1500px;
	margin: 0 auto;
	border-left: 1px solid;
    border-right: 1px solid;
    border-image: linear-gradient(#fed427, #fe852e) 1; 
}

.top-header {
	background: #000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 16px;
}

.top-header .logo {
	height: 40px;
}

.livechat-btn {
	background: linear-gradient(#fed427, #fe852e);
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 20px;
	text-decoration: none;
	text-shadow: 0 0 4px #000;
	animation: blink 1s infinite;
}

@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

.headline-bar {
	display: flex;
	align-items: center;
	background-color: #303031;
	position: relative;
	height: 40px;
	overflow: hidden;
}

.headline-bar::before {
	content: "";
	position: absolute;
	top: 0;
	left: 35px;
	right: 0;
	height: 2px;
	background-color: #fed427;
}

.headline-bar::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 25px;
	right: 0;
	height: 2px;
	background-color: #fe852e;
}

.headline-right-skew {
    position: relative;
	width: 35px;
	height: 100%;
	background-image: linear-gradient(#fed427, #fe852e);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
	transform: skewX(-25deg);
	z-index: 2;
	overflow: visible;
}

.headline-right-skew::after {
    content: "";
    position: absolute;
    top: 0;
    right: -8px; 
    width: 20px;
    height: 100%;
    background-image: linear-gradient(#fed427, #fe852e);
    transform: skewX(25deg); 
    z-index: -1;
}

.headline-icon {
	position: relative;
	width: 35px;
	height: 100%;
	background-image: linear-gradient(#fed427, #fe852e);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
	transform: skewX(-25deg);
	z-index: 2;
	overflow: visible;
}

.headline-icon::before {
	content: "";
	position: absolute;
	top: 0;
	left: -10px; 
	width: 35px;
	height: 100%;
	background-image: linear-gradient(#fed427, #fe852e);
	z-index: 1;
}

.headline-icon::after {
	content: "";
	position: absolute;
	right: -15px;
	top: 0;
	width: 10px;
	height: 100%;
	background-image: linear-gradient(#fed427, #fe852e);
	z-index: 1;
}

.headline-icon i {
	color: #fff;
	font-size: 16px;
	transform: skewX(25deg);
	z-index: 3;
	position: relative;
}

.headline-marquee {
	flex: 1;
	overflow: hidden;
	position: relative;
	z-index: 0;
}

.marquee {
	display: inline-block;
	white-space: nowrap;
	padding-left: 100%;
	animation: marquee 12s linear infinite;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
	position: relative;
	z-index: 0;
}

.marquee a {
	color: transparent;
	background: linear-gradient(#fed427, #fe852e);
	-webkit-background-clip: text;
	background-clip: text;
	font-weight: bold; 
	text-decoration: none; 
}

@keyframes marquee {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-100%); }
}

.header-banner {
	position: relative;
}

.header-banner img {
	width: 100%;
	display: block;
}

.header-buttons {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	text-transform: uppercase;
}

.header-buttons a {
	flex: 1;
	text-align: center;
	padding: 14px 0;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
}

.btn-login {
	background-image: linear-gradient(to right, rgb(32, 122, 185) 0%, rgb(30, 120, 183) 17%, rgb(27, 106, 172) 54%, rgb(22, 102, 165) 76%, rgb(24, 100, 162) 78%, rgb(22, 96, 157) 100%);
}

.btn-daftar {
	background-image: linear-gradient(to right, #77bd1f 0%, #70b921 13%, #70b61f 15%, #67b31d 31%, #44a115 80%, #45a118 81%, #42a018 85%, #3c9c14 91%, #3d9d15 94%, #399911 98%, #3b9b13 100%);
}

.header-buttons i {
	margin-right: 8px;
}

.main-content {
    display: flex;
    gap: 15px;
    padding: 10px 10px 0;
    background: #303031;
}

.article-body {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px;
}

.article-body h1 {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
}

.article-body h2 {
    text-transform: uppercase;
}

.article-body p {
    text-align: justify;
}

.article-body a {
    color: transparent;
	background: linear-gradient(#fed427, #fe852e);
	-webkit-background-clip: text;
	background-clip: text;
	font-weight: bold; 
	text-decoration: none;
}

.article-body a:hover {
    color: #000
}

.article-sidebar {
    position: sticky;
    top: 20px;
    align-self: flex-start;
    width: 300px;
    display: flex;
    flex-direction: column;
    margin: 0 0 18px;
    gap: 15px
}

.sidebar-banner img {
    width: 100%;
}

.sidebar-section {
	margin-bottom: 24px;
}

.sidebar-title {
	font-weight: bold;
	margin-bottom: 8px;
	position: relative;
	padding-bottom: 4px;
	color: #fff
}

.sidebar-title::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 40px;
	height: 3px;
	background-color: #fed427;
}

.link-box {
	background-color: #fff;
	padding: 10px 5px 5px 15px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.sidebar-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-links li {
	margin-bottom: 10px;
}

.sidebar-links li .icon {
	margin-right: 4px;
	color: #007bff;
}

.sidebar-links a {
	text-decoration: none;
	font-weight: bold;
	color: #ff6600; 
	transition: color 0.3s ease;
}

.sidebar-links a:hover {
	color: #bb1919;
}

.sidebar-video {
    overflow: hidden;
    margin-top: 10px;
}

.faq-container {
    margin: 0 auto;
}

.faq-item {
    background: #303031;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-item input {
    display: none;
}

.faq-item label {
    display: block;
    padding: 15px 20px;
    background-image: linear-gradient(#fed427, #fe852e);
    cursor: pointer;
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #fff;
    padding: 0 20px;
}

.faq-item input:checked ~ .faq-answer {
    max-height: 300px;
}

.copyright-info {
	text-align: center;
	font-size: 14px;
	color: #fff;
	padding: 8px 0 80px;
	text-transform: uppercase;
	background: #303031;
}

.copyright-info::before {
	content: "";
	display: block;
	height: 1px;
	background: linear-gradient(to right, #fed427, #fe852e);
	margin-bottom: 8px;
}

.copyright-info a {
    color: transparent;
    background: linear-gradient(#fed427, #fe852e);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: bold; 
    text-decoration: none;
}
            
.floating-footer {
	position: fixed;
	bottom: 0;
	width: 1500px;
	max-width: 100%;
	background-image: linear-gradient(#fed427, #fe852e);
	z-index: 1000;
	box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
}

.footer-container {
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 5px;
	text-shadow: 0 0 4px #000;
}

.footer-container a {
	flex: 1;
	text-align: center;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	padding: 10px;
}

.footer-container a i {
	display: block;
	font-size: 18px;
}

.floating-footer a {
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	gap: 3px
}

.floating-footer a:hover,
.floating-footer a.active {
	background-color: #000;
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-decoration: none; 
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 3000;
}

.back-to-top:hover {
    background: #0056b3;
    transform: scale(1.05);
}

body:not(:target) .back-to-top {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .header-buttons {
		position: relative;
    }
    
	.main-content {
		display: flex;
		flex-direction: column;
	}
	
	.main-content .article-sidebar {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}
}