@charset "utf-8";

/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Rajdhani', 'Arial', sans-serif;
    font-size: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0020, #1a0040, #2a0060);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

img {
    border: none;
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol, li {
    list-style: none;
}

/* ===========================
   MAIN CONTAINER
   =========================== */
.launcher-container {
    position: relative;
    width: 982px;
    height: 580px;
    margin: 0 auto;
    background: rgba(10, 0, 32, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9),
                0 0 40px rgba(0, 255, 255, 0.3),
                inset 0 1px 1px rgba(0, 255, 255, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* ===========================
   ANIMATED BACKGROUND
   =========================== */
.bg-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    animation: float 20s infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
    animation-duration: 22s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ===========================
   SOCIAL MEDIA BOX
   =========================== */
.social-media-box {
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.social-media-box:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.4);
}

.social-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

.social-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
}

.social-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    background: rgba(168, 85, 247, 0.2);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn i {
    font-size: 20px;
    position: relative;
    z-index: 1;
}

.social-btn span {
    position: relative;
    z-index: 1;
}

.discord-btn:hover {
    background: rgba(88, 101, 242, 0.3);
    border-color: #5865F2;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.6);
    transform: translateY(-3px);
}

.tiktok-btn:hover {
    background: rgba(255, 0, 80, 0.3);
    border-color: #ff0050;
    box-shadow: 0 0 20px rgba(255, 0, 80, 0.6);
    transform: translateY(-3px);
}

.facebook-btn:hover {
    background: rgba(24, 119, 242, 0.3);
    border-color: #1877F2;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.6);
    transform: translateY(-3px);
}

/* ===========================
   MAIN CONTENT AREA
   =========================== */
.launcher-main {
    position: relative;
    z-index: 5;
    display: flex;
    flex: 1;
    gap: 2px;
    overflow: hidden;
}

/* ===========================
   SLIDER SECTION
   =========================== */
.slider-section {
    position: relative;
    flex: 0 0 490px;
    height: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.visual_slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.visual_slider li {
    width: 100%;
    height: 100%;
}

.visual_slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.visual_slider a:hover img {
    transform: scale(1.05);
}

.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(10, 10, 30, 0.9), transparent);
    pointer-events: none;
}

/* BxSlider Controls */
.bx-wrapper {
    position: relative;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.bx-wrapper .bx-viewport {
    border: none;
    box-shadow: none;
    background: transparent;
    left: 0;
}

.bx-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 15px;
}

.bx-controls a {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 255, 0.3);
    border: 2px solid rgba(0, 255, 255, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.bx-controls a:hover {
    background: rgba(0, 255, 255, 0.6);
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 1);
    transform: scale(1.1);
}

.bx-prev::after {
    content: '◀';
}

.bx-next::after {
    content: '▶';
}

/* ===========================
   INFO SECTION
   =========================== */
.info-section {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: rgba(15, 15, 40, 0.6);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.info-section::-webkit-scrollbar {
    width: 0px;
    display: none;
}

.info-section::-webkit-scrollbar-track {
    background: transparent;
}

.info-section::-webkit-scrollbar-thumb {
    background: transparent;
}

/* ===========================
   QUICK MENU
   =========================== */
.quick-menu {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.menu-btn {
    flex: 1;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(0, 255, 255, 0.2));
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.menu-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-btn:hover::before {
    opacity: 1;
}

.menu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.5);
    border-color: #00ffff;
}

.menu-btn i {
    font-size: 20px;
}

.home-btn:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.4), rgba(0, 255, 255, 0.4));
    border-color: #00ffff;
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.6);
}

.shop-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 200, 0.3), rgba(0, 200, 180, 0.3));
    border-color: #00ffc8;
    box-shadow: 0 10px 25px rgba(0, 255, 200, 0.5);
}

.guide-btn:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(100, 50, 200, 0.3));
    border-color: #a855f7;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.5);
}



/* ===========================
   NEWS CONTAINER
   =========================== */
.news-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.news-box {
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
}

.news-box:hover {
    background: rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.4);
}

.news-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

.news-header i {
    font-size: 18px;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.news-header h3 {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.more-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 8px;
    font-size: 12px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.more-btn:hover {
    background: rgba(168, 85, 247, 0.4);
    border-color: #a855f7;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
    transform: translateX(3px);
}

.news-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 180px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;
}

/* Scrollbar personalizado */
.news-content::-webkit-scrollbar {
    width: 6px;
}

.news-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.news-content::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.5);
    border-radius: 10px;
}

.news-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.8);
}

.news-item {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.news-item:hover {
    background: rgba(0, 212, 255, 0.15);
    transform: translateX(3px);
}

.news-item.expanded {
    background: rgba(0, 255, 255, 0.2);
    transform: translateX(0);
}

.news-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #00ffff, #a855f7);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.8);
    margin-top: 5px;
}

.news-text {
    flex: 1;
    font-size: 14px;
    color: #cccccc;
    font-weight: 500;
    min-width: 0;
}

.news-item:hover .news-text {
    color: #ffffff;
}

.news-item .expand-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
    color: #00ffff;
    font-size: 12px;
    flex-shrink: 0;
}

.news-item.expanded .expand-icon {
    transform: rotate(180deg);
}

.news-content-full {
    display: none;
    width: 100%;
    padding: 12px 15px;
    margin-top: 5px;
    margin-left: 16px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    border-left: 2px solid rgba(0, 212, 255, 0.5);
    line-height: 1.7;
    font-size: 13px;
    color: #b8b8b8;
}

.news-meta-info {
    display: none;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    font-size: 11px;
    color: #888;
}

.news-meta-info i {
    margin-right: 5px;
    color: #00ffff;
}

/* ===========================
   BANNER AD
   =========================== */
.banner-ad {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.banner-ad:hover {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 5px 25px rgba(0, 212, 255, 0.5);
    transform: translateY(-3px);
}

.banner-ad img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.banner-ad:hover img {
    transform: scale(1.05);
}

/* ===========================
   RESPONSIVE ADJUSTMENTS
   =========================== */
@media (max-height: 600px) {
    .launcher-container {
        height: 500px;
    }
    
    .launcher-header {
        padding: 15px 25px;
    }
    
    .game-title {
        font-size: 26px;
    }
}
	background:url(../image/btn_next_blue.png) no-repeat;
}

.launcher.blue .main_banner .bx-controls a:hover {
	background-position:0px -32px;
}

.launcher.blue .contents .menu_list li a {
	display:block;
	width:110px;
	height:440px;
	background:url(../image/btn_blue.jpg) no-repeat;
	color:#d8cabf;
	font-size:14px;
	text-align:center;
	line-height:44px;
}

.launcher.blue .contents .menu_list li a:hover {
	background:url(../image/btn_blue_over.jpg) no-repeat;
}

.launcher.blue .contents .noti_list dt {
	border-bottom:1px solid #2371b0;
}

.launcher.blue .contents .noti_list dd {
	background:url(../image/ico_list_b.gif) 0px 11px no-repeat;
}

.launcher.blue .contents .noti_list dd a:hover {
	color:#2371b0;
}

.launcher.blue .contents .noti_list dd.important a {
	color:#2371b0;
}

.launcher.blue .contents .noti_list dt a {
	background-color:#2371b0;
	border:1px solid #2371b0;
	border-radius:2px;
}