/*!
 * --------------------------------------------------
 *  One Piece x Three Dynasty anime style - Custom Layout CSS
 * --------------------------------------------------
 *  Author: Wilrey Suico
 *  Role: Full Stack Developer
 *  Description: Handles layout, spacing, and UI styling
 *  Version: 1.0.0
 *  Last Updated: May 2026
 * --------------------------------------------------
 */

:root {
    --primary-color: #f13a11;
    --white-color: #ffffff;
    --dark-color: #171819;
    --about-bg-color: #f9f9f9;
    --devil-fruit-color: #a349fb;
    --haki-color: #ff1e1e;
    --bg-dark: #080a0c;
    --yellow-color: #ffcc33;
    --green-color: #02af19;

    --gray-color: #909090;
    --link-color: #404040;
    --p-color: #666262;

    --base-font-family: 'Plain', sans-serif;
    --font-weight-bold: bold;
    --font-weight-normal: normal;
    --font-weight-light: 300;
    --font-weight-thin: 100;

    --h1-font-size: 48px;
    --h2-font-size: 36px;
    --h3-font-size: 28px;
    --h4-font-size: 24px;
    --h5-font-size: 22px;
    --h6-font-size: 22px;
    --p-font-size: 18px;
    --base-font-size: 16px;
    --menu-font-size: 14px;

    --border-radius-large: 100%;
    --border-radius-small: 2px;
}


.text-yellow {
    color: var(--yellow-color);
}

.text-green {
    color: var(--green-color);
    font-weight: 800;
}

body {
    background: var(--white-color);
    font-family: var(--base-font-family);
}


.main-header {
    z-index: 1050;
    pointer-events: none;
}

.game-navbar {
    pointer-events: auto;
}

/* HERO */
.hero-section {
    padding-top: 100px;
}

.game-navbar {
    pointer-events: auto;
}

/* HERO */
.hero-section {
    padding-top: 100px;
}

/* NAVBAR */
.game-navbar {
    background: linear-gradient(180deg, #1a2a3a 0%, #0a111a 100%);
    border-bottom: 2px solid #00d4ff;

    padding: 8px 40px;
    min-height: 70px;

    clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    flex-wrap: wrap;

    transition: all 0.3s ease;
}

.nav-btn-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-icon {
    width: 45px;
    height: auto;
    z-index: 2;
    margin-right: -15px;

    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
    transition: all 0.3s ease;
}

.nav-btn {
    background: linear-gradient(180deg, #253545 0%, #15202b 100%);
    color: #ffffff;
    text-decoration: none;

    font-weight: bold;
    font-size: 14px;

    padding: 8px 25px 8px 30px;

    border: 1px solid #3c4a5a;
    border-radius: 8px;

    transition: all 0.3s ease;

    box-shadow: inset 0 0 10px rgba(0, 212, 255, 0.3);

    text-transform: uppercase;

    white-space: nowrap;
}

.nav-btn:hover {
    color: #00d4ff;
    border-color: #00d4ff;

    box-shadow:
        inset 0 0 15px rgba(0, 212, 255, 0.6),
        0 0 10px rgba(0, 212, 255, 0.4);
}

.nav-btn-wrapper:hover .nav-icon {
    transform: scale(1.15);

    filter:
        drop-shadow(0 0 8px rgba(0, 212, 255, 0.9)) brightness(0) saturate(100%) invert(69%) sepia(98%) saturate(748%) hue-rotate(165deg);
}

/* MOBILE BUTTON */
.mobile-menu-btn,
.mobile-close-btn {
    display: none;

    background: linear-gradient(180deg, #253545 0%, #15202b 100%);
    color: #00d4ff;

    border: 1px solid #00d4ff;
    border-radius: 10px;

    width: 50px;
    height: 50px;

    font-size: 22px;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow:
        inset 0 0 10px rgba(0, 212, 255, 0.3),
        0 0 10px rgba(0, 212, 255, 0.2);

    transition: all 0.3s ease;
}

.mobile-menu-btn:hover,
.mobile-close-btn:hover {
    transform: scale(1.05);
}



/* =========================================
   VIDEO SECTION
========================================= */

.video-section {
    position: relative;
    padding: 80px 0;
}

/* VIDEO CARD */
.video-card,
.discord-card {
    background: linear-gradient(180deg, #1a2a3a 0%, #0a111a 100%);

    border: 1px solid rgba(0, 212, 255, 0.3);

    border-radius: 16px;

    padding: 12px;

    overflow: hidden;

    box-shadow:
        0 0 20px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(0, 212, 255, 0.08);

    height: 100%;
}

/* RESPONSIVE YOUTUBE */
.responsive-iframe {
    position: relative;

    width: 100%;

    padding-top: 56.25%;
    /* 16:9 ratio */

    overflow: hidden;

    border-radius: 12px;
}

.responsive-iframe iframe {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    border: 0;
}

/* DISCORD */
.discord-card iframe {
    width: 100%;
    height: 100%;

    min-height: 420px;

    border: 0;

    border-radius: 12px;
}



/*---------------------------------------
     HERO              
  -----------------------------------------*/

.hero-section {
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    vertical-align: middle;
    min-height: 100vh;
    position: relative;
}

.hero-logo {
    width: 300px;
}


/*---------------------------------------
    FEATURE          
  -----------------------------------------*/

.feature {
    padding: 5rem 0;
}

/* Outer Border with Glowing Effect */
.event-card {
    background: linear-gradient(to bottom, #f5cb78, #5e4c29);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 191, 73, 0.5);
    max-width: 700px;
    width: 100%;
}


/* Inner Container */
.event-inner {
    background: rgba(10, 25, 40, 0.95);
    border-radius: 12px;
}

.event-title {
    color: #ffcc33;
    font-weight: 900;
    font-size: 1.9rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 204, 51, 0.5);
}

.skull-icon {
    width: 50px;
    height: auto;
}

/* Styled Subtitle with horizontal lines */
.subtitle-container {
    display: flex;
    align-items: center;
    color: #4fc3f7;
    font-weight: bold;
    font-size: 1.1rem;
}

.subtitle-container::before,
.subtitle-container::after {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4fc3f7, transparent);
}

.subtitle {
    padding: 0 15px;
}

/* Inner Text Box */
.info-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.text-label {
    color: #ffcc33;
    font-weight: bold;
    margin-right: 5px;
}

/* Custom Discord Button */
.btn-discord {
    background: linear-gradient(to bottom, #2c3e50, #000000);
    border: 1px solid #4fc3f7;
    color: white;
    text-decoration: none;
    padding: 8px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.btn-discord:hover {
    color: #4fc3f7;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-skull {
    width: 25px;
}


/* Wrapper to allow character to pop out of the top */
.game-card-wrapper {
    position: relative;
    padding-top: 40px;
    /* Space for the character head */
    cursor: pointer;
    transition: transform 0.2s ease;
}

.game-card-wrapper:hover {
    transform: translateY(-5px);
}

/* The floating character */
.character-img {
    position: absolute;
    top: 0px;
    left: 23%;
    width: 109px;
    z-index: 4;
    pointer-events: none;
}

/* Base Card Style */
.game-card {
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    /* Keeps text at the bottom */
    justify-content: center;
    padding-bottom: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.card-text {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Specific Colors and Glows from image_1e1abf.png */

/* RED/DARK BUTTON */
.card-red {
    background: linear-gradient(180deg, #333 0%, #111 100%);
    box-shadow: inset 0 0 15px rgba(255, 0, 0, 0.4), 0 5px 15px rgba(0, 0, 0, 0.5);
    border-color: #555;
}

/* BLUE BUTTON */
.card-blue {
    background: linear-gradient(180deg, #1a4a7a 0%, #0a2a4a 100%);
    box-shadow: inset 0 0 20px #00d4ff, 0 0 15px rgba(0, 212, 255, 0.5);
    border-color: #00d4ff;
}

/* GOLD/BROWN BUTTON */
.card-gold {
    background: linear-gradient(180deg, #7a4a1a 0%, #3a1a0a 100%);
    box-shadow: inset 0 0 20px #ffaa00, 0 0 15px rgba(255, 170, 0, 0.4);
    border-color: #ffaa00;
}

/* Anchor specific adjustment */
.anchor-fix {
    width: 90px;
    left: 27%;
    top: -1px;
}


.card-event-btn-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.card-event-discord-icon {
    width: 52px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
    position: absolute;
    right: -40px;
}

.card-event-skull-icon {
    width: 52px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
    position: absolute;
    left: -40px;
}


.card-event-btn {
    background: linear-gradient(180deg, #253545 0%, #15202b 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 25px 8px 30px;
    border: 1px solid #3c4a5a;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 10px rgba(0, 212, 255, 0.3);
    text-transform: uppercase;
    cursor: pointer;
}

.card-event-btn:hover {
    color: #00d4ff;
    border-color: #00d4ff;
    box-shadow: inset 0 0 15px rgba(0, 212, 255, 0.6), 0 0 10px rgba(0, 212, 255, 0.4);
    /* transform: translateY(-2px); */
}


.menu-btn {
    background: linear-gradient(180deg, #253545 0%, #15202b 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    /* padding: 8px 25px 8px 30px; */
    border: 1px solid #3c4a5a;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    /* Blue glowing inner shadow */
    box-shadow: inset 0 0 10px rgba(0, 212, 255, 0.3);
    text-transform: uppercase;
    cursor: pointer;
}

.menu-btn:hover {
    color: #00d4ff;
    border-color: #00d4ff;
    box-shadow: inset 0 0 15px rgba(0, 212, 255, 0.6), 0 0 10px rgba(0, 212, 255, 0.4);
    /* transform: translateY(-2px); */
}

.menu-icon {
    width: 45px;
    height: auto;
    z-index: 2;
    margin-right: -15px;
    /* Overlaps icon with the button slightly */
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
    transition: all 0.3s ease;
}


.menu-btn:hover .menu-icon {
    transform: scale(1.2);
}

.menu-discord-icon {
    width: 45px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-title {
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #191919;
    position: relative;
    z-index: 2;
}

.section-title span {
    position: absolute;
    top: 30px;
    color: #f4f4f4;
    left: 0;
    right: 0;
    z-index: 1;
    font-weight: 700;
    font-size: 52px;
    text-transform: uppercase;
    line-height: 0;
}

.section-title p {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}



@media (max-width: 575px) {
    .section-title h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .section-title span {
        font-size: 38px;
    }
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../../assets/images/cta-bg.png") fixed center center;
    background-size: cover;
    padding: 200px 0;
}

.cta-video {
    background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../../assets/images/cta-video.png") fixed center center;
    background-size: cover;
    padding: 200px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn:hover {
    background: #cc1616;
    border: 2px solid #cc1616;
}

.server-card {
    background: #1c2b3a;
    border: 3px solid #0d1b2a;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

/* Header */
.server-header {
    background: linear-gradient(to bottom, #2f4f6f, #1e3550);
    color: #ffcc33;
    text-align: center;
    font-weight: bold;
    padding: 8px;
    font-size: 14px;
    border-bottom: 2px solid #0d1b2a;
}

/* Image container */
.server-body {
    padding: 6px;
    background: #102030;
}

/* Image styling */
.server-body img {
    width: 100%;
    border: 2px solid #3a5a7a;
    border-radius: 4px;
}


/* List */
.feature-list {
    list-style: none;
    margin: 0;
    padding: 8px;
    background: #102030;
}

.feature-list li {
    display: flex;
    align-items: center;
    color: #cbd6e2;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
    padding-left: 5px;
}

/* Hover */
.feature-list li:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Active item */
.feature-list li.active {
    background: rgba(0, 150, 255, 0.2);
    color: #ffffff;
}

/* Alternating background (dark / light) */
.feature-list li:nth-child(odd) {
    background: #0f1f2e;
    /* darker */
}

.feature-list li:nth-child(even) {
    background: #14293d;
    /* lighter */
}

/* Icon dots */
.icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

/* Colors */
.icon.green {
    background: #4caf50;
}

.icon.blue {
    background: #2196f3;
}

.icon.red {
    background: #e53935;
}

/* Main Card Container */
.skill-game-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Left Glowing Borders */
.border-purple {
    border-left: 4px solid #a349fb;
}

.border-red {
    border-left: 4px solid #ff1e1e;
}

/* Icon Styling */
.icon-box {
    width: 70px;
    height: 70px;
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.icon-box img {
    width: 80%;
    border-radius: 8px;
}

/* Text Styling */
.card-title {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.text-purple {
    color: #d880ff;
}

.text-red {
    color: #ff4d4d;
}

.card-subtitle {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 8px;
}

.rate-label {
    font-weight: bold;
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: #868686;
}

/* Custom Progress Bars */
.custom-progress {
    height: 6px;
    background-color: #2c2c2c;
    border-radius: 10px;
    width: 140px;
}

.bar-purple {
    background: linear-gradient(90deg, #7b2ff7, #00d2ff);
}

.bar-red {
    background: linear-gradient(90deg, #ff1e1e, #ff8000);
}


.skill-landing-section {
    position: relative;
    min-height: 100vh;
    padding: 40px 0;
    overflow: hidden;
    background:
        linear-gradient(to right, rgba(2, 10, 25, 0.95) 35%, rgba(2, 10, 25, 0.55)),
        url('../../assets/images/skill-landing-section-bg.png') center center/cover no-repeat;
}



/* Container for the whole list */
.skill-list-container {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin: 0 auto;
}

/* Header Section */
.header-row {
    border-bottom: 1px solid var(--neon-teal);
    padding-bottom: 10px;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    color: var(--neon-teal);
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Individual Skill Row */
.skill-item {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(248, 244, 244, 0.05);

    /* Hardware Acceleration */
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;

    /* Smoother Timing: "ease-out" feel */
    transition:
        transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.25s ease,
        background 0.2s ease;

    cursor: pointer;
}

.skill-item:hover {
    background: rgba(255, 255, 255, 0.07);
    /* Reduced move distance for a more stable feel */
    transform: translate3d(6px, 0, 0);
}

.skill-item:last-child {
    border-bottom: none;
}

/* Skill Icon */
.skill-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 15px;
    object-fit: cover;
}

/* Skill Info */
.skill-info {
    flex-grow: 1;
}

.skill-name {
    font-weight: bold;
    font-size: 1rem;
    margin: 0;
    color: white;
}

.skill-desc {
    font-size: 0.85rem;
    color: #bbb;
    margin: 0;
}

/* Badges */
.badge-custom {
    font-size: 0.65rem;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    margin-left: 5px;
    border: 1px solid transparent;
    background: transparent;
}

.badge-fruit {
    color: var(--devil-fruit-color);
    border-color: var(--devil-fruit-color);
}

.badge-haki {
    color: var(--haki-color);
    border-color: var(--haki-color);
}


/*---------------------------------------
     FOOTER              
  -----------------------------------------*/
footer {

    position: relative;
    min-height: 40vh;
    padding: 40px 0;
    overflow: hidden;
    background:
        linear-gradient(to right, rgba(2, 10, 25, 0) 35%, rgba(2, 10, 25, 0.55)),
        url('../../assets/images/footer-bg.png') center center/cover no-repeat;
}


footer .copyright {
    text-align: center;
    padding-top: 30px;
    color: whitesmoke;
}

.site-footer {
    padding: 3rem 0;
}

.site-footer a {
    color: var(--p-color);
    font-weight: var(--font-weight-light);
}

.site-footer p {
    font-size: var(--base-font-size);
}

.contact .fa,
.site-footer .fa {
    color: var(--primary-color);
}

.right-character-logo,
.left-character-logo {

    width: 130px;
}

.footer-logo {

    width: 150px;
}

/* PAGINATION */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.page-btn {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #ffffff;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-btn:hover {
    background: #fefeff;
    transform: translateY(-2px);
    color: #000;
}

.page-btn.active {
    background: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    color: #000000;
}

.page-btn-skill {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #000000;
    background: rgba(255, 255, 255, 0.05);
    color: black;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-btn-skill:hover {
    background: black;
    transform: translateY(-2px);
    color: #ffffff;
}

.page-btn-skill.active {
    background: black;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    color: #ffffff;
}


/* ========================================
   EVENT SECTION
======================================== */

.event-section-btm {
    position: relative;
    padding: 100px 0;
    overflow: hidden;

    background: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* TOP */

.section-top {
    text-align: center;
    margin-bottom: 40px;
}

.event-section-btm-mini-title {
    color: #2e2e2e;
    margin-bottom: 10px;
}

.event-section-btm-main-title {
    font-weight: 900;
    line-height: 1.1;

    text-transform: uppercase;

    color: #172534;

    text-shadow:
        0 2px 0 #fff,
        0 10px 20px rgba(0, 0, 0, 0.12);
}

.event-section-btm-subtitle {
    color: #384872;
    margin-top: 18px;
}

/* FILTER */

.filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    gap: 20px;

    margin-bottom: 40px;
}

.tabs-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    border: none;

    padding: 15px 28px;

    border-radius: 18px;

    background: #fff;
    color: #132469;

    font-weight: 700;

    transition: .3s ease;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.08);
}

.filter-btn i {
    margin-right: 8px;
}

.filter-btn.active {
    color: white;

    background:
        linear-gradient(135deg, #2f6bff, #003cff);

    box-shadow:
        0 10px 20px rgba(0, 72, 255, 0.3);
}

.dropdown-filter {
    border: none;
    min-width: 230px;
    border-radius: 18px;
    background: white;
    color: #132469;
    padding: 15px 22px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* remove Bootstrap default arrow */
.dropdown-toggle::after {
    display: none !important;
}

/* icon spacing */
.dropdown-filter i {
    font-size: 14px;
}

/* dropdown menu styling */
.dropdown-menu {
    border-radius: 14px;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    padding: 8px;
}

.dropdown-item {
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 500;
    color: #132469;
}

.dropdown-item:hover {
    background: #f3f6ff;
    color: #132469;
}

.vip-color {

    color: #ff9400 !important;
}

/* CARD */

.event-section-btm-card {
    overflow: hidden;
    border-radius: 22px;

    background:
        rgba(10, 15, 30, 0.92);

    border: 2px solid var(--yellow-color);
    transition: .35s ease;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.event-section-btm-card:hover {
    transform: translateY(-8px);
}

.event-section-btm-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.event-section-btm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BADGES */

.badge-type {
    position: absolute;
    top: 15px;
    left: 15px;

    z-index: 10;

    padding: 10px 18px;

    border-radius: 14px;

    color: white;
    font-weight: 800;
}

.badge-all {
    background:
        linear-gradient(135deg, #00ff00, #308530);
}

.badge-vip {
    background:
        linear-gradient(135deg, #ffb300, #ff7b00);
}

.badge-hot {
    background:
        linear-gradient(135deg, #ff0000, #e20303);
}



/* CONTENT */

.event-section-btm-content {
    padding: 28px;
    text-align: center;
}

.event-section-btm-title-btm {

    color: #ffffff;
    text-transform: uppercase;
    ont-weight: bolder !important;
    margin-bottom: 10px;
    font-weight: 700;
}

.event-section-btm-desc {
    color: #c7c7c7;

    min-height: 52px;

    margin-bottom: 14px;
}

.event-section-btm-date {
    color: #aaaaac;

    margin-bottom: 20px;
}

.event-section-btm-date i {
    margin-right: 8px;
}

.all-event-badge {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border: 1px solid #00ff00;
}


.vip-event-badge {
    background: rgba(255, 239, 215, 0.2);
    color: #ffcc00;
    border: 1px solid #ffcc00;
}

.hot-event-badge {
    background: rgba(255, 77, 77, 0.2);
    color: #ff4d4d;
    border: 1px solid #ff4d4d;
    animation: pulse 1.5s infinite;
}


.event-section-btm-status {
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.event-section-btm-status:hover {
    transform: scale(1.02);
}



/* RESPONSIVE */

@media(max-width: 991px) {

    .main-title {
        font-size: 48px;
    }

    .event-section-btm-title {
        font-size: 26px;
    }

    .event-section-btm-btn {
        font-size: 20px;
    }

}

@media(max-width: 768px) {

    .event-section-btm-section {
        padding: 70px 0;
    }

    .event-section-btm-title {
        font-size: 34px;
    }

    .subtitle {
        font-size: 16px;
    }

    .filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .tabs-wrapper {
        justify-content: center;
    }

    .dropdown-filter {
        width: 100%;
    }

    .event-section-btm-image {
        height: 220px;
    }

    .event-section-btm-title {
        font-size: 22px;
    }

    .event-section-btm-desc {
        min-height: auto;
    }

    .event-section-btm-btn {
        font-size: 18px;
    }


}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffcc33;
    border-top-color: #efefef;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #cc1616;
    width: 50px;
    height: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #e72323;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.info-card {
    background-color: rgba(30, 33, 41, 0.95);
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 12px 20px;
    transition: transform 0.2s ease, background-color 0.2s;
}

.info-title {
    color: white;
}

.info-text {
    color: white;
}



.main-event-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(10, 15, 30, 0.92);
    border: 2px solid var(--yellow-color);
    transition: 0.3s ease;
    height: 100%;
    box-shadow: 0 0 20px rgba(255, 0, 140, 0.15);
}

.main-event-card:hover {
    transform: translateY(-5px);
}

.main-event-image {
    position: relative;
    overflow: hidden;
}

.main-event-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.main-event-date {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--yellow-color);
    color: white;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}

.main-event-content {
    padding: 25px;
    text-align: center;
}

.main-event-title {
    font-family: 'Anton', sans-serif;
    color: #00e5ff;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-event-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.main-event-list li {
    color: #d8d8d8;
    margin-bottom: 14px;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.main-event-list li span {
    color: white;
    font-weight: 600;
}

.main-event-list li i {
    color: #ff008c;
    margin-top: 2px;
}

/* Disabled Card */
.event-card.disabled {
    border-color: rgba(255, 255, 255, 0.15);
    opacity: 0.7;
}

.main-event-card.disabled .event-title {
    color: #8ff6ff;
}

.main-event-card.disabled::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.main-event-card.disabled .event-content,
.main-event-card.disabled .event-image {
    position: relative;
    z-index: 2;
}

.main-soon-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    padding: 8px 22px;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 600;
}


.op-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 50px;
    background: #ffcc00;
    color: #000;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: bold;
    border-radius: 5px;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

a {
    text-decoration: none !important;
}




.server-landing-section {
    position: relative;
    min-height: 100vh;
    padding: 40px 0;
    overflow: hidden;
    background:
        linear-gradient(to right, rgba(2, 10, 25, 0.95) 35%, rgba(2, 10, 25, 0.55)),
        url('../../assets/images/server-landing-section-bg.png') center center/cover no-repeat;
}


/* Top Tabs */
.server-top-menu {
    background: rgba(8, 15, 35, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.server-menu-item {
    color: #cfd8ff;
    text-decoration: none;
    padding: 16px 22px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    font-weight: 500;
    font-size: 15px;
}

.server-info-item>div:last-child {
    display: flex;
    align-items: center;
}

.server-info-item>div:nth-last-child(-n+2) {
    display: flex;
    align-items: center;
}


.sever-menu-item:hover,
.server-menu-item.active {
    background: linear-gradient(135deg, #005eff, #1f9dff);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 140, 255, 0.5);
}

/* Title */
.server-section-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
    color: white;
}

.server-section-subtitle {
    font-size: 28px;
    color: #d0d8f0;
    margin-top: 12px;
    margin-bottom: 40px;
}

/* Info Card */
.server-info-card {
    background: rgba(5, 10, 28, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow:
        0 0 40px rgba(0, 0, 0, 0.5),
        inset 0 0 40px rgba(0, 110, 255, 0.08);
}

.server-info-item {
    display: flex;
    gap: 22px;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.server-info-item:last-child {
    border-bottom: none;
}

.server-icon-box {
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.12);
}

.server-gold {
    background: radial-gradient(circle, #ffcc48, #ff8900);
}

.server-blue {
    background: radial-gradient(circle, #39b7ff, #0048ff);
}

.server-green {
    background: radial-gradient(circle, #00ff99, #007a3d);
}

.server-purple {
    background: radial-gradient(circle, #c267ff, #5f00c7);
}

.server-info-label {
    font-size: 12px;
    color: #e4e8ff;
    margin-bottom: 5px;
    font-weight: 500;
}

.server-info-value {
    font-weight: 700;
    line-height: 1;
    font-family: 'Oswald', sans-serif;
}


.server-small-text {
    margin-top: 10px;
    color: #d7def5;
}

/* Character */
.server-character-area {
    position: relative;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
}

.server-character-area img {
    max-width: 850px;
    width: 100%;
    filter:
        drop-shadow(0 0 30px rgba(255, 150, 0, 0.5));
}

/* CTA */
.server-cta-btn {
    margin-top: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 70px;
    border-radius: 80px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(180deg, #1d5dff, #0038b8);
    border: 3px solid #ffcf63;
    box-shadow:
        0 0 25px rgba(0, 119, 255, 0.5),
        inset 0 0 25px rgba(255, 255, 255, 0.15);
    transition: .3s;
    font-family: 'Oswald', sans-serif;
}

.server-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 35px rgba(0, 119, 255, 0.7),
        0 0 40px rgba(255, 180, 0, 0.3);
}

.server-tab-content {
    display: none;
}

.server-tab-content.active {
    display: block;
}

.vip-badge {
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #000;
    font-weight: bold;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 20px;
    /* glowing effect */
    box-shadow: 0 0 10px rgba(255, 200, 0, 0.6);
    animation: glow 1.5s ease-in-out infinite;
}

/* glow animation */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 200, 0, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 200, 0, 1),
            0 0 30px rgba(255, 165, 0, 0.8);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 5px rgba(255, 200, 0, 0.4);
        transform: scale(1);
    }
}

