﻿@font-face {
    font-family: 'Trajan Pro Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Trajan Pro Regular'), url('/fonts/TrajanPro-Regular.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Trajan Pro Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Trajan Pro Bold'), url('/fonts/TrajanPro-Bold.woff') format('woff');
    font-display: swap;
}

/* CSS Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    position: relative;
    height: 100%;
}

body {
    width: 100%;
    background: url(../images/fon-repeat.jpg) center repeat-y;
    background-color: #d6d3e6;
    font-family: 'Trajan Pro Bold', serif;
    font-size: 14px;
    color: #0c0902;
    line-height: 1.6;
}

/* 기본 요소 스타일 */
a {
    transition: all 0.3s ease;
    color: #0f0e15;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

p {
    margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1a2229;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Trajan Pro Bold', serif;
    font-weight: 600;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(20px, 4vw, 24px);
}

h2 {
    font-size: clamp(18px, 3.5vw, 20px);
}

h3 {
    font-size: clamp(16px, 3vw, 16px);
}

/* 레이아웃 */
.container {
    position: relative;
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
}

/* Flexbox 유틸리티 */
.flex {
    display: flex;
    flex-wrap: wrap;
}

.flex-c {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.flex-s {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex-s-c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.flex-c-c {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* 폼 요소 */
input,
textarea,
select {
    background-color: #e9e7f0;
    border: 1px solid #aca7c2;
    color: #000;
    padding: 13px 20px;
    font-size: 14px;
    min-width: 220px;
    font-family: 'Trajan Pro Bold', serif;
    transition: all 0.3s ease;
    border-radius: 4px;
}

input:focus,
textarea:focus,
select:focus {
    background-color: #fff;
    border: 1px solid #ac8899;
    box-shadow: 0px 0px 15px 0px rgba(229, 4, 129, 0.4);
    outline: none;
}

select {
    appearance: none;
    background-image: url(../images/dropdown-icon.png);
    background-position: right 10px center;
    background-repeat: no-repeat;
    cursor: pointer;
    padding-right: 40px;
}

button,
.button {
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    padding: 14px 45px;
    border: 2px solid #242b2e;
    color: #0f151a;
    background: transparent;
    position: relative;
    z-index: 1;
    text-align: center;
    font-family: 'Trajan Pro Bold', serif;
    font-size: 14px;
    border-radius: 4px;
}

button:hover,
.button:hover {
    background-color: #fff;
}

.button {
    display: inline-block;
    text-decoration: none;
}

/* 헤더 네비게이션 */
.topPanel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid #c4bacb;
}

.topPanel-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    position: relative;
    gap: 20px;
}

.topPanel-left {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.topPanel-left .logo-top img {
    height: 40px;
    width: auto;
}

.topPanel .menu {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: space-around;
    flex: 1;
    gap: 5px;
}

.topPanel .menu li {
    position: relative;
}

.topPanel .menu li a {
    color: #000;
    font-size: 16px;
    height: 90px;
    line-height: 90px;
    padding: 0 15px;
    display: block;
    position: relative;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.topPanel .menu li a:hover::after,
.topPanel .menu li .active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: #c1216b;
    height: 2px;
    width: 100%;
}

/* 드롭다운 메뉴 */
.topPanel .dropDown-menu {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    width: 200px;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.topPanel .dropDown-menu li {
    padding: 0;
}

.topPanel .dropDown-menu li a {
    padding: 12px 20px;
    height: auto;
    line-height: 1.4;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.topPanel .dropDown-menu li a:hover {
    background: rgba(193, 33, 107, 0.1);
    color: #c1216b;
    padding-left: 25px;
}

.menu-a::before {
    content: "";
    position: absolute;
    background: url(../images/dropdown-icon.png) no-repeat;
    height: 6px;
    width: 11px;
    top: 50%;
    margin-top: -2px;
    right: -15px;
}

.menu-a.show::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: #c1216b;
    height: 2px;
    width: 100%;
}

/* 소셜 버튼 최적화 */
.social-floating {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 500;
}

.social-floating a {
    display: block;
    width: 55px;
    height: 55px;
    background-color: #000;
    border-radius: 50%;
    margin: 6px 0;
    transition: all 0.3s ease;
    background-repeat: no-repeat;
    background-position: center;
}

.social-floating a:hover {
    background-color: #fff;
    transform: scale(1.1);
}

.social-floating a.fb {
    border: 1px solid #046dbd;
    background-image: url(../images/soc-icons.png);
    background-position: 17px 19px;
}

.social-floating a.tg {
    border: 1px solid #046dbd;
    background-image: url(../images/telegram-icon.png);
    background-size: 16px 19px;
}

.social-floating a.dc {
    border: 1px solid #60a6b4;
    background-image: url(../images/soc-icons.png);
    background-position: 17px -45px;
}

/* 메인 컨텐츠 */
.main {
    background: #d6d3e6;
    min-height: 100vh;
}

.content {
    padding: 120px 0 40px;
    line-height: 1.6;
}

.content a {
    color: #c1216b;
}

.content a:hover {
    color: #8b1a4a;
}

.content ul {
    margin-bottom: 15px;
    padding-left: 40px;
}

.content ul li {
    list-style-type: none;
    padding: 2px 0;
}

/* 전역 li 스타일 - 모든 점 표시 완전 제거 */
li,
ul li,
ol li,
.menu li,
.newsList li,
.dropDown-menu li,
.footerMenu li,
.footerMenu ul li {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    list-style-position: outside !important;
}

/* 모든 ul, ol 리스트 스타일 제거 */
ul,
ol {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
}

/* before/after pseudo 요소로 생성된 점도 제거 */
li:before,
ul li:before,
ol li:before {
    content: none !important;
    display: none !important;
}

/* 테이블 스타일 */
table {
    width: 100%;
    margin-bottom: 15px;
    border-collapse: collapse;
}

table td,
table th {
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: left;
}

table th {
    background: rgba(0, 0, 0, 0.8);
    font-weight: bold;
}

table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.1);
}

table tr:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* 모달 스타일 */
.modal_div {
    width: 420px;
    max-width: 90vw;
    min-height: 300px;
    background: #f3f0fa;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    opacity: 0;
    z-index: 999;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal_div .modal_close {
    width: 21px;
    height: 21px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    color: #333;
    font-size: 24px;
    font-weight: bold;
}

#overlay {
    z-index: 888;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    display: none;
}

/* 유틸리티 클래스 */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

/* 애니메이션 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* 접근성 개선 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 포커스 스타일 */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #c1216b;
    outline-offset: 2px;
}

/* 반응형 디자인 */
@media (max-width: 1260px) {
    .container {
        padding: 0 20px;
    }

    .topPanel .menu {
        gap: 15px;
    }

    .topPanel .menu li a {
        font-size: 14px;
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .topPanel {
        height: 60px;
    }

    .topPanel-inner {
        height: 60px;
    }

    .topPanel .menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .topPanel .menu.show {
        display: flex;
    }

    .topPanel .menu li {
        width: 100%;
        text-align: center;
    }

    .topPanel .menu li a {
        height: auto;
        line-height: 1.4;
        padding: 15px;
    }

    .content {
        padding-top: 80px;
    }

    .modal_div {
        width: 95vw;
        padding: 30px 20px;
    }

    .social-floating {
        right: 10px;
    }

    .social-floating a {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 18px;
    }

    h3 {
        font-size: 16px;
    }

    input,
    textarea,
    select {
        min-width: 100%;
    }

    button,
    .button {
        padding: 12px 25px;
        font-size: 12px;
    }

    .social-floating {
        right: 5px;
    }

    .social-floating a {
        width: 40px;
        height: 40px;
        margin: 4px 0;
    }
}

.bright:hover {
    -webkit-filter: brightness(120%);
    filter: brightness(120%);
}

.header {
    background: url(../images/header-bg.jpg) center top no-repeat;
    background-size: cover;
    height: 711px;
}

.news {
    background: url(../images/news-bg.jpg) center top no-repeat;
    background-size: cover;
    height: 748px;
}

.news .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-top: 220px;
    gap: 30px;
}

.news .container>div {
    width: calc(50% - 15px);
    min-width: 0;
}

.carousel {
    background: url(../images/carousel-bg.jpg) center top no-repeat;
    background-size: cover;
    height: 690px;
    position: relative;
}

.footer {
    background: url(../images/footer-bg.jpg) center top no-repeat;
    background-color: #d8d4e7;
    background-size: cover;
    height: 830px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.topPanel:after {
    content: "";
    position: absolute;
    background: #c4bacb;
    left: 0px;
    height: 1px;
    width: 100%;
    bottom: 0px;
}

.langBlock {
    position: relative;
    height: 90px;
    line-height: 90px;
}

.langBlock:after {
    content: "";
    background: url(../images/lang-icon.png) no-repeat;
    position: absolute;
    width: 18px;
    height: 18px;
    left: -15px;
    top: 50%;
    margin-top: -9px;
}

.langBlock .menu-a {
    color: #000;
    padding: 0px 15px;
    display: block;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    font-size: 16px;
}

.langBlock .menu-a:first-letter {
    font-size: 18px;
}

.langBlock .dropDown-menu {
    line-height: 1;
    left: -40px;
    width: calc(100% + 80px);
}

.game-start-top {
    opacity: 0;
    color: #fff;
    background: #9f1f5b;
    height: 90px;
    line-height: 90px;
    font-size: 0px;
    font-weight: bold;
    padding: 0px 0px;
    text-transform: uppercase;
    margin-left: 0px;
}

.topPanel-top {
    background: rgba(255, 255, 255, 1);
    padding: 0px 0px 0px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.topPanel-top:after {
    display: none;
}

.topPanel-top .game-start-top {
    display: block;
    font-size: 20px;
    padding: 0px 60px;
    opacity: 1;
    margin-left: 40px;
}

.headerBlock {
    position: absolute;
    right: 0px;
    bottom: 150px;
    width: 320px;
    z-index: 7;
}

.gameStart {
    display: block;
    text-align: center;
    color: #fff;
    background: #a72160;
    width: 100%;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 40px 0px 85px 0px;
    position: relative;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(149, 29, 85, 0.8);
    box-shadow: 0px 0px 30px 0px rgba(149, 29, 85, 0.8);
}

.gameStart span {
    font-size: 36px;
    display: block;
    margin-top: 3px;
}

.gameStart p {
    margin-bottom: 0px;
    font-weight: normal;
    text-transform: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.35);
    left: 0px;
    bottom: 0px;
    width: 100%;
    text-align: center;
    height: 45px;
    line-height: 45px;
    font-size: 12px;
    color: #dddee0;
}

.icon {
    position: relative;
    display: inline-block;
    width: 17px;
    height: 17px;
    margin: 0px 3px -2px 3px;
}

.icon.download-icon {
    background: url(../images/download-icon.png) center no-repeat;
}

.personalBlock {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #602f4f), color-stop(90%, #312d3d));
    background: linear-gradient(to bottom, #602f4f 10%, #312d3d 90%);
    padding: 60px 45px;
}

.personalBlock .pers-button {
    display: block;
    background: #2a1825;
    color: #cfcece;
    font-size: 14px;
    padding: 15px 0px;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.personalBlock p {
    color: #dde1f6;
    text-align: center;
    font-size: 13px;
    margin-bottom: 0px;
}

.personalBlock p a {
    color: #82afd1;
}

.personalBlock p a:hover {
    color: #fff;
}

.header-swiper {
    width: 100%;
    height: 710px;
    margin-left: 0px;
    position: absolute;
}

.header-swiper .swiper-pagination {
    text-align: left;
    bottom: 170px;
    width: 100%;
}

.header-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 52px;
    height: 4px;
    background: #838394;
    opacity: 1;
    border-radius: 0px;
    margin: 0px 4px;
}

.header-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #010001;
}

.header-swiper .swiper-slide {
    background-position: right bottom;
    background-repeat: no-repeat;
}

.header-swiper .swiper-slide.swiper-slide-active .header-swiper-info {
    left: 0px;
    top: 0px;
}

.header-swiper .hero-pag {
    position: relative;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.hero-swiper {
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.hero-swiper .swiper-slide {
    height: 711px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-swiper-info {
    position: relative;
    z-index: 4;
    top: -100px;
    left: 0px;
    -webkit-transition: 1.5s;
    transition: 1.5s;
}

.header-swiper-info h2 {
    color: #693631;
    font-size: 36px;
    font-weight: normal;
    text-transform: uppercase;
}

.header-swiper-info h3 {
    font-size: 70px;
    font-weight: normal;
    margin-bottom: 25px;
}

.swiperSlideBlock {
    height: 100%;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.swiper-hero {
    position: absolute;
    right: 280px;
    bottom: 0px;
}

.serverBlock {
    background: #211e2b;
    position: absolute;
    width: 100%;
    bottom: -160px;
    z-index: 8;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.4);
}

.onlineBlock {
    width: 50%;
    padding: 60px 90px 60px 170px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    position: relative;
}

.onlineBlock:nth-child(1):after {
    content: "";
    position: absolute;
    background: #3a3843;
    width: 1px;
    height: 80px;
    top: 50%;
    margin-top: -40px;
    right: 0px;
}

.onlineBlock.server_1 {
    background: url(../images/server-icon_1.png) top -15px left -15px no-repeat;
}

.onlineBlock.server_2 {
    background: url(../images/server-icon_2.png) top -24px left -18px no-repeat;
}

.onlineBlock-info p {
    font-weight: bold;
    margin-bottom: 14px;
}

.onlineBlock-info .server-online {
    font-size: 24px;
}

.about {
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    background: #1e1b26;
    border: 2px solid #18141a;
    border-radius: 2px;
    padding: 15px 40px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about:hover {
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.nav-icon {
    display: inline-block;
    background: url(../images/nav-icon.png) no-repeat;
    width: 6px;
    height: 11px;
    margin-left: 35px;
}

.serverBlock-online {
    border-bottom: 1px solid #3a3543;
}

.allServer {
    padding: 30px 0px;
    text-align: center;
}

.allServer a {
    color: #fff;
}

.nav-icon-b {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    margin-left: 10px;
}

.color-blue {
    color: #6efff6;
}

.newsBlock {
    flex: 1;
    min-width: 0;
}

.newsBlock h2 {
    font-size: 36px;
    font-weight: normal;
    border-bottom: 1px solid #b4b2b9;
    padding-bottom: 25px;
    padding: 0px 20px 25px 20px;
    margin-bottom: 35px;
    position: relative;
}

.newsBlock h2 .l-news {
    color: #8a889a;
    right: 15px;
    top: 2px;
    position: absolute;
    font-size: 42px;
}

.newsBlock h2 .l-news:hover {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.swiper-news .swiper-slide {
    height: 305px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.swiper-news .swiper-slide .swiperNewsInfo {
    background: rgba(41, 29, 45, 0.75);
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    padding: 20px 35px;
}

.swiper-news .swiper-slide .swiperNewsInfo p {
    margin-bottom: 0px;
    color: #fff;
    line-height: 1.4;
}

.swiper-news .swiper-slide .swiperNewsInfo span {
    float: right;
    color: #bfbfbf;
}

.swiper-news .swiper-button-next {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-news .swiper-button-next:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-news .swiper-button-prev {
    left: 10px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-news .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-news .swiper-button-next,
.swiper-news .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.swiper-news .swiper-button-next:hover,
.swiper-news .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.newsList li {
    position: relative;
    padding: 20px 20px;
    border-bottom: 1px solid #bcbac8;
}

.newsList li:last-child {
    border-bottom: none;
}

.newsList li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.newsList-type {
    color: #42414e;
    margin-right: 10px;
}

.newsList-title {
    color: #0f0e15;
    position: relative;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: block;
    padding: 3px 30px 3px 0px;
    margin-right: 80px;
}

.newsList-title:after {
    content: "N";
    background-color: #dc2279;
    color: #fff;
    padding: 3px 5px;
    font-size: 12px;
    position: absolute;
    right: 0;
}

.newsList-date {
    color: #42414e;
    position: absolute;
    right: 10px;
    font-size: 14px;
    top: 24px;
}

.carousel {
    padding-top: 100px;
}

.carousel h2 {
    text-align: center;
    color: #fff;
    font-size: 48px;
    margin-bottom: 10px;
}

.carousel h3 {
    text-align: center;
    color: #726e7d;
    font-size: 16px;
}

.swiperSlide-contentHover {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: -20px;
    width: 340px;
    left: 50%;
    margin-left: -170px;
    height: 230px;
    background-color: rgba(86, 31, 84, 0.9);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    color: #fff;
    font-size: 20px;
    padding: 70px;
    line-height: 1.4;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.swiperSlide-contentHover .l-more {
    background: #000;
    color: #fff;
    padding: 15px 25px;
    font-size: 14px;
}

.swiperSlide-content {
    width: 280px;
    height: 250px;
    margin: 0 auto;
    position: relative;
    background-size: contain !important;
    background-repeat: no-repeat !important;
}

.swiperSlide-content p {
    color: #fff;
    font-size: 16px;
    position: absolute;
    bottom: 20px;
    margin-bottom: 0px;
    text-align: center;
    width: 100%;
    z-index: 3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.swiperSlide-content:after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 2;
}

.swiperSlide-content.update {
    background: url(../images/content-bg_1.jpg) center no-repeat;
}

.swiperSlide-content.update:after {
    background: url(../images/content-img_1.png) center no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
}

.swiperSlide-content.bosses {
    background: url(../images/content-bg_2.jpg) center no-repeat;
}

.swiperSlide-content.bosses:after {
    content: "";
    background: url(../images/content-img_2.png) center no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
}

.swiperSlide-content.solo {
    background: url(../images/content-bg_3.jpg) center no-repeat;
}

.swiperSlide-content.solo:after {
    content: "";
    background: url(../images/content-img_3.png) center no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    left: 0px;
    right: auto;
}

.swiperSlide-content.pvp {
    background: url(../images/content-bg_4.jpg) center no-repeat;
}

.swiperSlide-content.pvp:after {
    content: "";
    background: url(../images/content-img_4.png) center no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
}

.swiperSlide-content.servers {
    background: url(../images/content-bg_5.jpg) center no-repeat;
}

.swiperSlide-content.servers:after {
    content: "";
    background: url(../images/content-img_5.png) center no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
}

.cont-swiper {
    padding-bottom: 120px;
    height: 400px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 50px;
}

.cont-swiper .swiper-wrapper {
    height: 100%;
    align-items: center;
    display: flex;
}

.cont-swiper .swiper-pagination {
    top: auto;
    bottom: 0px;
    position: absolute;
    width: 100%;
    text-align: center;
}

.cont-swiper .swiper-pagination .swiper-pagination-progressbar-fill {
    background: #951d55;
}

.cont-swiper .swiper-slide {
    position: relative;
    height: 300px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    max-width: calc(25% - 22.5px);
}

.cont-swiper .swiper-slide:hover .swiperSlide-contentHover {
    opacity: 1;
    visibility: visible;
}

.scrollIcon {
    background: url(../images/scroll-icon.png) no-repeat;
    width: 17px;
    height: 43px;
    position: absolute;
    bottom: 130px;
    left: 50%;
    margin-left: -8px;
    display: block;
    z-index: 3;
}

.scrollIcon a {
    display: block;
}

.scrollIcon-div {
    width: 17px;
    height: 26px;
    position: relative;
    overflow: hidden;
}

.scrollIcon-div span {
    width: 2px;
    height: 5px;
    background: #b0a289;
    display: block;
    position: absolute;
    top: 2px;
    margin-left: -1px;
    left: 50%;
    -webkit-animation: scroll 2s linear infinite;
    animation: scroll 2s linear infinite;
}

@-webkit-keyframes scroll {
    0% {
        top: 2px;
        opacity: 1;
    }

    50% {
        top: 38px;
        opacity: 1;
    }

    51% {
        top: 38px;
        opacity: 0;
    }

    52% {
        top: -10px;
        opacity: 0;
    }

    100% {
        top: -10px;
        opacity: 1;
    }
}

@keyframes scroll {
    0% {
        top: 2px;
        opacity: 1;
    }

    50% {
        top: 38px;
        opacity: 1;
    }

    51% {
        top: 38px;
        opacity: 0;
    }

    52% {
        top: -10px;
        opacity: 0;
    }

    100% {
        top: -10px;
        opacity: 1;
    }
}

.footerMenu {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footerMenu-container {
    height: 430px;
}

.footer .container {
    height: auto;
}

.footerMenu-block {
    margin: 0px 50px;
}

.footerMenu-block h3 {
    font-size: 24px;
    margin-bottom: 45px;
    text-transform: uppercase;
}

.footerMenu-block li {
    padding: 8px 0px;
}

.footerMenu-block li a {
    color: #625f6b;
    font-size: 16px;
}

.footerMenu-block li a:hover {
    color: #000;
    text-decoration: underline;
}

.copyBlock {
    background: linear-gradient(135deg, rgba(172, 171, 200, 0.4) 0%, rgba(106, 90, 205, 0.2) 100%);
    padding: 60px 0px 80px 0px;
    height: auto;
    border-top: 2px solid rgba(106, 90, 205, 0.3);
}

.copyBlock-container {
    text-align: center;
}

.footerLogo {
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.footerLogo .main-logo {
    max-width: 550px;
    height: auto;
    transition: all 0.3s ease;
}

.footerLogo .main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(106, 90, 205, 0.4));
}

.footerContent {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

.lineage {
    color: #6a5acd;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.lineageCopy {
    text-transform: uppercase;
    color: #333;
    line-height: 1.5;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
}

.modalContainer {
    text-align: center;
    width: 100%;
}

.modalContainer h2 {
    font-size: 24px;
    margin-bottom: 30px;
}

.modalContainer p {
    position: relative;
}

.password-icon {
    background-image: url(../images/password-icon.png);
    background-position: right 20px center;
    background-repeat: no-repeat;
}

.border {
    height: 1px;
    width: 100%;
    position: relative;
    background: #c0bdc5;
    margin-bottom: 35px;
}

.border::after {
    content: "";
    background: #000;
    height: 2px;
    width: 70px;
    position: absolute;
    left: 50%;
    margin-left: -35px;
    bottom: 0px;
}

.modalForm input {
    width: 100%;
}

.modalForm select {
    width: 100%;
}

.modalForm button,
.modalForm .button {
    width: 100%;
}

.agreement {
    margin-bottom: 30px;
    padding-top: 10px;
}

.check-container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: -8px;
    left: 5px;
    height: 16px;
    width: 16px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #a31655;
}

.check-container input:checked~.checkmark {
    background: url(../images/check.png) no-repeat;
    border: none;
}

.btn {
    display: none;
    position: absolute;
    left: 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 14;
    background: transparent;
    border: none;
    padding: 0;
}

.btn span {
    display: block;
    width: 28px;
    height: 4px;
    background: #000;
    margin: 3px 0px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
}

.btn.active {
    left: 270px;
    top: 40px;
}

.btn.active span:nth-child(1) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.btn.active span:nth-child(2) {
    display: none;
}

.btn.active span:nth-child(3) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: 6px;
}

.promo .topPanel {
    background: #fff;
    padding: 0px 0px 0px 40px;
}

.promo .topPanel .game-start-top {
    display: block;
    font-size: 20px;
    padding: 0px 60px;
    opacity: 1;
    margin-left: 40px;
}

.promo-swiper .swiper-slide {
    min-height: 2000px;
}

.promo-swiper .swiper-slide_1 {
    background: url(../images/server-icon-big-1.png) top 20px center no-repeat, url(../images/bg_1.jpg) top center no-repeat;
}

.promo-swiper .swiper-slide_2 {
    background: url(../images/server-icon-big-2.png) top 20px center no-repeat, url(../images/bg_2.jpg) top center no-repeat;
}

.promo-container {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.promo-logo {
    padding-top: 250px;
    margin-bottom: 80px;
}

.promo-logo.promo-logo_1 img {
    -webkit-filter: drop-shadow(0px 0px 15px #73aded);
    filter: drop-shadow(0px 0px 15px #73aded);
}

.promo-logo.promo-logo_2 img {
    -webkit-filter: drop-shadow(0px 0px 15px #a243d5);
    filter: drop-shadow(0px 0px 15px #a243d5);
}

.promoTitle {
    color: #fff;
    font-size: 90px;
    text-transform: uppercase;
    margin-bottom: 70px;
}

.promoTitle p {
    font-size: 24px;
    margin-bottom: 10px;
}

.promoTitle.promoTitle_1 p {
    color: #96fcfb;
}

.promoTitle.promoTitle_2 p {
    color: #f88bff;
}

.promo-border {
    height: 1px;
    width: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 35px;
    max-width: 750px;
    margin: 0 auto;
    margin-bottom: 80px;
}

.promo-border::after {
    content: "";
    background: #fff;
    height: 2px;
    width: 140px;
    position: absolute;
    left: 50%;
    margin-left: -70px;
    bottom: 0px;
}

.promoInfo {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 50px;
}

.promoInfo p {
    font-size: 48px;
}

.promoVideo {
    display: block;
    background: url(../images/play-icon.png) center no-repeat;
    background-color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 15px;
}

.promoVideo:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.promoBlock {
    height: 1000px;
    padding-top: 620px;
}

.promoBlock.promoBlock_1 {
    background: url(../images/hero_2.png) center top no-repeat;
}

.promoBlock.promoBlock_2 {
    background: url(../images/hero_1.png) center top no-repeat;
}

.promoBlock h2 {
    font-size: 60px;
}

.promoBlock p {
    font-size: 18px;
    margin-bottom: 35px;
}

.freeBlock h2 {
    font-size: 72px;
    margin-bottom: 70px;
}

.promo-border-dark {
    background: rgba(0, 0, 0, 0.1);
}

.promo-border-dark:after {
    background: black;
}

.freeButton {
    margin-bottom: 170px;
}

.freeButton span {
    font-size: 24px;
    display: block;
    margin: 0px 70px;
    text-transform: uppercase;
}

.free-button {
    display: block;
    border: 3px solid #9f1f5b;
    border-radius: 10px;
    color: #9f1f5b;
    font-size: 36px;
    padding: 35px 90px;
}

.free-button:hover {
    color: #fff;
    background-color: #9f1f5b;
}

.promoArrow {
    width: 100%;
    max-width: 1050px;
    position: relative;
    margin: 0 auto;
    bottom: 260px;
}

.promoArrow>div {
    color: #000;
    border: 1px solid #000;
    padding: 25px 35px;
    width: 80px;
    height: 70px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.promoArrow>div:after {
    font-size: 26px;
}

.promoArrow>div:hover {
    background-color: #000;
    color: #fff;
}

.socBlock {
    position: fixed;
    right: 30px;
    top: 40%;
    z-index: 11;
}

.socBlock a {
    display: block;
    width: 55px;
    height: 55px;
    background-image: url(../images/soc-icons.png);
    background-repeat: no-repeat;
    background-color: #000;
    border-radius: 50%;
    margin: 6px 0px;
    transition: all 0.3s ease;
}

.socBlock a:hover {
    background-color: #fff;
    transform: scale(1.1);
}

.socBlock a.fb {
    border: 1px solid #046dbd;
    background-position: left 17px top 19px;
}

.socBlock a.tg {
    border: 1px solid #0088cc;
    background-position: center center;
    background-image: url(../images/telegram-icon.png);
    background-size: 24px 24px;
}

.socBlock a.dc {
    border: 1px solid #60a6b4;
    background-position: left 17px top -45px;
}

.toTop {
    background: url(../images/top-icon.jpg) no-repeat;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 49px;
    height: 43px;
    cursor: pointer;
    display: none;
}

/*# sourceMappingURL=style.css.map */

/* 로그인 상태 관련 스타일 */
.logged-in-state .user-info {
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.logged-in-state .username {
    font-weight: bold;
    color: #fff;
}

.logged-in-state .user-actions {
    margin-top: 5px;
}

.logout-btn {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logout-btn:hover {
    opacity: 1;
    text-decoration: underline;
}

.switch-modal {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.switch-modal a {
    color: #007bff;
    text-decoration: none;
}

.switch-modal a:hover {
    text-decoration: underline;
}

/* 모달 개선 */
.modalForm input[name="username"],
.modalForm input[name="password"],
.modalForm input[name="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.modalForm select[name="server"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
}