
.wp-block-button__link {
            color: #fff;
            background-color: #32373c;
            border-radius: 9999px;
            box-shadow: none;
            text-decoration: none;
            padding: calc(.667em + 2px) calc(1.333em + 2px);
            font-size: 1.125em
        }
.wp-block-file__button {
    background: #32373c;
    color: #fff;
    text-decoration: none
}


:root {
    --wp--preset--aspect-ratio--square: 1;
    --wp--preset--aspect-ratio--4-3: 4/3;
    --wp--preset--aspect-ratio--3-4: 3/4;
    --wp--preset--aspect-ratio--3-2: 3/2;
    --wp--preset--aspect-ratio--2-3: 2/3;
    --wp--preset--aspect-ratio--16-9: 16/9;
    --wp--preset--aspect-ratio--9-16: 9/16;
    --wp--preset--color--black: #000000;
    --wp--preset--color--cyan-bluish-gray: #abb8c3;
    --wp--preset--color--white: #ffffff;
    --wp--preset--color--pale-pink: #f78da7;
    --wp--preset--color--vivid-red: #cf2e2e;
    --wp--preset--color--luminous-vivid-orange: #ff6900;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--color--light-green-cyan: #7bdcb5;
    --wp--preset--color--vivid-green-cyan: #00d084;
    --wp--preset--color--pale-cyan-blue: #8ed1fc;
    --wp--preset--color--vivid-cyan-blue: #0693e3;
    --wp--preset--color--vivid-purple: #9b51e0;
    --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
    --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
    --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
    --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
    --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
    --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
    --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
    --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
    --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
    --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
    --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
    --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
    --wp--preset--font-size--small: 13px;
    --wp--preset--font-size--medium: 20px;
    --wp--preset--font-size--large: 36px;
    --wp--preset--font-size--x-large: 42px;
    --wp--preset--spacing--20: 0.44rem;
    --wp--preset--spacing--30: 0.67rem;
    --wp--preset--spacing--40: 1rem;
    --wp--preset--spacing--50: 1.5rem;
    --wp--preset--spacing--60: 2.25rem;
    --wp--preset--spacing--70: 3.38rem;
    --wp--preset--spacing--80: 5.06rem;
    --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
    --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
    --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
    --wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);
    --wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);
}

:where(.is-layout-flex) {
    gap: 0.5em;
}

:where(.is-layout-grid) {
    gap: 0.5em;
}

body .is-layout-flex {
    display: flex;
}

.is-layout-flex {
    flex-wrap: wrap;
    align-items: center;
}

.is-layout-flex > :is(*, div) {
    margin: 0;
}

body .is-layout-grid {
    display: grid;
}

.is-layout-grid > :is(*, div) {
    margin: 0;
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
    gap: 2em;
}

:where(.wp-block-post-template.is-layout-flex) {
    gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
    gap: 1.25em;
}

.has-black-color {
    color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-color {
    color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-color {
    color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-color {
    color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-color {
    color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-color {
    color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-color {
    color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-color {
    color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-color {
    color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-color {
    color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-color {
    color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-color {
    color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-background-color {
    background-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-background-color {
    background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-background-color {
    background-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-background-color {
    background-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-background-color {
    background-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-background-color {
    background-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-background-color {
    background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-background-color {
    background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-background-color {
    background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-background-color {
    background-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-border-color {
    border-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-border-color {
    border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-border-color {
    border-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-border-color {
    border-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-border-color {
    border-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-border-color {
    border-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-border-color {
    border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-border-color {
    border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-border-color {
    border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-border-color {
    border-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
    background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
}

.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
    background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
}

.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
}

.has-luminous-vivid-orange-to-vivid-red-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
}

.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
    background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
}

.has-cool-to-warm-spectrum-gradient-background {
    background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
}

.has-blush-light-purple-gradient-background {
    background: var(--wp--preset--gradient--blush-light-purple) !important;
}

.has-blush-bordeaux-gradient-background {
    background: var(--wp--preset--gradient--blush-bordeaux) !important;
}

.has-luminous-dusk-gradient-background {
    background: var(--wp--preset--gradient--luminous-dusk) !important;
}

.has-pale-ocean-gradient-background {
    background: var(--wp--preset--gradient--pale-ocean) !important;
}

.has-electric-grass-gradient-background {
    background: var(--wp--preset--gradient--electric-grass) !important;
}

.has-midnight-gradient-background {
    background: var(--wp--preset--gradient--midnight) !important;
}

.has-small-font-size {
    font-size: var(--wp--preset--font-size--small) !important;
}

.has-medium-font-size {
    font-size: var(--wp--preset--font-size--medium) !important;
}

.has-large-font-size {
    font-size: var(--wp--preset--font-size--large) !important;
}

.has-x-large-font-size {
    font-size: var(--wp--preset--font-size--x-large) !important;
}

:where(.wp-block-post-template.is-layout-flex) {
    gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
    gap: 1.25em;
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
    gap: 2em;
}

:root :where(.wp-block-pullquote) {
    font-size: 1.5em;
    line-height: 1.6;
}


/* ===== SIDEBAR DOWNLOAD - FIXED RIGHT ===== */

.sidebar-download {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    z-index: 9999;
}

.download-banner {
    background: linear-gradient(180deg, #5c3317 0%, #3d1f0f 100%);
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    position: relative;
}

/* Header với decoration */
.banner-header {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    padding: 20px 15px 15px;
    text-align: center;
    position: relative;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.banner-header::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: linear-gradient(180deg, #2d1810 0%, #5c3317 100%);
    border-radius: 0 0 50% 50%;
    box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.3);
}

/* Decoration ornament */
.banner-header::after {
    content: '❖';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: #d4af37;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.banner-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    font-style: italic;
    margin-bottom: 5px;
    font-family: 'Brush Script MT', cursive;
}

.banner-subtitle {
    font-size: 0.75rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Menu Buttons */
.banner-menu {
    padding: 20px 15px 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.menu-btn:hover::before {
    left: 100%;
}

.menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.6);
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
}

.menu-btn:active {
    transform: translateY(0);
}

/* Icons */
.menu-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Bottom Decoration */
.banner-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 0 0 30px 30px;
    pointer-events: none;
}

.banner-footer::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 1200px) {
    .sidebar-download {
        right: 10px;
        width: 180px;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .menu-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .sidebar-download {
        display: none; /* Ẩn trên mobile */
    }
}

/* Hoặc hiện dạng khác trên mobile */
@media (max-width: 768px) {
    .sidebar-download {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
    }

    .download-banner {
        border-radius: 15px 15px 0 0;
    }

    .banner-menu {
        flex-direction: row;
        overflow-x: auto;
        padding: 10px;
    }

    .menu-btn {
        flex-shrink: 0;
        font-size: 0.7rem;
        padding: 8px 15px;
    }
}



#serverModal a#serverTeamButton {
    width: 100% !important;

    margin-bottom: 10px !important;

    align-items: flex-start !important;
    background-color: #8f34f5 !important;
    border-color: #8f34f5 !important;
    border-radius: 10px !important;
    color: #ffffff !important;
    display: inline-block !important;
    font-family: system-ui !important;
    font-size: 14px !important;
    line-height: 21px !important;
    margin: 10px 0px 0px !important;
    text-align: center !important;
}

#serverModal a#serverTeamButton:hover {
    background-color: #FF418C !important;
    border-color: #FF418C !important;
}

#serverModal .mt-2 {
    color: #212529 !important;
    font-weight: 600 !important;
    line-height: 24px !important;
    margin: 8px 0px 0px !important;
    text-align: center !important;
}

#serverModal .mb-2 {
    color: #212529 !important;
    font-weight: 600 !important;
    line-height: 30px !important;
    margin: 0px 0px 8px !important;
    text-align: center !important;
}

#serverModal .text-center {
    color: #212529 !important;
    font-weight: 300 !important;
    line-height: 24px !important;
    text-align: center !important;
}

#serverModal img.logo {
    color: #212529 !important;
    display: inline !important;
    font-weight: 300 !important;
    line-height: 24px !important;
    text-align: center !important;
}

#serverModal .modal-body {

    /*outline: 2px solid #000;*/
    border-radius: 25px;
    margin: 0 auto;
    background-color: #FCE3C6 !important;
    color: #212529 !important;
    font-weight: 300 !important;
    line-height: 24px !important;

}

#serverModal .modal-content {
    margin: 2px 127px;

}

#serverModal .modal-content p {
    margin: 9px 30px;
    line-height: 1.5;
}

#serverModal .modal-content h2 {
    margin: 9px 30px;
    line-height: 1.5;
}


#serverModal .modal-content font[color="#FF0000"] {
    color: #FF0000;
    font-weight: bold;

}

@media (min-width: 768px) and (max-width: 1024px) {
    #serverModal html, body {
        overflow: visible;
    }
}

@media (max-width: 767px) {
    #serverModal html, body {
        overflow: visible;
    }

    #serverModal .modal-body {
        margin: 0 -36px;
        margin: 0 auto;
        text-align: center;
    }

    #serverModal .modal-content {
        margin: 4px 55px
    }

    #serverModal .modal-content p {
        margin: 32px 30px;
        line-height: 1.5;
    }

}

.modal-content {
    background-color: #efcfaa;
    border-color: #f4ab6b;
    border-radius: 30px !important;
    border-width: 3px;
}

* {
    margin: 0;
    padding: 0;
}

.footer-gosu {
    width: 100%;
    padding: 4rem 0;
    text-align: center;
    color: #fff;
    font-family: Tahoma, Arial, Helvetica, sans-serift;
    font-size: 14px;
    line-height: 1.5;
}

.footer-link-privacy {
    margin-bottom: 10px;
}

.footer-link-privacy a {
    color: #e5e5e7;
    text-decoration: none;
    font-size: 3rem;
}

.footer-link-privacy a:hover {
    color: #fff;
}

.footer-gosu p {
    margin-bottom: 0.5rem;
    color: #e5e5e7;
    font-size: 3rem;
}

.footer-gosu-inner {
    width: 100%;
    max-width: 1000px;
    color: #e5e5e7;
    font-size: 3rem;
    text-align: center;
    position: relative;
    margin: 0 auto
}

.footer-logo-gosu {
    position: absolute;
    display: block;
    text-indent: -999em;
    background: url(./assets/img/logo_gosu_new.png) 0 0 no-repeat;
    width: 149px;
    height: 41px;
    left: 0;
    top: -10px;
}

.footer-gosu-18 {
    position: absolute;
    right: 0;
    top: 0;
}

/*media */
@media (max-width: 768px) {
    .footer-logo-gosu {
        position: inherit;
        top: 0;
        margin: 0 auto 10px;
    }

    .footer-gosu-18 {
        display: block;
        position: relative;
        left: 50%;
        margin-top: 10px;
        margin-left: -30px;
    }
}

/* From Uiverse.io by Smit-Prajapati */ 
.button {
  /* in scss with just one variable i can change opacity with rgba(variable, opacity) but in css it's not possible so i have used three seperate variables */
  /* with hue-rotate color can be changed */
  --main-color: rgb(46, 213, 115);
  --main-bg-color: rgba(46, 213, 116, 0.36);
  --pattern-color: rgba(46, 213, 116, 0.073);

  /* change this rotation value */
  filter: hue-rotate(0deg);

  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  background: radial-gradient(
      circle,
      var(--main-bg-color) 0%,
      rgba(0, 0, 0, 0) 95%
    ),
    linear-gradient(var(--pattern-color) 1px, transparent 1px),
    linear-gradient(to right, var(--pattern-color) 1px, transparent 1px);
  background-size:
    cover,
    15px 15px,
    15px 15px;
  background-position:
    center center,
    center center,
    center center;
  border-image: radial-gradient(
      circle,
      var(--main-color) 0%,
      rgba(0, 0, 0, 0) 100%
    )
    1;
  border-width: 1px 0 1px 0;
  color: var(--main-color);
  padding: 1rem 3rem;
  font-weight: 700;
  font-size: 1.5rem;
  transition: background-size 0.2s ease-in-out;
}

.button:hover {
  background-size:
    cover,
    10px 10px,
    10px 10px;
}
.button:active {
  filter: hue-rotate(250deg);
}

.text-green {
  --main-color: rgb(46, 213, 115);
  --main-bg-color: rgba(46, 213, 116, 0.36);
  --pattern-color: rgba(46, 213, 116, 0.073);
  color: var(--main-color);
  padding-top: 0.5rem;
  font-weight: 700;
  font-size: 1.5rem;
}
/* ========== Modal bài viết ========== */
.news-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow: auto;
}

.news-modal .modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 85%;
    overflow-y: auto;
    position: relative;
}

.news-modal .close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.news-modal .close-modal:hover {
    color: #ff0000;
}

.news-modal .post-detail {
    padding: 10px;
}

.news-modal #modalTitle {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    padding-right: 30px;
    line-height: 1.3;
}

.news-modal .post-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.news-modal .post-meta span {
    margin-right: 15px;
    display: inline-block;
}

.news-modal .post-content {
    line-height: 1.6;
    font-size: 16px;
    color: #444;
}

.news-modal .post-content img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
    border-radius: 4px;
}

.news-modal .post-content ul,
.news-modal .post-content ol {
    padding-left: 20px;
    margin: 10px 0;
}

.news-modal .post-content h1,
.news-modal .post-content h2,
.news-modal .post-content h3,
.news-modal .post-content h4 {
    color: #333;
    margin: 15px 0 10px 0;
}

.news-modal .post-content a {
    color: #0066cc;
    text-decoration: none;
}

.news-modal .post-content a:hover {
    text-decoration: underline;
}

/* Loading và error states */
.loading-text,
.error-text,
.no-data {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
}

.error-text {
    color: #ff0000;
}

.no-data {
    color: #888;
    background: #f9f9f9;
    border-radius: 5px;
    margin: 10px 0;
}

/* Nút thử lại */
.retry-button {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    transition: background 0.3s;
}

.retry-button:hover {
    background: #ff5252;
}

/* Responsive cho modal */
@media (max-width: 768px) {
    .news-modal .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 15px;
    }
    
    .news-modal #modalTitle {
        font-size: 20px;
    }
    
    .news-modal .post-content {
        font-size: 14px;
    }
    
    .news-modal .close-modal {
        right: 15px;
        top: 5px;
        font-size: 24px;
    }
    .text-green {
    --main-color: rgb(46, 213, 115);
    --main-bg-color: rgba(46, 213, 116, 0.36);
    --pattern-color: rgba(46, 213, 116, 0.073);
    color: var(--main-color);
    padding-top: 2.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    }
}

/* Animation cho modal */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-modal .modal-content {
    animation: modalFadeIn 0.3s ease-out;
}

/* Tab loading state */
.tab-detail-news .loading-text {
    padding: 20px;
    text-align: center;
    color: #999;
    font-style: italic;
}

/* View more button */
.view-more {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

