/* Reset Body */
body { margin: 0; padding: 0; background: #fff; }

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #523d18 0%, #86693d 50%, #806a42 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.preloader-content {
    text-align: center;
    max-width: 400px;
    width: 90%;
    padding: 20px;
}

.preloader-logo {
    width: 400px;
    height: auto;
    margin-bottom: 20px;
    animation: preloaderPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.preloader-text {
    color: #FFD700;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.preloader-bar {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background: #5a3d25;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    position: relative;
}

.preloader-progress {
    height: 100%;
    width: 0%;
    background: #d4af37;
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@keyframes shimmer {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

.preloader-percentage {
    color: #FFF;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.preloader-subtitle {
    color: #FFE4B5;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.preloader-subtitle-small {
    color: #FFE4B5;
    font-size: 14px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Responsive Preloader */
@media (max-width: 768px) {
    .preloader-logo {
        width: 150px;
    }
    
    .preloader-text {
        font-size: 16px;
    }
    
    .preloader-bar {
        height: 25px;
    }
    
    .preloader-percentage {
        font-size: 20px;
    }
    
    .preloader-subtitle {
        font-size: 14px;
    }
    
    .preloader-subtitle-small {
        font-size: 12px;
    }
}

/* Custom cursors */
html, body {
    cursor: url('../../images/cursor.png') 6 2, auto;
}

a, button, [role="button"], .btn,
.nav-list a, .social-btn,
input[type="button"], input[type="submit"], input[type="reset"],
label, select, summary {
    cursor: url('../../images/activec.png') 6 2, pointer;
}

/** Background Sections */
.bg-01 { 
    width: 100%;
    min-width: 1280px;
    height: 1510px;
    background-image: url('../../images/bg_main_01.png'); 
	background-repeat: no-repeat;
	background-position: center top;
	position: relative;
}
.bg-02 { 
    width: 100%;
    min-width: 1280px;
    min-height: 1710px;
    background-image: url('../../images/bg_main_02.png'); 
	background-repeat: no-repeat;
	background-position: center bottom;
	position: relative;
}
.bg-03 { 
    width: 100%;
    min-width: 1280px;
    height: 1463px;
    background-image: url('../../images/bg_main_03.png'); 
	background-repeat: no-repeat;
	background-position: center top;
	position: relative;
}
.bg-04 { 
    width: 100%;
    min-width: 1280px;
    height: 1185px;
    background-image: url('../../images/bg_main_04.png'); 
	background-repeat: no-repeat;
	background-position: center top;
	position: relative;
}
.bg-05 { 
    width: 100%;
    min-width: 1280px;
    height: 1815px;
    background-image: url('../../images/bg_main_05.png'); 
	background-repeat: no-repeat;
	background-position: center top;
	position: relative;
}
.bg-06 { 
    width: 100%;
    min-width: 1280px;
    height: 1132px;
    background-image: url('../../images/bg_main_06.png'); 
	background-repeat: no-repeat;
	background-position: center top;
	position: relative;
}

/* Container Custom */

.container-custom {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* Offcanvas Custom Styles */
.offcanvas {
    width: 350px;
    background-color: #f8f6f0;
    border: none;
    box-shadow: none;
    border-radius: 30px 0 0 0;
}

.offcanvas-header {
    background-color: #674d2d;
    color: white;
    padding: 1rem;
    border-radius: 30px 0 0 0;
}

.offcanvas-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
}

.btn-close {
    background-color: transparent;
    border: none;
    color: white;
    opacity: 1;
    font-size: 1.5rem;
    filter: invert(1);
}

.btn-close:hover {
    color: white;
    opacity: 0.8;
    filter: invert(1);
}

.offcanvas-body {
    padding: 0;
    background-color: #f8f6f0;
}

.menu-section {
    border-bottom: 1px solid #e1d7cb;
    padding: 1.5rem 1.5rem;
}

.menu-section:last-child {
    border-bottom: none;
}

.menu-title {
    color: #51290e;
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-subtitle {
    color: #654321;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 500;
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-link {
    color: #7b736c;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: transparent;
    border: 1px solid transparent;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
}

.menu-link:hover {
    background-color: #62503d;
    color: white;
    text-decoration: none;
    border-color: #503a23;
}

.menu-badge {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1055;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    transition: opacity 0.3s ease;
}

.menu-badge.hidden {
    opacity: 0;
    pointer-events: none;
}

.menu-badge img {
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
}

.menu-badge:hover img {
    transform: scale(1.05);
}

/* Custom scrollbar for offcanvas */
.offcanvas-body::-webkit-scrollbar {
    width: 9px;
}

.offcanvas-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.offcanvas-body::-webkit-scrollbar-thumb {
    background: #695434;
    border-radius: 3px;
}

.offcanvas-body::-webkit-scrollbar-thumb:hover {
    background: #6b5a40;
}

/* Header Logo */
.header-logo {
    position: relative;
    width: 100%;
}
.header-logo img {
    display: block;
    max-width: 800px;
    width: 100%;
    height: auto;
    position: absolute;
    top: 14px;
    left: 18%;
    z-index: 1;
    transform-origin: center;
    animation: logo-float-zoom 7s ease-in-out infinite;
}

.header-logo::after { content: none; }

@keyframes logo-float-zoom {
    0%   { transform: translate(0, 0) scale(1); }
    12.5%{ transform: translate(6px, -6px) scale(1.03); }
    25%  { transform: translate(0, -2px) scale(1.015); }
    37.5%{ transform: translate(-6px, 4px) scale(0.995); }
    50%  { transform: translate(0, 0) scale(1); }
    62.5%{ transform: translate(5px, 6px) scale(1.02); }
    75%  { transform: translate(0, 2px) scale(0.99); }
    87.5%{ transform: translate(-5px, -4px) scale(1.01); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Button Custom Header*/

.header-button {
    margin: 24px auto 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 100%;
    padding: 0 50px;
}

.btn-group {
    display: block;
    width: 375px; /* image width from sample */
    max-width: 100%;
    transition: transform .2s ease, filter .2s ease;
}
.btn-group img { width: 100%; height: auto; display: block; margin-top: 1350px; }
.btn-group:hover { transform: translateY(-2px) scale(1.02); filter: brightness(1.05); }

/* Event News */
.event-notes { padding: 30px 16px 0px; position: relative; }
.event-header { display: flex; justify-content: center; align-items: center; margin-bottom: 28px; }
.event-header img { display: block; width: 1280px; max-width: 100%; height: auto; }

.event-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px auto;
    flex-wrap: wrap;
}

.event-btn {
    display: block;
    transition: transform .2s ease, filter .2s ease, opacity .2s ease;
    text-decoration: none;
    opacity: 0.7;
}

.event-btn.active {
    opacity: 1;
    transform: scale(1.1);
}

.event-btn img {
    width: 100%;
    height: 100%;
    display: block;
}

.event-btn:hover {
    transform: translateY(-2px) scale(1.05);
    filter: brightness(1.1);
    opacity: 1;
}

.event-btn.active:hover {
    transform: translateY(-2px) scale(1.15);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px auto;
    max-width: 1280px;
    padding: 0 10px;
}

.news-item {
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.news-image {
    width: 100%;
    height: 270px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.news-content p {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author {
    font-size: 12px;
    color: #888;
}

.btn-update, .btn-activity, .btn-news, .btn-promo {
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-update {
    background: #4CAF50;
    color: white;
}

.btn-update:hover {
    background: #45a049;
    color: white;
}

.btn-activity {
    background: #CD853F;
    color: white;
}

.btn-activity:hover {
    background: #B8860B;
    color: white;
}

.btn-news {
    background: #2196F3;
    color: white;
}

.btn-news:hover {
    background: #1976D2;
    color: white;
}

.btn-promo {
    background: #FF5722;
    color: white;
}

.btn-promo:hover {
    background: #D84315;
    color: white;
}

/* Read More Button */
.read-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 20px;
    padding: 20px;
}

.read-more-btn {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-glow 2s ease-in-out infinite;
}

.read-more-btn img {
    display: block;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    transform: scale(1.1);
    animation: wiggle 0.5s ease-in-out infinite;
}

/* Keyframe Animations */
@keyframes pulse-glow {
    0% { 
        transform: scale(1); 
        filter: brightness(1) drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    }
    50% { 
        transform: scale(1.05); 
        filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    }
    100% { 
        transform: scale(1); 
        filter: brightness(1) drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    }
}

@keyframes wiggle {
    0% { transform: scale(1.1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-2deg); }
    50% { transform: scale(1.1) rotate(2deg); }
    75% { transform: scale(1.1) rotate(-1deg); }
    100% { transform: scale(1.1) rotate(0deg); }
}
/* News Grid */

/* Job Class Section */
.job-notes { 
    padding: 195px 16px 0px; 
    position: relative; 
}

.job-header { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.job-header img { 
    display: block; 
    width: 1280px; 
    max-width: 100%; 
    height: auto; 
}

/* Job Display */
.job-display {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px auto;
    max-width: 1200px;
    padding: 20px;
}

.job-display img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 15px;
    transition: opacity 0.3s ease-in-out;
}

/* Job Buttons */
.job-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 5px auto 20px;
    flex-wrap: wrap;
}

.job-btn {
    display: block;
    width: 190px;
    height: 190px;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 5px;
    position: relative;
}

.job-btn.active {
    opacity: 1;
    transform: scale(1.1);
}

.job-btn img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.job-btn:hover {
    transform: translateY(-5px) scale(1.05);
    opacity: 1;
}

.job-btn.active:hover {
    transform: translateY(-5px) scale(1.15);
}

/* Job Tooltip */
.job-tooltip {
    position: absolute;
    bottom: 190px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, #582d08, #502e0a);
    border: 2px solid #341303;
    border-radius: 15px;
    padding: 15px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.job-btn:hover .job-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.tooltip-title {
    color: #ffd954;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 1px solid #421e05;
    padding-bottom: 5px;
}

.tooltip-classes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.class-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.class-option:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateX(2px);
}

.class-option img {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid #2a1503;
}

.class-option span {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
}

/* Tooltip Arrow */
.job-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #341303;
}

/* Share Section */
.share-notes { 
    padding: 10px 16px 0px; 
    position: relative; 
}

.share-header { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.share-header img { 
    display: block; 
    width: 1280px; 
    max-width: 100%; 
    height: auto; 
}

.share-body { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding-top: 25px;
}

.share-body img { 
    display: block; 
    width: 1280px; 
    max-width: 100%; 
    height: auto; 
}

/* Share Button */
.share-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
    padding: 5px;
}

.share-btn {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-glow 2s ease-in-out infinite;
}

.share-btn img {
    display: block;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: scale(1.1);
    animation: wiggle 0.5s ease-in-out infinite;
}

/* Keyframe Animations */
@keyframes pulse-glow {
    0% { 
        transform: scale(1); 
        filter: brightness(1) drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    }
    50% { 
        transform: scale(1.05); 
        filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    }
    100% { 
        transform: scale(1); 
        filter: brightness(1) drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    }
}

@keyframes wiggle {
    0% { transform: scale(1.1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-2deg); }
    50% { transform: scale(1.1) rotate(2deg); }
    75% { transform: scale(1.1) rotate(-1deg); }
    100% { transform: scale(1.1) rotate(0deg); }
}

/* Info Section */
.info-notes { 
    padding: 10px 16px 0px; 
    position: relative;
    min-height: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('../../images/bg_info.png');
    background-repeat: no-repeat;
    background-position: center 200px;
    background-size: contain;
}

.info-header { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.info-header img { 
    display: block; 
    width: 1280px; 
    max-width: 100%; 
    height: auto; 
}

/* Info Buttons Grid - Custom Layout */
.info-buttons {
    display: grid;
    grid-template-columns: repeat(6, auto);
    gap: 0px;
    margin: 160px auto 0px auto;
    max-width: 1280px;
    padding: 0 5px;
    position: relative;
    z-index: 10;
    justify-content: center;
}

.info-btn {
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* First row: buttons 1-4 with gap in middle */
.info-btn:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.info-btn:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.info-btn:nth-child(3) {
    grid-column: 5;
    grid-row: 1;
}

.info-btn:nth-child(4) {
    grid-column: 6;
    grid-row: 1;
}

/* Second row: 6 buttons in a row */
.info-btn:nth-child(5) {
    grid-column: 1;
    grid-row: 2;
}

.info-btn:nth-child(6) {
    grid-column: 2;
    grid-row: 2;
}

.info-btn:nth-child(7) {
    grid-column: 3;
    grid-row: 2;
}

.info-btn:nth-child(8) {
    grid-column: 4;
    grid-row: 2;
}

.info-btn:nth-child(9) {
    grid-column: 5;
    grid-row: 2;
}

.info-btn:nth-child(10) {
    grid-column: 6;
    grid-row: 2;
}

.info-btn img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.info-btn:hover {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.1) drop-shadow(0 5px 10px rgba(255, 205, 43, 0.3));
}

/* CashShop Section */
.cg-notes { 
    padding: 10px 0px 0px; 
    position: relative; 
}

.cg-header { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.cg-header img { 
    display: block; 
    width: 1280px; 
    max-width: 100%; 
    height: auto; 
}

/* News Carousel Section */
.carousel-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.news-box {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 200px;
    transition: transform 0.3s ease;
}

.news-box:hover {
    transform: translateY(-5px);
}

.news-box-header {
    background: linear-gradient(180deg, #c9b18f 0%, #a89371 100%);
    padding: 15px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    border-radius: 15px 15px 0 0;
}

.news-box-image {
    background: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.news-box-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Read More Button Cash Shop */
.carousel-readmore {
    display: flex;
    justify-content: center;
    margin-top: 0px;
}

.carousel-readmore-btn {
    display: inline-block;
    transition: all 0.3s ease;
}

.carousel-readmore-btn img {
    display: block;
    transition: all 0.3s ease;
}

.carousel-readmore-btn:hover {
    transform: scale(1.05);
}

/* Guildwar Report Section */
.gr-notes { 
    padding: 0px; 
    position: absolute;
    top: -200px; 
}

.gr-header { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.gr-header img { 
    display: block; 
    width: 1280px; 
    max-width: 100%; 
    height: auto; 
}

/* Guild Report Background Container */
.gr-background {
    background-image: url('../../images/bg_guildreport.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 1280px;
    height: 525px;
    margin: 10px auto;
    padding: 20px 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Guild Report Boxes Grid */
.gr-boxes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
    height: 100%;
}

/* Individual Guild Box */
.gr-box-item {
    background: rgba(235, 225, 205, 0.85);
    border: 1px solid rgba(160, 130, 95, 0.2);
    border-radius: 12px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    height: 100%;
    min-height: 0;
}

.gr-box-item:hover {
    background: rgba(235, 225, 205, 0.95);
    border-color: rgba(160, 130, 95, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.guild-emblem {
    flex-shrink: 0;
    position: relative;
    width: 97px;
    height: 107px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.guild-icon {
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 35px;
    left: 51%;
    transform: translateX(-51%);
    z-index: 2;
    border-radius: 5px;
    background: #000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.guild-flag {
    width: 97px;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.guild-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.guild-text {
    font-size: 18px;
    font-weight: 400;
    color: #4A3A2A;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

/* Menu Icon Side Bar*/
.menu-badge {
    position: fixed;
    top: 120px;
    right: 32px;
    width: 228px;
    text-decoration: none;
    z-index: 999;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.menu-badge img {
    display: block;
    width: 100%;
    height: auto;
}

.menu-badge:hover {
    transform: translateY(-4px) scale(1.02);
    filter: brightness(1.05);
}

@media (max-width: 768px) {
    .menu-badge {
        top: 24px;
        right: 16px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}