@keyframes loader {
    0% {
        transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
    50% {
        transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent;
    }
    100% {
        transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
}

@keyframes dropdown-slide {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

body, html {
    height: 100%;
    font-family: "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    background: #121212;
    color: #e2e2e2;
    cursor: url(Cursor.png), auto;
}

a, body:active {
    cursor: url(CursorA.png), pointer;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 500;
    color: #ccc; /* Lighter text for headings */
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

a {
    color: #ffb320;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
}

.alert {
	max-width: 800px;
	margin: 0 auto;
}

/* General Content Styling */
.ck-content, .guide-content p, p {
    font-size: 14px;
    color: #ccc; /* Light gray for readability */
    line-height: 2;
}

.ck-content {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    color: #ddd; /* Adjusted for better contrast */
    background: #1e1e1e; /* Dark background */
    padding: 15px;
    border-radius: 8px;
}

/* Guide Content */
.guide-content p {
    color: #aaa; /* Slightly darker for less emphasis */
}

.guide-content table {
    border: none;
    border-collapse: collapse; /* Ensures no double borders */
}

.guide-content table td,
.guide-content table th {
    border: none;
}


/* Unordered List */
.guide-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0 20px;
}

.guide-content ul li {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0;
    color: #ddd; /* Light gray text for list items */
}

.guide-content ul li::before {
    content: "•";
    font-weight: 700;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    color: #ff9800; /* Matching highlight color */
}

/* Guide Footer */
.guide-footer p {
    font-size: 14px;
    color: #aaa; /* Dark gray to blend in */
    line-height: 1;
    margin-bottom: 0;
}

/* Image Handling */
.ck-content .image {
    display: block;
    margin: 1em auto;
    text-align: center;
}

.ck-content .image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}

/* Image Alignments */
.ck-content .image-style-align-left,
.ck-content .image-style-align-block-left {
    float: left;
    margin-right: 1em;
    margin-bottom: 1em;
}

.ck-content .image-style-align-right,
.ck-content .image-style-align-block-right {
    float: right;
    margin-left: 1em;
    margin-bottom: 1em;
}

.ck-content .image-style-align-center {
    display: block;
    margin: 1em auto;
}

/* Figcaption (Fix for White Background) */
.ck-content figcaption {
    text-align: center;
    margin-top: 0.5em;
    font-style: italic;
    color: #bbb !important; /* Lighter gray for readability */
    font-size: 12px;
    background: #252525 !important; /* Dark background */
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3) !important;
}

/* Borderless Tables */
.ck-content table {
    width: 100%;
    border-collapse: collapse;
    background: #252525; /* Dark table background */
    border-radius: 8px;
    overflow: hidden;
}

.ck-content table td, .ck-content table th {
    padding: 10px;
    color: #ddd; /* Light text */
    text-align: left;
}

.ck-content table th {
    background: #333; /* Darker header background */
    color: #252525; /* Highlighted header text */
    font-weight: bold;
    text-transform: uppercase;
}

.ck-content hr {
    border: none !important;
    height: 1px !important;
    background: linear-gradient(90deg, rgba(180, 180, 180, 0.7) 20%, rgba(220, 220, 220, 0.9) 50%, rgba(180, 180, 180, 0.7) 80%) !important;
    margin: 30px 0 !important;
    border-radius: 3px !important;
    opacity: 1 !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Enhanced soft glowing effect */
.ck-content hr::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    width: 100% !important;
    height: 6px !important;
    background: radial-gradient(circle, rgba(220, 220, 220, 0.4) 0%, transparent 50%) !important;
    opacity: 0.6 !important;
    filter: blur(3px) !important;
}

/* Subtle animated shimmer effect */
.ck-content hr::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
    animation: shimmer-gray 2.5s infinite linear !important;
}

@keyframes shimmer-gray {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}




button:focus, input:focus, select:focus, textarea:focus {
    outline: 0;
}

a:focus, a:hover {
    text-decoration: none;
    outline: 0;
}

ol, ul {
    padding: 0;
    margin: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2em;
    color: #e2e2e2;
}

.section-title h2 {
    padding-top: 10px;
    font-size: 36px;
    color: #ffffff;
}

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.spad {
    padding-top: 97px;
    padding-bottom: 97px;
}

.text-white a, .text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6, .text-white li, .text-white p, .text-white span {
    color: #fff; /* Ensuring high contrast for readability */
}

.rating i {
    color: #fbb710; /* Consistent color for ratings */
}

.rating .is-fade {
    color: #e0e3e4; /* Less emphasized part of rating */
}

.site-btn {
    text-align: center;
    font-size: 15px;
    padding: 16px 30px;
    min-width: 153px;
    border-radius: 50px;
    border: 0;
    background: #ffb320; /* Button background */
    cursor: pointer;
}

.site-btn.btn-sm {
    padding: 10px 30px;
    min-width: 163px;
}

.site-btn, .site-btn:hover {
    color: #131313; /* Text color inside button */
}

.footer-menu li a, .label, .site-btn {
    display: inline-block;
    font-weight: 500;
}

.label {
    text-transform: uppercase;
    font-size: 12px;
    color: #fff; /* White text for labels for contrast */
    padding: 6px 25px;
}

.label.pink-red, .news-ticker-contant .nt-item span.new {
    background: #ff205f; /* Specific background color for certain labels */
}

.label.red-bright {
    background: red;
}

.label.red-dark {
    background: #8b0000;
}

.label.pink {
    background: #ff69b4;
}

.label.purple {
    background: #694eae;
}

.label.orange {
    background: #ff8c42;
}

.label.yellow {
    background: gold;
}

.label.green, .news-ticker-contant .nt-item span.strategy {
    background: #4eae60;
}

.label.teal {
    background: teal;
}

.label.blue {
    background: #40abf5;
}

.label.darkblue {
    background: #00008b;
}

.label.brown {
    background: #8b4513;
}

.label.gray {
    background: gray;
}

.label.black {
    background: #000;
}

#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #fff; /* Light background for loader */
}

.loader {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    animation: loader .8s linear infinite;
}

.header {
    box-shadow: 0 1px 1px 0 rgb(0 0 0/14%), 0 2px 1px -1px rgb(0 0 0/12%), 0 1px 3px 0 rgb(0 0 0/20%);
    width: 100%;
    overflow: visible;
}

.header .logo {
    position: absolute;
    left: 20px;
    max-width: 70%;
}

.navigation {
    gap: 20px;
    height: 60px;
}

.hero-slider .hs-text h2 span {
    color: #ffb320; /* Highlight color for parts of heading */
}

.usercp {
    position: absolute;
    right: 20px;
    display: inline-block;
    cursor: pointer;
    z-index: 5100;
}

.nav-toggle, .usercp .usercp-toggle {
    background: 0 0;
    border: 0;
    cursor: pointer;
    z-index: 5100;
}

.usercp .usercp-toggle {
    color: #ffb320;
    font-size: 1.5rem;
}

.usercp .usercp-dropdown {
    display: none;
    position:absolute;
    top: 40px;
    right: 0;
    background: #1e1e1e;
    border: 1px solid #ffb320;
    border-radius: 1px;
    box-shadow: 0 4px 8px rgba(0,0,0,.2);
    z-index: 5200;
    min-width: 220px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.usercp .usercp-dropdown.active {
    display: block;
    animation: dropdown-slide .3s ease-out;
}

.usercp .usercp-dropdown .cp-item a {
    color: #fff;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    transition: background .3s ease, color .3s ease;
}

.usercp .usercp-dropdown .cp-item a:hover {
    background: #ffb320;
    color: #131313;
}

.nav-toggle {
    display: none;
    color: #fff;
    font-size: 1.8em;
}

@media (max-width:768px) {
    .usercp {
        margin-top: 10px;
    }

    .nav-toggle {
        margin-top: 8px;
    }

    .header {
        justify-content: space-between;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        left: 20px;
        color: #ffb320;
        border: 0;
        background: 0 0;
        font-size: 2rem;
        cursor: pointer;
        transition: color .3s ease;
        z-index: 5100;
    }

    .nav-toggle:hover {
        color: #fff;
    }

    .header .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }

    .navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #1e1e1e;
        display: flex;
        align-items: stretch;
        padding: 0;
        transition: all .5s ease-in-out;
        z-index: 99;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
    }

    .navigation.active {
        opacity: .98;
        visibility: visible;
    }

    .navigation, .navigation .list {
        flex-direction: column;
    }

    .navigation .nav-item {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        transition: transform .3s ease, background .3s ease;
    }

    .navigation .nav-item:hover {
        transform: translateY(-3px);
        background: rgba(255, 179, 32, .1);
    }

    .navigation .nav-item a {
        color: #fff;
        padding: 5px 10px;
        display: block;
        width: 100%;
        text-decoration: none;
        font-size: 1.3rem;
        background: #1e1e1e;
        transition: background .4s ease, color .3s ease, transform .3s ease;
    }

    .navigation .nav-item a:hover {
        background: #ffb320;
        color: #131313;
    }
}

@media (max-width:480px) {
    .header {
        padding: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .site-btn {
        width: 100%;
        justify-content: center;
    }
}

.a-button {
    position: absolute;
    top: 90px;
    right: 10px;
    background: #fff !important;
    border: 2px solid #000 !important;
    color: #000 !important;
    font-weight: 700 !important;
}

.hero-slider .hs-item {
    height: 865px;
    display: table;
    text-align: center;
    width: 100%;
    height: calc(100vh - 80px);
}

.hero-slider .hs-text {
    display: table-cell;
    vertical-align: middle;
}

.hero-slider .hs-text h2, .hero-slider .hs-text p {
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    opacity: 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, .6), 0 0 10px rgba(0, 0, 0, .7), 0 0 15px rgba(0, 0, 0, .8), 0 0 20px rgba(0, 0, 0, .9);
}

.hero-slider .hs-text h2 {
    font-weight: 400;
    font-size: 60px;
    top: -80px;
}

.hero-slider .hs-text p {
    top: -90px;
}

.hero-slider .hs-text .site-btn {
    position: relative;
    top: -100px;
    opacity: 0;
}

.hero-slider .owl-item.active .hs-item .site-btn, .hero-slider .owl-item.active .hs-item h2, .hero-slider .owl-item.active .hs-item p {
    top: 0;
    opacity: 1;
}

.hero-slider .owl-item.active .hs-item h2 {
    transition: all .5s ease 1s;
}

.hero-slider .owl-item.active .hs-item p {
    transition: all .5s ease .8s;
}

.hero-slider .owl-item.active .hs-item .site-btn {
    transition: all .5s ease .6s;
}

.hero-slider .owl-dots {
    position: relative;
    max-width: 1146px;
    margin: -33px auto 0;
    top: -67px;
    z-index: 5;
}

.hero-slider .owl-dots .owl-dot, .site-pagination a, .site-pagination span {
    width: 33px;
    height: 33px;
    font-size: 14px;
    font-weight: 500;
    padding-top: 7px;
    text-align: center;
    display: inline-block;
}

.hero-slider .owl-dots .owl-dot {
    margin-right: 13px;
    border-radius: 40px;
    background: #dbe2ec;
}

.hero-slider .owl-dots .owl-dot.active {
    background: #ffb320;
}

.feature-item:after, .ln-title {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
}

.ln-title {
    width: 20%;
    text-align: right;
    padding-top: 24px;
    padding-right: 66px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background: #ffb320;
    z-index: 1;
}

.news-ticker {
    width: 80%;
    float: right;
    overflow: hidden;
    display: inline-block;
}

.news-ticker-contant .nt-item, .news-ticker-contant .nt-item span {
    margin-right: 35px;
    color: #fff;
    display: inline-block;
}

.news-ticker-contant .nt-item span {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 20px;
}

.news-ticker-contant .nt-item span.racing {
    background: #694eae;
}



.footer-top-section {
    background-repeat: repeat;
    padding: 72px 0;
}

.footer-top-section .container {
    position: relative;
}

.footer-top-bg {
    position: absolute;
    left: -30px;
    bottom: -85px;
    z-index: 2;
}

.footer-logo img {
    margin-bottom: 35px;
}

.footer-widget {
    padding: 40px 30px 7px;
    background: #252525;
    border: 1px solid #4a4a4a;
}

.footer-widget .fw-title {
    color: #fff;
    margin-bottom: 40px;
}

.latest-blog .lb-item, .top-comment .tc-item {
    margin-bottom: 23px;
    overflow: hidden;
}

.latest-blog .lb-item .lb-thumb {
    width: 97px;
    height: 97px;
    float: left;
}

.latest-blog .lb-item .lb-content {
    padding-left: 110px;
}

.latest-blog .lb-item .lb-content .lb-date {
    font-size: 12px;
    color: #ffb320;
    margin-bottom: 8px;
}

.latest-blog .lb-item .lb-content .lb-author {
    font-size: 12px;
    color: #d3d3d3;
    opacity: .45;
}

.top-comment {
    overflow: hidden;
}

.top-comment .tc-item .tc-thumb {
    width: 63px;
    height: 63px;
    border-radius: 50%;
    float: left;
}

.top-comment .tc-item .tc-content {
    padding-left: 100px;
}

.latest-blog .lb-item .lb-content p, .top-comment .tc-item .tc-content p {
    font-size: 12px;
    color: #d3d3d3;
    margin-bottom: 5px;
}

.top-comment .tc-item .tc-content p a {
    color: #ff205f;
}

.top-comment .tc-item .tc-content p span {
    color: #7a7a7a;
}

.top-comment .tc-item .tc-content .tc-date {
    font-size: 12px;
    color: #ffb320;
}

.footer-section {
    padding: 18px 0 16px;
    overflow: hidden;
    background: #252525;
}

.footer-menu {
    list-style: none;
    float: right;
}

.footer-menu li {
    display: inline;
}

.footer-menu li a {
    font-size: 14px;
    color: #aeaeae;
    margin-left: 30px;
}

.copyright {
    float: left;
    margin-bottom: 0;
    font-weight: 500;
    color: #aeaeae;
}

.page-info-section {
    height: 399px;
    position: relative;
}

.page-info-section .pi-content {
    position: absolute;
    width: 100%;
    bottom: 65px;
    left: 0;
    z-index: 2;
}

.page-info-section .pi-content h2 {
    font-size: 60px;
    margin-bottom: 25px;
    font-weight: 400;
}

.site-pagination {
    padding-top: 50px;
}

.site-pagination a, .site-pagination span {
    border-radius: 50%;
    color: #131313;
    margin-right: 10px;
}

.site-pagination .active, .site-pagination.sp-style-2 .active {
    background: #ffb320;
}

.site-pagination.sp-style-2 a, .site-pagination.sp-style-2 span {
    background: #e5e5e5;
}

.widget-item {
    margin-bottom: 73px;
}

.widget-item:last-child {
    margin-bottom: 0;
}

.comment-list li, .widget-item .widget-title {
    margin-bottom: 40px;
}

.widget-item .latest-blog .lb-item .lb-content p, .widget-item .top-comment .tc-item .tc-content p {
    color: #131313;
}

.widget-item .latest-blog .lb-item .lb-content .lb-author {
    color: #737373;
}

.widget-item .top-comment .tc-item .tc-content {
    padding-right: 20px;
}

.widget-item .review-item {
    background: #eff2f5;
}

.widget-item .review-item .review-text {
    padding: 0 35px 20px;
}

.search-widget {
    position: relative;
}

.comment-form textarea, .search-widget input {
    width: 100%;
    border: 1px solid #d6dee7;
    font-size: 12px;
}

.search-widget input {
    height: 41px;
    padding-left: 22px;
    padding-right: 45px;
}

.search-widget button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: 0 0;
    border: 0;
    padding-right: 15px;
    color: #878787;
    cursor: pointer;
}

.recent-game-page .recent-game-item {
    margin-bottom: 42px;
}

.single-blog-page .blog-thumb {
    height: 424px;
    padding-top: 24px;
    padding-left: 29px;
    margin-bottom: 40px;
    position: relative;
}

.single-blog-page .blog-thumb .rgi-extra {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70px;
}

.single-blog-page .blog-thumb .rgi-extra .rgi-heart, .single-blog-page .blog-thumb .rgi-extra .rgi-star {
    height: 35px;
    width: 35px;
    float: left;
    display: block;
    padding: 6px 8px 0;
}

.single-blog-page .blog-thumb .rgi-extra .rgi-star {
    background: #ffb320;
}

.single-blog-page .blog-thumb .rgi-extra .rgi-heart {
    background: #ff205f;
}

.review-page .review-item .review-text h4, .single-blog-page .blog-content h3 {
    margin-bottom: 10px;
}

.single-blog-page .blog-content .meta-comment {
    display: block;
    font-size: 12px;
    color: #737373;
    margin-bottom: 25px;
}

.single-blog-page .blog-content p {
    margin-bottom: 25px;
}

.comment-warp {
    padding-top: 50px;
}

.comment-title {
    margin-bottom: 45px;
}

.comment-list {
    list-style: none;
}

.comment-list li {
    overflow: hidden;
}

.comment-list .comment .comment-avator {
    width: 63px;
    height: 63px;
    border-radius: 50%;
    float: left;
}

.comment-list .comment .comment-content {
    padding-left: 100px;
}

.comment-list .comment .comment-content h5 {
    font-size: 12px;
    color: #131313;
    font-weight: 400;
    margin-bottom: 10px;
}

.comment-list .comment .comment-content h5 span {
    color: #ffb320;
    padding-left: 18px;
}

.comment-list .comment .comment-content p {
    font-size: 12px;
    margin-bottom: 5px;
}

.comment-list .comment .comment-content .reply {
    font-size: 12px;
    color: #ff1d55;
}

.comment-form-warp {
    padding-top: 30px;
}

.comment-form input[type=email], .comment-form input[type=text] {
    width: 100%;
    height: 41px;
    border: 1px solid #d6dee7;
    padding-left: 22px;
    padding-right: 45px;
    font-size: 12px;
    margin-bottom: 24px;
}

.comment-form textarea {
    height: 243px;
    padding: 15px 45px 15px 22px;
    margin-bottom: 38px;
}

.review-page .review-item {
    margin-bottom: 63px;
}

.review-dark .review-item .review-text p {
    color: #b5b5b5;
}

.review-section.review-dark {
    background-position: center top;
}

.community-page .site-pagination {
    padding-top: 62px;
}

.community-warp {
    max-width: 1367px;
    margin: 0 auto;
    background: rgba(0, 0, 0, .28);
}

.community-post-list {
    list-style: none;
}

.community-post-list li {
    padding: 33px 55px 65px;
    margin-bottom: 21px;
    overflow: hidden;
    border: 1px solid #878787;
    background: #1f2225;
}

.community-post-list .community-post .author-avator {
    width: 63px;
    height: 63px;
    border-radius: 50%;
    float: left;
}

.community-post-list .community-post .post-content {
    padding-left: 100px;
}

.community-post-list .community-post .post-content h5 {
    font-size: 16px;
    color: #ff205f;
    font-weight: 400;
    margin-bottom: 10px;
}

.community-post-list .community-post .post-content h5 span {
    color: #7a7a7a;
    padding-left: 18px;
}

.community-post-list .community-post .post-content p {
    color: #fff;
    margin-bottom: 5px;
}

.community-post-list .community-post .post-content .post-date {
    font-size: 12px;
    color: #ffb320;
    margin-bottom: 18px;
}

.community-post-list .attachment-file {
    padding-top: 60px;
    max-width: 435px;
}

.community-top-title {
    margin-bottom: 50px;
}

.community-filter {
    margin-bottom: 80px;
}

.community-filter label {
    font-size: 18px;
    color: #1f2225;
    font-weight: 500;
    padding-right: 10px;
}

.community-filter select {
    width: 201px;
    height: 42px;
    font-size: 14px;
    padding: 0 18px;
    color: #1f2225;
    font-weight: 500;
}

.map {
    height: 515px;
    background: #ddd;
    margin-bottom: 90px;
}

.contact-info-list {
    padding-top: 55px;
    padding-bottom: 20px;
    list-style: none;
}

contact-info-list li {
    margin-bottom: 30px;
}

.contact-info-list .cf-left {
    width: 95px;
    float: left;
    font-size: 16px;
    font-weight: 700;
    color: #ffb320;
}

.contact-info-list .cf-right {
    color: #878787;
    font-size: 15px;
    padding-left: 100px;
}

.social-links a {
    color: #474747;
    font-size: 16px;
    margin-left: 10px;
    margin-right: 20px;
}

@media (min-width:1200px) {
    .container {
        max-width: 1176px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .hero-slider .owl-dots {
        max-width: 930px;
    }

    .review-section {
        background-position: right 10% top;
    }

    .review-item .review-cover {
        height: 280px;
    }

    .latest-blog .lb-item .lb-thumb {
        width: 55px;
        height: 55px;
    }

    .latest-blog .lb-item .lb-content {
        padding-left: 67px;
    }

    .top-comment .tc-item .tc-content {
        padding-left: 95px;
    }

    .footer-top-bg {
        max-width: 370px;
    }

    .page-info-section .pi-content h2 {
        font-size: 50px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hero-slider .hs-text h2 {
        font-size: 50px;
    }

    .hero-slider .owl-dots {
        max-width: 690px;
    }

    .recent-game-item {
        margin-bottom: 42px;
    }

    .tournament-item .ti-thumb {
        width: 100%;
        height: 230px;
        float: none;
    }

    .tournament-item .ti-text {
        padding-left: 0;
        padding-top: 20px;
    }

    .review-section {
        background-position: left top;
    }

    .review-item {
        margin-bottom: 63px;
    }

    .footer-logo {
        margin-bottom: 50px;
    }

    .latest-blog .lb-item .lb-thumb {
        width: 80px;
        height: 80px;
    }

    .latest-blog .lb-item .lb-content {
        padding-left: 95px;
    }

    .footer-top-bg {
        display: none;
    }
}

@media only screen and (max-width:767px) {
    .hero-slider .hs-item {
        height: 700px;
    }

    .hero-slider .hs-text h2 {
        font-size: 36px;
    }

    .hero-slider .owl-dots {
        max-width: 510px;
    }

    .ln-title {
        padding-right: 30px;
    }

    .feature-item {
        margin-bottom: 30px;
    }

    .recent-game-item {
        margin-bottom: 42px;
    }

    .review-section {
    background-position: left top;
}

.review-item {
    margin-bottom: 63px;
}

.footer-logo {
    margin-bottom: 50px;
}

.footer-top-bg {
    display: none;
}

.footer-section {
    padding: 30px 0 20px;
    text-align: center;
}

.footer-menu li:first-child a {
    margin-left: 0;
}

.copyright, .footer-menu {
    float: none;
}

.copyright {
    padding-top: 15px;
}

.community-post-list li {
    padding: 30px 25px;
}

.page-info-section .pi-content h2 {
    font-size: 50px;
}
}

@media only screen and (max-width:576px) {
    .hero-slider .owl-dots {
        padding: 0 15px;
    }

    .feature-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .community-post-list .community-post .author-avator {
        float: none;
    }

    .community-post-list .community-post .post-content {
        padding-left: 0;
        padding-top: 30px;
    }
}

@media only screen and (max-width:479px) {
    .hero-slider .hs-item {
        height: auto;
        padding: 150px 0;
    }

    .ln-title {
        display: none;
    }

    .news-ticker {
        width: 100%;
    }

    .tournament-item .ti-thumb {
        width: 100%;
        height: 230px;
        float: none;
    }

    .tournament-item .ti-text {
        padding-left: 0;
        padding-top: 20px;
    }

    .latest-blog .lb-item .lb-thumb {
        width: 55px;
        height: 55px;
    }

    .latest-blog .lb-item .lb-content {
        padding-left: 67px;
    }

    .top-comment .tc-item .tc-content {
        padding-left: 85px;
    }

    .site-btn {
        padding: 11px 30px;
        min-width: 145px;
    }

    .comment-list .comment .comment-avator {
        float: none;
    }

    .comment-list .comment .comment-content {
        padding-left: 0;
        padding-top: 20px;
    }

    .footer-widget {
        padding: 40px 15px 7px;
    }

    .page-info-section .pi-content h2 {
        font-size: 40px;
    }
}

/* Rules Section */
.rules-section {
    margin-top: 20px;
}

/* Rule Card */
.rule-card {
    background-color: #252525; /* Dark background */
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); /* Darker shadow for depth */
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #333; /* Subtle border */
}

/* Hover Effect */
.download-card:hover, .rule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(255, 152, 0, 0.3); /* Warm orange glow */
}

/* Rule Titles */
.news-content h5, .rule-title {
    margin-bottom: 15px;
    font-weight: 600;
}

.rule-title {
    font-size: 18px;
    color: #ffb320; /* Golden title color */
    border-left: 4px solid #ff9800; /* Orange highlight */
    padding-left: 12px;
    text-transform: uppercase;
}

/* Rule Details */
.rule-details {
    padding-left: 20px;
    color: #ddd; /* Light gray text */
    font-size: 14px;
}

.rule-details li {
    margin-bottom: 8px;
}

/* Penalty Section */
.penalty {
    margin-top: 15px;
    font-size: 14px;
    color: #ffcc00; /* Gold color for warnings */
    font-weight: bold;
}

/* Penalty Text Box */
.penalty-text {
    display: block;
    background-color: #1e1e1e; /* Darker contrast box */
    padding: 10px;
    border-radius: 8px;
    font-family: monospace;
    color: #ff9800; /* Orange text for emphasis */
    margin-top: 5px;
    overflow-x: auto;
    border: 1px solid #333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Stylish Separator for Rules */
.rule-separator {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #ff9800, transparent);
    margin: 15px 0;
    border-radius: 3px;
}

/* List Style */
.rule-details ul {
    list-style: none;
    padding-left: 0;
}

.rule-details ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}

.rule-details ul li::before {
    content: "⚡"; /* Custom icon */
    position: absolute;
    left: 0;
    top: 0;
    color: #ff9800; /* Matches theme */
    font-size: 16px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rule-card {
        padding: 15px;
    }

    .rule-title {
        font-size: 16px;
    }

    .rule-details {
        font-size: 13px;
    }

    .penalty {
        font-size: 13px;
    }

    .penalty-text {
        font-size: 12px;
    }
}


.download-category {
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.category-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #f1f1f1;
}

.category-header p {
    color: #bbb;
    font-size: 16px;
}

.download-card {
    background: #252525;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all .3s ease;
}

.download-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.download-card-body {
    padding: 20px;
    text-align: left;
}

.download-title {
    font-size: 18px;
    font-weight: 600;
    color: #f1f1f1;
    margin-bottom: 10px;
}

.download-description {
    font-size: 14px;
    color: #aaa;
}

.download-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid #333;
    background-color: #282828;
}

.download-size {
    font-size: 14px;
    font-weight: 500;
    color: #ddd;
}



/* 🔷 News Section - Default Styling */
.news-feature-section {
    padding-top: 1em;
    padding-bottom: 1em;
}

/* 🔷 Individual News Item */
.news-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #575757;
    border-radius: 15px;
    background: #282828;
    transition: all .3s ease;
    overflow: hidden;
}

/* 🔷 News Image Thumbnail */
.news-thumb {
    min-height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #575757;
}

/* 🔷 News Label (Date) */
.news-label {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    padding: 6px 25px;
    background: #4eae60;
    position: relative;
    top: 15px;
    left: 15px;
}

/* 🔷 News Content */
.news-content {
    flex-grow: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 🔷 News Title */
.news-content h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* 🔷 News Description */
.news-content p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    flex-grow: 1;
    font-size: 14px;
    margin-bottom: 10px;
}

/* 🔷 Read More Button */
.news-btn {
    align-self: center;
    text-align: center;
    font-size: 15px;
    color: #131313;
    padding: 10px 25px;
    background: #ffb320;
    border-radius: 50px;
    font-weight: 500;
    border: 0;
    transition: background .3s ease, color .3s ease;
}

.news-btn:hover {
    background: #ffd85e;
    color: #131313;
}

/* 🔷 News Section Wrapper */
.latest-news-section {
    overflow: hidden;
    display: block;
    clear: both;
    background: #131313;
    padding: 24px 0 14px;
    position: relative;
}

/* ✅ Desktop Layout (Default) */
@media (min-width: 769px) {
    .news-item {
        margin-bottom: 30px;
    }
}

/* Mobile Layout - Scrollable Centered Carousel */
@media (max-width: 768px) {
    /* Wrapper to enable smooth horizontal scrolling */
    .news-scroll-wrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        margin-bottom: 10px;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
        -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
    }

    /* Hide scrollbar for WebKit browsers */
    .news-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }

    /* Container for news items */
    .news-scroll-container {
        display: flex;
        flex-wrap: nowrap;
        gap: 15px; /* Small gap between items */
        padding-left: 15px; /* Initial padding to center the first item */
    }

    /* Wrapper for each news item */
    .news-item-wrapper {
        flex: 0 0 70%; /* Each item takes up 70% width */
        scroll-snap-align: center;
    }

    /* Ensure the first item is centered */
    .news-item-wrapper:first-child {
        margin-left: calc(15% - 7.5px); /* Center the first item */
    }

    /* News item styling */
    .news-item {
        width: 100%; /* Ensure the item fills its wrapper */
    }
}

/* Very Small Screens (Mobile Portrait) */
@media (max-width: 480px) {
    .news-content {
        padding: 10px; /* Reduces padding inside news content */
    }

    .news-content h5 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .news-content p {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .news-btn {
        font-size: 13px;
        padding: 8px 20px;
    }
}

.dark-spad {
    padding: 20px 0;
    background: #121212;
}

.dark-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.dark-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dark-main-content {
    flex: 2;
    background: #1e1e1e;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    color: #e2e2e2;
}

.dark-news-panel {
    background: #252525;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .4);
    transition: all .3s ease-in-out;
}

.dark-news-heading {
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.dark-news-title a {
    color: #ffb320;
    font-size: 28px;
    text-decoration: none;
}

.dark-news-body {
    padding: 10px 0;
    color: #ccc;
    line-height: 1.6;
    font-size: 16px;
}

.dark-news-footer {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #333;
    text-align: right;
    color: #777;
}

.dark-news-date-footer {
    font-size: 14px;
    color: #888;
}

.dark-sidebar {
    flex: 1;
    background: #1e1e1e;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    max-width: 280px;
    color: #e2e2e2;
}



.dark-widget-title {
    font-size: 24px;
    color: #ffb320;
    text-align: center;
    margin-bottom: 20px;
}

.dark-card {
    background: #2a2a2a;
    padding: 15px;
    margin-bottom: 5px;
    border-radius: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    transition: transform .3s ease, box-shadow .3s ease;
}

.dark-news-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background: #2a2a2a;
    border-radius: 6px;
    color: #ffb320;
    transition: background .3s;
    text-decoration: none;
}

.dark-news-link:hover {
    background: #333;
}

.latest-post-title {
    font-size: 14px;
    font-weight: bold;
    color: #ffb320;
    margin-right: auto;
}

.latest-post-date {
    font-size: 12px;
    color: #777;
    margin-left: 5px;
}

.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.pagination-item {
    margin: 0 5px;
    transition: transform 0.2s ease;
}

.pagination-item a {
    display: block;
    color: #fff;
    background-color: #333;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}

.pagination-item a:hover {
    background-color: #555;
    color: #fff;
    transform: translateY(-3px);
}

.pagination-item.active a {
    background-color: #00c1a5;
    pointer-events: none;
    color: #fff;
}

.pagination-item a[disabled] {
    pointer-events: none;
    color: #777;
    background-color: #222;
}

.pagination-item a[disabled]:hover {
    background-color: #222;
    cursor: not-allowed;
}

/* Styling for Previous and Next Buttons */
.pagination-item a.prev,
.pagination-item a.next {
    background-color: #444;
    color: #ccc;
}

.pagination-item a.prev:hover,
.pagination-item a.next:hover {
    background-color: #666;
    color: #fff;
}



/* Guide Page Container */
.guide-page-container {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
    padding: 20px;
    background: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Guide Row */
.guide-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
}

/* Guide Menu */
.guides-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #333;
    border-radius: 8px;
    background: linear-gradient(to bottom, #252525, #1e1e1e);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

.guides-menu .guide-category {
    border-bottom: 1px solid #333;
}

.guides-menu .guide-category:last-child {
    border-bottom: none;
}

.guides-menu .guide-category-header {
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #ddd;
    cursor: pointer;
    background-color: #282828;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
    margin: 5px;
}

.guides-menu .guide-category-header.active,
.guides-menu .guide-category-header:hover {
    background-color: #ff9800;
    color: #fff;
}

/* Guide Submenu */
.guides-menu .guide-submenu {
    list-style: none;
    padding: 10px 20px;
    margin: 0;
    display: none;
    background: #252525;
    border-left: 3px solid #ff9800;
}

.guides-menu .guide-submenu li a {
    color: #ff9800;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.guides-menu .guide-submenu li a:hover {
    color: #4db8ff;
    text-shadow: 0 0 5px rgba(77, 184, 255, 0.5);
}

/* Sidebar */
.guide-sidebar {
    width: 30%;
    padding: 20px;
    background: #222;
    border-radius: 8px;
    border: 1px solid #444;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.guide-sidebar h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #ff9800;
}

.guide-sidebar h4:after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #ff9800;
    margin-top: 5px;
}

/* Guide Main Content */
.guide-main-content {
    width: 65%;
    line-height: 1.8;
    font-size: 16px;
    color: #ddd;
    padding: 20px;
    background: #252525;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

/* Guide Meta */
.guide-meta {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.guide-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-label {
    font-weight: 700;
    color: #aaa;
}

.meta-value {
    color: #bbb;
}

/* Guide Title */
.guide-title {
    font-size: 32px;
    color: #ffcc00;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .guide-page-container {
        flex-direction: column;
        width: 95%;
        padding: 15px;
    }

    .guide-row {
        flex-direction: column;
        gap: 10px;
    }

    .guide-main-content,
    .guide-sidebar {
        width: 100%;
    }

    .guide-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .guide-meta-item {
        flex: none;
        width: 100%;
    }
}


.navigation .nav-item a {
    color: #fff;
    text-decoration: none;
}

.navigation .nav-item a:hover {
    color: #ffb320;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .logo {
    max-height: 40px;
    margin-left: 20px;
}

.navigation .list {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.header, .navigation {
    align-items: center;
}

.header {
    display: flex;
    justify-content: space-between;
    height: 60px;
    padding: 0 20px;
    background-color: #131313;
    border-bottom: 1px solid #ffb320;
}

.navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* 🔷 Main Header Section */
.main-header-section {
    width: 100%;
    position: relative;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.main-header-item {
    width: 100%;
    height: 85vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-header-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 0;
}

.main-header-text {
    font-family: "Roboto", sans-serif;
    position: relative;
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1.5s ease forwards;
}

.main-header-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

/* 🔷 Server Status Bar */
.server-status-bar {
    background: linear-gradient(90deg, #131313, #1e1e1e);
    color: #ffffff;
    padding: 12px 0;
    border-top: 2px solid #ffb320;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.6);
    width: 100%;
}

/* ✅ Flexible Layout */
.server-status-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 15px;
    flex-wrap: wrap;
    gap: 10px;
}

/* 🔷 Server Status Indicator */
.server-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
}

.status-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.status-indicator.online {
    background: #4caf50;
    box-shadow: 0px 0px 10px rgba(76, 175, 80, 0.8);
}

.status-indicator.offline {
    background: #f44336;
    box-shadow: 0px 0px 10px rgba(244, 67, 54, 0.8);
}

.server-status-text {
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
}

/* 🔷 Online Players Progress Bar */
.server-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.progress-container {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    height: 10px;
    width: 150px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4caf50, #4caf50);
    transition: width 0.5s ease-in-out;
    border-radius: 10px;
}

.progress-text {
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
    white-space: nowrap;
}

.progress-text i {
    margin-right: 5px;
}

/* 🔷 Server Info Cards */
.server-info {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.server-info-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    min-width: 120px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.server-info-item i {
    color: #ffb320;
    font-size: 16px;
}

/* 🔷 Responsiveness */
/* ✅ Large Mid-Sized Screens */
@media (max-width: 1700px) {
    .server-status-container {
        flex-wrap: nowrap;  /* Force items to stay on one line */
        justify-content: space-between;
        gap: 5px;  /* Minimized gap */
        padding: 5px 10px;
    }

    .server-status,
    .server-progress {
        flex: 0 0 auto;
        font-size: 14px;  /* Adjusted for better fit */
    }

    .server-info {
        flex-wrap: nowrap;
        gap: 5px;
    }

    .server-info-item {
        min-width: 90px;
        font-size: 13px;
        padding: 4px 8px;  /* Tighter padding */
    }

    .progress-container {
        width: 120px;  /* Reduced progress bar width */
    }

    .progress-text {
        font-size: 14px;
    }
}

/* ✅ Medium Screens (Below 1200px) */
@media (max-width: 1350px) {
    .server-status-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .server-info-item {
        min-width: 85px;
        font-size: 12px;
        padding: 4px 6px;
    }

    .progress-container {
        width: 100px;
    }
}

/* ✅ Medium Screens (Tablets & Smaller Laptops) */
@media (max-width: 1100px) {
    .main-header-item {
        background-position: center top;
    }
    .server-status-container {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }

    .server-status {
        width: 100%;
        justify-content: center;
    }

    .server-progress {
        width: 100%;
        justify-content: center;
    }

    .server-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .server-info-item {
        min-width: 100px;
        font-size: 12px;
    }
}

/* ✅ Small Screens (Mobile) */
@media (max-width: 768px) {
    .main-header-item {
        background-position: center top;
    }
    .server-status-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .server-status,
    .server-progress {
        justify-content: center;
        width: 100%;
        margin-bottom: 10px;
    }

    .server-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .server-info-item {
        min-width: 90px;
        font-size: 12px;
    }
}

/* ✅ Very Small Screens (Mobile Portrait) */
@media (max-width: 480px) {
    .main-header-item {
        background-position: center top;
    }
    .server-info {
        display: flex;
        flex-wrap: wrap; /* Allows items to wrap to the next line */
        gap: 5px;
    }
    .server-info-item {
        flex: 0 0 48%; /* Each item takes up approximately half the container's width */
        justify-content: center;
    }
}



.guild-profile {
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    padding: 30px;
    max-width: 900px;
    margin: 20px auto;
    color: #fff;
}

.guild-header, .guild-logo {
    display: flex;
    align-items: center;
}

.guild-header {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid #ffb320;
    padding-bottom: 20px;
}

.guild-logo {
    flex: 0 0 150px;
    height: 150px;
    border-radius: 15px;
    background: #333;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #ffb320;
}

.guild-logo img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.guild-info {
    flex: 1;
}

.guild-name {
    font-size: 28px;
    font-weight: 700;
    color: #ffb320;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .7);
    margin-bottom: 10px;
}

.guild-stats {
    width: 100%;
    border-spacing: 0 10px;
}

.guild-stats td {
    font-size: 16px;
    padding: 5px 10px;
}

.guild-stats td:first-child {
    text-align: right;
    color: #aaa;
    font-weight: 700;
}

.guild-stats td:last-child {
    text-align: left;
    color: #fff;
}

.guild-members {
    margin-top: 20px;
}

.guild-members h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffb320;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .7);
    margin-bottom: 20px;
    text-align: center;
}

.guild-members-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.guild-member {
    background: linear-gradient(135deg, #2a2a2a, #1e1e1e);
    border: 1px solid #444;
    border-radius: 8px;
    padding: 10px;
    width: 120px;
    text-align: center;
    color: #ddd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    transition: transform .3s ease, box-shadow .3s ease;
}

.guild-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .4);
    background: linear-gradient(135deg, #3a3a3a, #292929);
}

@media (max-width:768px) {
    .guild-header {
        flex-direction: column;
        text-align: center;
    }

    .guild-logo {
        margin-bottom: 15px;
    }

    .guild-stats td {
        font-size: 14px;
    }
}

.player-profile-card {
    background: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
    max-width: 400px;
    margin: 20px auto;
    padding: 25px;
    text-align: center;
    color: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
}

.player-profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .5);
}

.player-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #ffb320;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .5);
    object-fit: cover;
    display: block;
}

.player-name {
    font-size: 28px;
    font-weight: 700;
    color: #ffb320;
    margin-bottom: 5px;
}

.player-class {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 20px;
}

.profile-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.profile-info-table .info-label, .profile-info-table .info-value {
    text-align: left;
    font-size: 16px;
    padding: 12px 15px;
    color: #ffb320;
}

.profile-info-table .info-value {
    text-align: right;
    color: #fff;
}

.profile-info-table tr:nth-child(odd) {
    background-color: #292929;
}

.profile-info-table tr:nth-child(even) {
    background-color: #1e1e1e;
}

.profile-info-table .status-row {
    background-color: #1e1e1e;
    display: table-row;
}

.profile-info-table .status-label {
    text-align: left;
    font-size: 16px;
    padding: 12px 15px;
    color: #ffb320;
}

.profile-info-table .status-badge {
    text-align:right;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 25px;
    color: #fff;
    display: inline-block;
    background-color: #f44336;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .2);
    margin: 0;
    transition: transform .3s ease, background-color .3s ease;
}

.profile-info-table .status-badge.online {
    background-color: #4caf50;
}

@media (max-width:768px) {
    .player-profile-card {
        padding: 20px;
        max-width: 90%;
    }

    .player-avatar {
        width: 80px;
        height: 80px;
    }

    .player-name {
        font-size: 24px;
    }

    .player-class {
        font-size: 16px;
    }

    .profile-info-table .info-label, .profile-info-table .info-value, .status-badge {
        font-size: 14px;
        padding: 10px;
    }

    .status-badge {
        padding: 8px 16px;
    }
}



.language-switch {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
}

.language-switch a {
    display: inline-block;
}

.language-flag {
    width: 26px;
    height: auto;
    transition: transform .2s ease, box-shadow .2s ease;
    cursor: pointer;
}

.language-flag:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
}

/* General Castle Siege Big Card Styling */
.castle-siege-big-card {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.6);
    border: 2px solid #2a2a2a;
    background-color: rgba(0, 0, 0, 0.85);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 🟢 Increased font size for mobile */
.cs-banner-header {
    font-family: "Berkshire Swash", cursive;
    text-align: center;
    font-size: 48px; /* ✅ Increased size for better readability */
    color: rgb(255, 213, 0);
    text-shadow: rgb(0, 0, 0) 2px 2px 4px;
    margin-top: -20px;
    margin-bottom: 10px;
}

/* Content Columns Container */
.castle-siege-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* ✅ Ensures equal spacing for columns */
}

/* 🟢 Fixed equal width for columns */
.castle-siege-column {
    flex: 1 1 48%; /* ✅ Forces two equal-width columns */
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 15px;
    color: #ffffff;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

/* Guild Logo Styling */
.castle-siege-column .guild-logo {
    width: 50%;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 0 15px #DAA520);
}

/* Section Titles */
.castle-siege-column .cstitle1,
.castle-siege-column .cstitle2 {
    font-size: 28px;
    font-weight: bold;
    color: #00aaff;
    margin-bottom: 10px;
}

/* Guild Owner and Master Styling */
.cs-winner-container {
    position: relative;
    display: inline-block;
    text-align: center;
}

.guild_owner, .guild_master {
    font-family: "Berkshire Swash", cursive;
    font-size: 32px;
    color: #DAA520;
    font-weight: bold;
    text-shadow: 0px 0px 0.2em red, 0px 0px 0.2em pink, 0px 0px 0.2em red;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    z-index: 1;
}

/* Spark Effect Styling */
.spark-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 40px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Show spark effect on hover */
.guild_owner:hover + .spark-image,
.guild_master:hover + .spark-image {
    opacity: 1;
}

/* Countdown Info Styling */
.guild_countdown {
    font-size: 28px;
    color: #dddddd;
    margin-bottom: 15px;
}

/* Button for More Details */
.more-details-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 15px;
}

.more-details-btn {
    display: inline-block;
    text-align: center;
    font-size: 20px;
    color: #131313;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 500;
    border: none;
    background: #ffb320;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.more-details-btn:hover {
    background-color: #ffd700;
    color: #111;
}

/* ✅ Mobile Optimizations */
@media (max-width: 768px) {
    /* Bigger title for mobile */
    .cs-banner-header {
        font-size: 40px; /* ✅ Increased size for mobile */
    }

    /* 🟢 Ensure both columns have equal width */
    .castle-siege-column {
        flex: 0 0 48%;
        min-width: 48%;
    }

    /* Adjust Guild Owner Text */
    .guild_owner {
        position: relative;
        z-index: 2;
        font-size: 22px; /* ✅ Bigger text */
        margin-top: 10px;
        padding: 5px;
        background: rgba(0, 0, 0, 0.8);
        width: auto;
        text-align: center;
    }

    /* Reduce padding for small screens */
    .castle-siege-big-card {
        padding: 10px;
        margin-top: 30px;
    }

    /* Stack content vertically */
    .castle-siege-content {
        flex-wrap: wrap;
        align-items: center;
        gap: 15px;
    }

    /* Smaller titles and countdown text */
    .castle-siege-column .cstitle1, 
    .castle-siege-column .cstitle2, 
    .guild_countdown {
        font-size: 18px;
    }
}

/* Extra adjustments for very small screens */
@media (max-width: 576px) {
    /* Bigger banner title for very small devices */
    .cs-banner-header {
        font-size: 36px; /* ✅ Even bigger title */
    }

    /* Further reduce sizes */
    .guild_owner {
        font-size: 20px;
    }

    .cstitle1, 
    .cstitle2 {
        font-size: 18px;
    }

    /* Smaller button */
    .more-details-btn {
        font-size: 16px;
        padding: 10px 18px;
    }

    /* ✅ Make sure both containers stay equal */
    .castle-siege-column {
        flex: 0 0 80%;
        width: 80%;
    }
}

.footer-section {
    padding: 20px 0;
    background-color: #222; /* Dark Background */
    color: #fff; /* White Text */
}

.footer-container {
    max-width: 1000px; /* Adjust to match the width of the timers */
    margin: 0 auto; /* Center align */
    padding: 0 20px; /* Small padding for responsiveness */
}

.footer-social-link {
    color: #fff;
    margin: 0 10px;
    transition: color 0.3s ease-in-out;
}

.footer-social-link:hover {
    color: #ffcc00; /* Change color on hover */
}

/* Container and Layout */
.p_castle-siege-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Section Titles */
.p_section-title h2 {
    font-size: 28px;
    color: #ffb320;
	text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Cards */
.p_panel-box {
    background-color: #2a2a2a;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    padding: 15px;
    margin-bottom: 20px;
}

.p_dark-news-panel {
    border: 1px solid #333;
}

/* Owner Details */
.p_owner-header {
    display: flex;
    align-items: center;
}

.p_owner-logo {
    margin-right: 15px;
    border-radius: 50%;
    overflow: hidden;
}

.p_owner-details h2 {
    color: #ffb320;
    font-size: 22px;
    font-weight: bold;
}

.p_owner-details p {
    color: #ccc;
    font-size: 14px;
}

/* Alliance List */
.p_alliance-list h3 {
    color: #ffd85e;
    font-size: 20px;
    margin-bottom: 5px;
}

.p_alliance-item {
    color: #ccc;
    font-size: 14px;
    margin-left: 20px;
}

/* Timer */
.p_siege-timer {
    color: #ffd85e;
    font-size: 24px;
    text-align: center;
    margin-top: 10px;
}

/* Information Table */
.p_castle-info-table {
    width: 100%;
    color: #ccc;
    border-collapse: collapse;
    margin-top: 10px;
}

.p_castle-info-table td {
    padding: 5px;
    border-bottom: 1px solid #444;
}

.p_castle-info-table .font-semibold {
    font-weight: bold;
}

/* Schedule Table */
.p_schedule-table {
    width: 100%;
    color: #ccc;
    border-collapse: collapse;
}

.p_schedule-table th {
    color: #ffb320;
    text-align: left;
    padding: 8px;
}

.p_schedule-table td {
    padding: 8px;
    border-bottom: 1px solid #444;
}


