@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, #001a33, #002b4d, #003d66);
    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(5, 15, 30, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9),
                0 0 40px rgba(0, 212, 255, 0.3),
                inset 0 1px 1px rgba(0, 212, 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, 212, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 212, 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;
    }
}

/* ===========================
   HEADER
   =========================== */
.launcher-header {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 150, 255, 0.15));
    border-bottom: 2px solid rgba(0, 212, 255, 0.4);
    backdrop-filter: blur(10px);
}

.logo-section {
    flex: 1;
}

.game-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(90deg, #00d4ff, #0099ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    animation: titlePulse 3s ease-in-out infinite;
}

.mu-text {
    color: #00d4ff;
    -webkit-text-fill-color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 1);
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Social Media Buttons */
.social-section {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 12px;
    font-size: 22px;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.social-btn:hover::before {
    width: 100px;
    height: 100px;
}

.social-btn i {
    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);
}

/* ===========================
   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, 212, 255, 0.3);
    border: 2px solid rgba(0, 212, 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, 212, 255, 0.6);
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 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(0, 212, 255, 0.2), rgba(0, 150, 255, 0.2));
    border: 2px solid rgba(0, 212, 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, 212, 255, 0.5);
    border-color: #00d4ff;
}

.menu-btn i {
    font-size: 20px;
}

.home-btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4), rgba(0, 184, 255, 0.4));
    border-color: #00d4ff;
    box-shadow: 0 10px 25px rgba(0, 212, 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(0, 150, 255, 0.3), rgba(0, 100, 255, 0.3));
    border-color: #0096ff;
    box-shadow: 0 10px 25px rgba(0, 150, 255, 0.5);
}

/* ===========================
   GAME RATING
   =========================== */
.game-rating {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid rgba(255, 0, 0, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.rating-text {
    font-size: 20px;
    font-weight: 700;
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

.rating-desc {
    font-size: 12px;
    color: #ffaaaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================
   NEWS CONTAINER
   =========================== */
.news-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.news-box {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
}

.news-box:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.news-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.news-header i {
    font-size: 18px;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 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(0, 212, 255, 0.4);
    border-color: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    transform: translateX(3px);
}

.news-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.news-item:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateX(5px);
}

.news-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #00d4ff, #00ffff);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 5px rgba(0, 212, 255, 0.8);
}

.news-text {
    flex: 1;
    font-size: 14px;
    color: #cccccc;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-item:hover .news-text {
    color: #ffffff;
}

/* ===========================
   BANNER AD
   =========================== */
.banner-ad {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 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;
}