/*
Theme Name: World
Theme URI: https://worldfansub.xyz
Author: Skip
Description: Tema moderno e exclusivo para a World
Version: 1.0.3
Text Domain: world
*/
body.no-scroll {
    overflow: hidden;
}

:root {
    --primary-color: #00E676;
    --primary-hover: #00b359;
    --bg-dark: #050505;
    --bg-card: #0a0f0d;
    --bg-header: rgba(5, 5, 5, 0.95);
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --shadow-neon: 0 0 10px rgba(0, 230, 118, 0.2);
    --border-radius: 12px;
    --container-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 50% 0%, rgba(0, 230, 118, 0.05) 0%, transparent 60%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><path fill='%2300E676' stroke='%23000' stroke-width='1.5' d='M2 2l6.5 16 2.5-7 7-2.5L2 2z'/></svg>") 2 2, auto;
}

a,
button,
input[type="submit"],
.btn,
select,
label {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><path fill='%2300E676' stroke='%23FFF' stroke-width='1.5' stroke-linejoin='round' d='M9 2C7.9 2 7 2.9 7 4v7H5c-1.1 0-2 .9-2 2v2l5 8h10c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2h-4V4c0-1.1-.9-2-2-2H9z'/></svg>") 9 0, pointer !important;
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background-color: var(--bg-header);
    border-bottom: 1px solid rgba(0, 230, 118, 0.1);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.site-logo a {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-shadow: var(--shadow-neon);
}

.site-logo img,
.custom-logo {
    max-height: 60px;
    width: auto;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-label {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 991px) {
    .mobile-menu-btn {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: rgba(10, 15, 13, 0.98);
        backdrop-filter: blur(20px);
        padding: 120px 20px 40px;
        transition: all 0.4s ease;
        z-index: 1000;
        border-left: 1px solid rgba(0, 230, 118, 0.2);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        transform: translateX(100%);
        visibility: hidden;
        opacity: 0;
    }

    .mobile-menu-btn .mobile-menu-label,
    .mobile-menu-btn .hamburger-icon span {
        transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), background-color 0.3s;
    }

    .mobile-menu-btn.active {
        position: fixed;
        right: 20px;
        top: 25px;
    }

    .main-navigation.active {
        right: 0;
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .main-navigation a {
        border-radius: 12px;
        text-align: left;
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .main-navigation ul ul {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        margin-top: 5px;
        padding: 5px 15px;
        display: none;
    }

    .main-navigation ul li.menu-item-has-children.active>ul {
        display: flex;
    }
}

.main-navigation>ul>li {
    position: relative;
}

.main-navigation a {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 50px;
    background: rgba(0, 230, 118, 0.05);
    transition: all 0.2s ease;
    white-space: nowrap;
    text-align: center;
}

.main-navigation ul ul {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    background-color: rgba(10, 15, 13, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 16px;
    padding: 10px;
    min-width: 220px;
    z-index: 999;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 230, 118, 0.1);
    gap: 4px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.main-navigation ul ul::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: inherit;
    border-left: 1px solid rgba(0, 230, 118, 0.3);
    border-top: 1px solid rgba(0, 230, 118, 0.3);
    z-index: -1;
}

.main-navigation ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 15px);
}

.main-navigation ul ul a {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    text-align: left;
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-navigation ul ul a::after {
    content: '›';
    font-size: 1.2em;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s ease;
}

.main-navigation ul ul a:hover {
    background: rgba(0, 230, 118, 0.08);
    border-color: rgba(0, 230, 118, 0.2);
    color: #fff;
    transform: translateX(5px);
    box-shadow: none;
    padding-left: 1.2rem;
}

.main-navigation ul ul a:hover::after {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary-color);
}

.main-navigation a:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.4);
    transform: translateY(-2px);
    text-shadow: none;
}

.hero-section {
    padding: 4rem 0;
    text-align: center;
    background: radial-gradient(circle at 50% 10%, rgba(0, 230, 118, 0.05), transparent 70%);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
}

.section-title {
    font-size: 1.5rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin: 3rem 0 1.5rem;
    color: #fff;
}

.anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    padding-bottom: 3rem;
}

.anime-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.anime-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon), 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 0;
}

.anime-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: #000;
    font-weight: bold;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 4px;
}

.card-content {
    padding: 1rem;
}

.card-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-neon);
}

.btn:hover {
    background-color: var(--primary-hover);
    color: #000;
    transform: scale(1.05);
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.pagination {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    width: 100%;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.page-numbers.current,
.page-numbers:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-neon);
}

.site-footer {
    background-color: #000;
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 230, 118, 0.1);
    position: relative;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-right {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 100px 2rem 2rem 150px;
    z-index: 10;
}

.author-credit {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.5;
    margin: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    cursor: default;
    position: relative;
    pointer-events: none;
}

.footer-right:hover .author-credit {
    opacity: 1;
    transform: scale(1.2) translateY(-5px) translateX(-20px);
    background: linear-gradient(90deg, #fff, var(--primary-color), #00BFA5, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: footerShine 2s linear infinite;
    font-weight: 800;
    filter: drop-shadow(0 0 8px rgba(0, 230, 118, 0.3));
}

@keyframes footerShine {
    to {
        background-position: 200% center;
    }
}

.author-credit del {
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.footer-right:hover .author-credit del {
    background: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 0.8;
}

.footer-left p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .footer-right {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 1rem;
    }

    .main-navigation ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .anime-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.video-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    z-index: -1;
    overflow: hidden;
}

.hero-backdrop {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    opacity: 0.3;
    transform: scale(1.1);
    transition: all 0.5s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--bg-header), var(--bg-dark));
}

.single-container {
    padding-top: 2rem;
    max-width: 1000px;
}

.entry-header {
    margin-bottom: 2rem;
    text-align: center;
}

.header-meta {
    margin-bottom: 1rem;
}

.meta-cat {
    background-color: var(--primary-color);
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-right: 10px;
}

.meta-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.entry-title {
    font-size: 2.5rem;
    margin-top: 1rem;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.video-player-wrapper {
    background: #000;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    aspect-ratio: 16/9;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: radial-gradient(circle, #1a1a1a 0%, #000 100%);
}

.play-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--primary-color);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.play-icon:hover {
    transform: scale(1.1);
}

.action-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-download {
    background: var(--primary-color);
    color: #000;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.content-title {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-title::before {
    content: '';
    display: block;
    width: 6px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-color);
}

.entry-content {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.9;
    color: #d0d0d0;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.entry-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(0, 230, 118, 0.1), transparent 70%);
    pointer-events: none;
}

.tags-list {
    margin-top: 2rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag-link {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tag-link:hover {
    background: var(--primary-color);
    color: #000;
}

.downloads-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 230, 118, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.download-header h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.download-header p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.download-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.1);
}

.dl-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.quality-badge {
    background: rgba(0, 230, 118, 0.1);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 1.2rem;
}

.file-size {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.dl-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn-dl {
    display: block;
    padding: 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    text-align: center;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.btn-dl.primary {
    background: var(--primary-color);
    color: #000;
}

.btn-dl.primary:hover {
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-dl.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-dl.secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.header-actions {
    margin-top: 1rem;
    justify-content: flex-end;
}

.btn.small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.anime-layout-split {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.anime-poster {
    flex: 0 0 250px;
    position: sticky;
    top: 90px;
}

.poster-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.poster-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.poster-wrapper:hover .poster-img {
    transform: scale(1.05);
}

.anime-main-info {
    flex: 1;
}

@media (max-width: 768px) {
    .anime-layout-split {
        flex-direction: column;
        align-items: center;
    }
}

.wp-block-button__link {
    background: linear-gradient(45deg, #00E676, #00b359) !important;
    color: #000 !important;
    font-weight: 800;
    text-transform: uppercase;
    border: none !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 50px !important;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.4);
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    max-width: fit-content !important;
    font-size: 0.9rem !important;
    margin: 0 auto;
}

.wp-block-button__link:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 230, 118, 0.6);
    color: #000 !important;
}

.wp-block-heading {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

hr.wp-block-separator {
    background-color: rgba(0, 230, 118, 0.3);
    height: 1px;
    border: none;
}

.wp-block-columns {
    margin-bottom: 2rem;
    gap: 2rem !important;
}

.wp-block-column {
    margin-bottom: 1.5rem;
}

.wp-block-image img {
    aspect-ratio: 2/3 !important;
    object-fit: cover !important;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
}

.wp-block-image:hover img {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.3);
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    box-shadow: none !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: rgba(0, 230, 118, 0.1) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
}

.project-directory-wrapper {
    background: linear-gradient(to bottom, #0f171e 0%, #1a2634 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.project-header-title h2 {
    margin: 0;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 800;
}

.project-filter-bar {
    padding: 1.5rem;
    background: rgba(15, 23, 30, 0.95);
}

.letter-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.letter-btn {
    background: #1a2634;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 0.8rem;
}

.letter-btn:hover,
.letter-btn.active {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.4);
    border-color: var(--primary-color);
}

.letter-btn.wide {
    width: auto;
    padding: 0 15px;
}

.filter-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.filter-select {
    background: #0b1116;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.project-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
    padding: 0;
    margin: 2rem 0;
}

.project-card-clean {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 2/3;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.project-card-clean:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
    z-index: 10;
}

.project-card-clean a {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    text-decoration: none;
    border: none;
}

.project-card-clean img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 10%, rgba(0, 0, 0, 0.8) 50%, transparent 100%);
    padding: 2.5rem 1rem 1rem;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 5;
    pointer-events: none;

}

.anime-card:hover .card-overlay,
.project-card-clean:hover .card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.overlay-title {
    color: #fff;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    display: block;

}

.card-title {
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    transition: opacity 0.3s ease;
}

.team-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.anime-card:hover .card-content .card-title {
    opacity: 0;
    transform: translateY(5px);
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.team-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color, #00E676);
    box-shadow: 0 0 10px var(--primary-color, #00E676);
}

.team-header .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.team-header h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 0.5rem 0;
    font-weight: 800;
}

.team-header p {
    color: #aaa;
    font-size: 1.1rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 0 1rem;
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    flex: 0 1 300px;
    max-width: 320px;
    min-width: 250px;
    background: linear-gradient(145deg, #1a2634, #0f171e);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.15);
    border-color: rgba(0, 230, 118, 0.3);
}

.team-avatar {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color, #00E676);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.2);
    position: relative;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-avatar img {
    transform: scale(1.1);
}

.team-info h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.team-info h3 span {
    font-size: 0.85rem;
    color: var(--primary-color, #00E676);
    display: block;
    margin-top: 0.3rem;
    font-weight: 400;
}

.team-roles {
    background: rgba(0, 0, 0, 0.25);
    padding: 1rem;
    border-radius: 8px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.role-label {
    display: block;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.team-roles p {
    margin: 0;
    color: #ddd;
    font-size: 0.9rem;
    line-height: 1.4;
}

.series-excerpt h6,
.series-excerpt .wp-block-heading {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary-color, #00E676);
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.series-excerpt h6::before,
.series-excerpt .wp-block-heading::before {
    content: '📢';
    margin-right: 10px;
    font-size: 1.2rem;
    vertical-align: middle;
}

.series-excerpt .wp-block-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
}

.series-excerpt .wp-block-button {
    margin: 0 auto;
}

.series-excerpt .wp-block-button__width-100 {
    width: auto !important;
    max-width: 100%;
}

.series-excerpt .wp-block-button__link {
    background: linear-gradient(90deg, var(--primary-color, #00E676), #00C853) !important;
    color: #000 !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}

.series-excerpt .wp-block-button__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 230, 118, 0.6);
    color: #000;
}

.series-excerpt hr.wp-block-separator {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
    height: 1px !important;
    border: none !important;
    margin: 3rem 0 !important;
    opacity: 1 !important;
}

.series-excerpt .wp-block-verse,
.series-excerpt pre {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2));
    border-left: 3px solid var(--primary-color, #00E676);
    border-radius: 4px;
    padding: 1.5rem;
    font-family: 'Inter', sans-serif;
    color: #ddd;
    line-height: 1.8;
    white-space: pre-wrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.series-excerpt .wp-block-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 5px;
    background: transparent;
    margin-bottom: 2rem;
}

.series-excerpt .wp-block-table td {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    color: #eee;
}

.series-excerpt .wp-block-table td:first-child {
    border-radius: 8px 0 0 8px;
    font-weight: 700;
    color: var(--primary-color, #00E676);
    width: 30%;
}

.series-excerpt .wp-block-table td:last-child {
    border-radius: 0 8px 8px 0;
}

.series-excerpt .wp-block-table tr:hover td {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.01);
    transition: 0.2s;
}

.series-excerpt .wp-block-table a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--primary-color, #00E676);
}

.series-excerpt .wp-block-button.is-style-outline .wp-block-button__link,
.series-excerpt .wp-block-button__link {
    background: var(--primary-color, #00E676) !important;
    border: none !important;
    color: #000 !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    font-size: 1.1rem !important;
    padding: 15px 40px !important;
    border-radius: 50px !important;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.series-excerpt .wp-block-button__link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(0, 230, 118, 0.8);
    background: #fff !important;
}

.series-excerpt .wp-block-spacer {
    display: none !important;
}

.anime-info-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 1.5rem !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.anime-info-list li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #ddd;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.anime-info-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.anime-info-list strong {
    color: var(--primary-color, #00E676);
    font-weight: 700;
    margin-right: 10px;
}

.donation-widget-container {
    background: linear-gradient(145deg, #0a0f0d, #050505);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    height: 340px;
    display: flex;
    flex-direction: column;
}

.donation-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.donation-period {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    width: 100%;
    display: block;
}

.donation-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.donation-stats .raised {
    color: #fff;
}

.donation-stats .goal {
    color: #888;
}

.progress-bar-bg {
    background: rgba(255, 255, 255, 0.05);
    height: 25px;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00E676, #00C853);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: width 1.5s cubic-bezier(0.1, 0.42, 0.41, 1);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.5);
    min-width: 35px;
}

.progress-label {
    color: #000;
    font-size: 0.75rem;
    font-weight: 950;
    padding-right: 10px;
}

.donation-stats,
.progress-bar-bg {
    margin-top: 1rem;
}

.donation-desc {
    font-size: 0.85rem;
    color: #888;
    margin: 1rem 0;
    line-height: 1.5;
    text-align: center;
    white-space: normal !important;
    width: 100%;
    display: block !important;
}

.donation-btn {
    display: block;
    background: var(--primary-color);
    color: #000;
    text-decoration: none !important;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.3);
    margin-top: auto;
}

.donation-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.home-widgets {
    margin: 2rem auto;
}

.home-widget-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.home-widget-area .widget {
    width: 100%;
}

.discord-widget-container {
    background: #0a0f0d;
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 340px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.discord-widget-container iframe {
    display: block;
    height: 100%;
    width: 100%;
}

.home-widget-area .widget-title {
    display: none;
}

.search-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.search-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    z-index: 999;
}

.search-overlay.active {
    height: 70px;
}

.search-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

.search-form-full {
    width: 100%;
}

.search-input {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    padding: 1rem 0;
    outline: none;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-close-btn {
    display: none;
}

@media (max-width: 768px) {
    .search-btn {
        margin-left: 0;
    }

    .search-overlay.active {
        height: 60px;
    }
}

.translation-widget-container {
    background: linear-gradient(145deg, #0a140f, #050505);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 340px;
    display: flex;
    flex-direction: column;
}

.translation-title {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-align: center;
}

.title-decor {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto 1rem;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-color);
}

.translation-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    width: 100%;
    overflow: hidden;
}

.translation-item {
    width: 100%;
    margin-bottom: 0;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.episode-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #e0e0e0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 200px;
}

.smart-date-badge {
    position: relative;
    font-size: 0.65rem;
    color: #aaa;
    margin-right: 5px;
    font-weight: 600;
    cursor: default;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 55px;
    height: 22px;
    /* Fixed height to ensure stability */
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-default {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    transition: opacity 0.2s;
    opacity: 1;
}

.smart-date-badge:hover .date-default {
    opacity: 0;
}

.date-hover {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    white-space: nowrap;
    background: #1a1a1a;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    color: #fff;
    transform: scale(0.95);
    transform-origin: right center;
}

.smart-date-badge:hover .date-hover {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    min-width: 100%;
}

.percent-badge {
    font-size: 0.7rem;
    font-weight: 900;
    padding: 1px 6px;
    border-radius: 4px;
    background: rgba(0, 230, 118, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(0, 230, 118, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 22px;
}

.percent-badge.done {
    background: var(--primary-color);
    color: #000;
}

.translation-progress-bg {
    background: rgba(255, 255, 255, 0.05);
    height: 6px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.translation-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00E676, #00b359);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.4);
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

.translation-progress-fill.done {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .translation-title {
        font-size: 1.5rem;
    }

    .episode-name {
        font-size: 1.1rem;
        max-width: 80%;
    }

    .translation-widget-container {
        height: auto;
        min-height: 340px;
    }
}

.wp-block-buttons {
    justify-content: center !important;
}

.wp-block-button.has-custom-width.wp-block-button__width-100 {
    width: auto !important;
    flex-basis: auto !important;
}

.wp-block-button__width-100 .wp-block-button__link {
    width: auto !important;
    display: inline-block !important;
}

.series-hero-container {
    position: relative;
    padding-top: 120px;
    padding-bottom: 4rem;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.series-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.4);
    transform: scale(1.1);
    z-index: 0;
}

.series-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 30, 0.5), #050505 100%);
    z-index: 1;
}

.series-content-wrapper {
    position: relative;
    z-index: 2;
}

.series-header-grid {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 3rem;
    align-items: start;
}

.series-poster-col {
    position: relative;
}

.poster-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1a1a1a;
}

.main-poster {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.series-info-col {
    color: #fff;
    padding-top: 0.5rem;
}

.series-meta-tags {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.quality {
    background: var(--primary-color, #00E676);
    color: #000;
}

.series-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.series-details {
    display: flex;
    gap: 1.5rem;
    color: #bbb;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.detail-item i {
    color: var(--primary-color, #00E676);
    margin-right: 0.4rem;
}

.series-excerpt {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    max-width: 900px;
}

.series-excerpt p {
    margin-bottom: 1.5rem;
}

.series-excerpt h2,
.series-excerpt h3 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.series-excerpt ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.tag-link {
    display: inline-block;
    color: #888;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.2s;
}

.tag-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
    .series-header-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 2rem;
    }

    .poster-card {
        max-width: 240px;
        margin: 0 auto;
    }

    .series-meta-tags {
        justify-content: center;
    }

    .series-details {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .series-title {
        font-size: 2.2rem;
    }
}

.btn-world-cloud-premium {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #00E676 0%, #00BFA5 100%) !important;
    color: #000 !important;
    padding: 14px 40px !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-icon {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.btn-world-cloud-premium:hover .btn-icon {
    transform: rotate(-10deg) scale(1.15);
}

.btn-world-cloud-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: 0.6s;
    pointer-events: none;
}

.btn-world-cloud-premium:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 230, 118, 0.4) !important;
}

.btn-world-cloud-premium:hover::before {
    left: 100%;
}

.btn-world-cloud-premium.n-button {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-world-cloud-premium.n-button:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(79, 172, 254, 0.4) !important;
}

.btn-world-cloud-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 100%;
    margin: 3rem 0;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.staff-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.staff-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.staff-card:hover::after {
    width: 100%;
}

.staff-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    font-weight: 800;
    opacity: 0.9;
}

.staff-name {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.staff-name a {
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.2s;
}

.staff-name a:hover {
    color: #fff;
    text-decoration: underline;
}

.anime-data-grid.wp-block-columns {
    display: flex !important;
    gap: 3rem;
    align-items: center;
    flex-wrap: nowrap;

    margin-bottom: 2rem;
}

.anime-data-grid .wp-block-column:first-child {
    flex: 0 0 300px !important;

    width: 300px !important;
}

.anime-data-grid .wp-block-column:first-child img {
    width: 100%;
    height: auto;
    display: block;
}

.anime-data-grid .wp-block-column:last-child {
    flex: 1;

}

@media (max-width: 768px) {
    .anime-data-grid.wp-block-columns {
        flex-direction: column;
        text-align: center;
    }
}

.project-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.project-search-container {
    position: relative;
    max-width: 300px;
    width: 100%;
}

.project-search-container input {
    width: 100%;
    padding: 10px 15px;
    padding-left: 35px;

    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.95rem;
    transition: 0.3s;
}

.project-search-container input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
    outline: none;
}

.project-status-filter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-divider {
    width: 2px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0.5rem;
}

.filter-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-btn,
.type-btn,
.reset-all-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #aaa;
    padding: 6px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.status-btn:hover,
.type-btn:hover,
.reset-all-btn:hover {
    border-color: #fff;
    color: #fff;
}

.status-btn.active,
.type-btn.active,
.reset-all-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    font-weight: 800;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.2);
}

@media (max-width: 600px) {
    .project-status-filter {
        flex-wrap: wrap;
        justify-content: center;
    }

    .project-header-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-search-container {
        max-width: 100%;
    }
}

.card-overlay {
    overflow: visible;

}

.card-title-wrapper {
    width: 100%;
    overflow: visible;
    white-space: normal;

}

.card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.3;
    font-size: 0.95rem;
    text-align: center;
}

.project-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0b1116;
    padding: 0;
    margin: 0;
    position: relative;

    padding-bottom: 2px;

    border: none !important;

}

.project-header-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);

    z-index: 10;
}

.project-header-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 1rem 2rem;
    background: transparent !important;
    white-space: nowrap;
}

.project-header-title::after {
    display: none;
}

.project-search-container {
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    padding-right: 2rem;
}

.project-search-container input {
    max-width: 180px;

    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 15px;
    color: #fff;
    transition: 0.3s;
}

.project-search-container input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.2);
    outline: none;
}

@media (max-width: 768px) {
    .project-header-top {
        flex-direction: column;
        align-items: stretch;

        padding: 1rem;
        gap: 1rem;
    }

    .project-header-title {
        padding: 0;
        justify-content: center;
    }

    .project-search-container {
        padding-right: 0;
        justify-content: center;
    }

    .project-search-container input {
        max-width: 100%;
    }
}

.project-card-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 2/3;

}

.project-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card-clean:hover .project-card-image-wrapper img {
    transform: scale(1.1);
}

.project-card-bottom {
    padding-top: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.project-card-title-static {
    margin: 0;
    font-size: 0.95rem;
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-card-clean:hover .project-card-bottom {
    opacity: 0;
    transform: translateY(-5px);
}

.project-card-clean:hover .card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.donation-premium-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.donation-qr-wrapper {
    flex: 0 0 280px;
    position: relative;
}

.donation-qr-wrapper img {
    width: 100%;
    border-radius: 18px;
    border: 4px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.15);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.donation-premium-card:hover .donation-qr-wrapper img {
    transform: rotate(-3deg) scale(1.05);
}

.donation-content h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.donation-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.donation-info-list li {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.donation-info-list li strong {
    color: var(--primary-color);
}

.pix-copy-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed rgba(0, 230, 118, 0.4);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pix-copy-box:hover {
    background: rgba(0, 230, 118, 0.08);
    border-style: solid;
    transform: translateY(-2px);
}

.pix-key-text {
    font-family: 'Courier New', monospace;
    color: #fff;
    font-size: 0.95rem;
    word-break: break-all;
}

.pix-copy-icon {
    background: var(--primary-color);
    color: #000;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

@media (max-width: 850px) {
    .donation-premium-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .donation-qr-wrapper {
        flex: 0 0 auto;
        width: 200px;
    }

    .donation-info-list li {
        justify-content: center;
    }

    .pix-copy-box {
        flex-direction: column;
        gap: 10px;
    }
}

.home-widgets {
    margin: 3rem auto;
    width: 100%;
}


.home-widget-area .widget:hover {
    border-color: rgba(0, 230, 118, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    display: inline-block;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    border-radius: 2px;
}

@media (max-width: 991px) {
    .home-widget-area {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-widget-area {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .home-widget-area .widget {
        padding: 1.2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}

.donation-widget-container {
    padding: 1.5rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 230, 118, 0.1);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 340px;
    display: flex;
    flex-direction: column;
}

.donation-title {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.5rem !important;
    text-transform: uppercase;
    color: var(--primary-color) !important;
    letter-spacing: 1px;
    display: block !important;
}

.donation-period {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.8rem;
    font-weight: 600;
    width: 100%;
    display: block;
}

.donation-stats {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 900;
}

.donation-stats .raised {
    color: #fff;
}

.donation-stats .goal {
    color: #888;
}

.progress-bar-bg {
    background: rgba(255, 255, 255, 0.05) !important;
    height: 28px !important;
    border-radius: 50px !important;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
    display: block !important;
    width: 100%;
}

.progress-bar-fill {
    height: 100% !important;
    background: var(--primary-color) !important;
    border-radius: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    transition: width 1.5s cubic-bezier(0.1, 0.42, 0.41, 1);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.5);
    min-width: 40px;
}

.progress-label {
    color: #000 !important;
    font-size: 0.8rem;
    font-weight: 950;
    padding-right: 12px;
    pointer-events: none;
    line-height: 1;
}

.donation-desc {
    font-size: 0.9rem;
    color: #888;
    margin: 1rem 0;
    line-height: 1.4;
    text-align: center;
    white-space: normal !important;
}

.donation-btn {
    display: block;
    background: var(--primary-color) !important;
    color: #000 !important;
    text-decoration: none !important;
    padding: 14px 20px !important;
    border-radius: 50px !important;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.3);
    margin-top: auto !important;
}

.donation-btn:hover {
    background: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.translation-item {
    margin-bottom: 0;
    width: 100%;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
    font-size: 0.9rem;
}

.episode-name {
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 200px;
}

.percent-badge {
    font-size: 0.75rem;
    padding: 2px 4px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    min-width: 55px;
    text-align: center;
    display: inline-block;
}

.percent-badge.done {
    background: var(--primary-color);
    color: #000;
    font-weight: 800;
}

.translation-progress-bg {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.translation-progress-fill {
    height: 100%;
    border-radius: 10px;
}

.translation-progress-fill.done {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
}

.translation-progress-fill.progress {
    background: #66BB6A;
    box-shadow: 0 0 5px rgba(102, 187, 106, 0.3);
}

.translation-progress-fill.start {
    background: #2E7D32;
    opacity: 0.9;
}

.home-widget-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.home-widget-area .widget {
    width: 100%;
}

.discord-widget-container {
    background: #0a0f0d;
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 12px;
    overflow: hidden;
    height: 340px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.discord-widget-container iframe {
    display: block;
    height: 100%;
    width: 100%;
}

.translation-widget-container {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 230, 118, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 340px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .translation-widget-container {
        height: auto;
        min-height: 340px;
    }
}

@media (max-width: 991px) {
    .home-widget-area {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .home-widget-area {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-widget-area .widget {
        min-width: 100%;
        padding: 1.2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}

.wp-block-media-text.is-stacked-on-mobile {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    padding: 1.2rem !important;
    margin-bottom: 1.5rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.wp-block-media-text.is-stacked-on-mobile:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(0, 230, 118, 0.4) !important;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.wp-block-media-text.is-stacked-on-mobile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.wp-block-media-text.is-stacked-on-mobile:hover::after {
    width: 100%;
}

.wp-block-media-text__media img {
    border-radius: 8px !important;
    width: 100% !important;
    height: auto;
}

.wp-block-media-text__content {
    padding: 1rem !important;
}

.wp-block-media-text__content strong {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.wp-block-media-text__content p {
    color: #fff;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .wp-block-media-text.is-stacked-on-mobile {
        text-align: center;
    }

    .wp-block-media-text__content {
        text-align: center;
    }

    .wp-block-media-text__content .has-large-font-size,
    .wp-block-media-text__content .has-x-large-font-size {
        font-size: 1.3rem !important;
        line-height: 1.4;
    }
}

/* Staff Page Grid Layout */
.page-id-3842 .entry-content {
    display: block !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.page-id-3842 .entry-content::after {
    display: none;
}

.page-id-3842 .wp-block-media-text.is-stacked-on-mobile {
    margin-bottom: 0 !important;
    height: 100%;
}

.page-id-3842 .wp-block-spacer {
    display: none;
}

@media (max-width: 900px) {
    .page-id-3842 .entry-content {
        grid-template-columns: 1fr;
    }
}

/* --- NEW CUSTOM STAFF GRID --- */
.world-staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 1rem 0;
    width: 100%;
}

.world-staff-grid>p {
    display: none;
}

@media (max-width: 991px) {
    .world-staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.world-staff-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 230, 118, 0.1);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.world-staff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 230, 118, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.world-staff-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 230, 118, 0.1);
}

.world-staff-card:hover::before {
    opacity: 1;
}

.staff-avatar-wrapper {
    width: 140px;
    height: 140px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.staff-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.world-staff-card:hover .staff-avatar {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.3);
    transform: scale(1.05);
}

.staff-info {
    position: relative;
    z-index: 2;
    width: 100%;
}

.staff-nick {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.staff-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    transform: translateY(-3px);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.4);
}

.staff-role-divider {
    height: 2px;
    width: 40px;
    background: var(--primary-color);
    margin: 1rem auto;
    border-radius: 2px;
    opacity: 0.5;
    transition: width 0.3s ease;
}

.world-staff-card:hover .staff-role-divider {
    width: 80px;
    opacity: 1;
    box-shadow: 0 0 10px var(--primary-color);
}

.staff-role-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Mobile Adjustments for Grid */
@media (max-width: 600px) {
    .world-staff-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Neon Punk Logo */
.footer-logo-neon {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff !important;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #00ff00,
        0 0 40px #00ff00,
        0 0 80px #00ff00;
    transition: all 0.3s ease;
    animation: neon-burn 1.5s infinite alternate, neon-flicker 4s infinite;
}

.footer-logo-neon:hover {
    color: #ccff90 !important;
}

@keyframes neon-burn {
    0% {
        text-shadow:
            0 0 4px #fff,
            0 0 10px #fff,
            0 0 18px #00e676,
            0 0 38px #00e676,
            0 0 70px #00e676;
    }

    100% {
        text-shadow:
            0 0 2px #fff,
            0 0 8px #fff,
            0 0 15px #00c853,
            0 0 30px #00c853,
            0 0 60px #00c853;
    }
}

@keyframes neon-flicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        opacity: 1;
        text-shadow:
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 20px #00ff00,
            0 0 40px #00ff00,
            0 0 80px #00ff00;
    }

    20%,
    24%,
    55% {
        opacity: 0.5;
        text-shadow: none;
        color: #333 !important;
    }
}