


:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #c9a959;
    --highlight-color: #ff6b35;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-muted: #6c757d;
    --bg-dark: #0f0f1a;
    --bg-card: #1a1a2e;
    --bg-hover: #252542;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-color) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input {
    border: none;
    outline: none;
    font-family: inherit;
}


.main-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-logo-container {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color), #f0d68a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    transition: transform var(--transition-normal);
}

.brand-logo-container:hover {
    transform: scale(1.05);
}

.brand-link {
    text-decoration: none;
}

#content {
    max-width: 1400px;
    margin: 90px auto 40px;
    padding: 0 20px;
    width: 100%;
}


.top-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 14px;
    transition: all var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--accent-color);
    color: var(--primary-color);
}


.search {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    position: relative;
}

.search form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 5px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.search form:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(201, 169, 89, 0.3);
}

.search input[type="text"] {
    flex: 1;
    background: transparent;
    padding: 12px 20px;
    color: var(--text-primary);
    font-size: 15px;
    border-radius: var(--radius-xl);
}

.search input[type="text"]::placeholder {
    color: var(--text-muted);
}

.search button {
    background: linear-gradient(135deg, var(--accent-color), #e0c070);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 89, 0.4);
}


.bd {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin: 25px 0;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.bd_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid var(--accent-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.bd_title b {
    font-weight: 700;
}


ul#nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

ul#nav li {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 8px 16px;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

ul#nav li:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-color);
}

ul#nav li.on {
    background: linear-gradient(135deg, var(--accent-color), #e0c070);
}

ul#nav li a {
    color: var(--text-primary);
    font-size: 14px;
    display: block;
}

ul#nav li.on a {
    color: var(--primary-color);
    font-weight: 600;
}


ul#list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    width: 100%;
}

ul#list li {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
    position: relative;
}

ul#list li:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 169, 89, 0.3);
}

ul#list li a {
    display: block;
    position: relative;
}

ul#list li img {
    width: 100%;
    height: auto;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: transform var(--transition-normal);
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.08));
    display: block !important;
}

ul#list li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 2s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

ul#list li:hover img {
    transform: scale(1.05);
}

ul#list li span {
    display: block;
    padding: 12px 10px;
    font-size: 14px;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

ul#list li em {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--highlight-color), #ff8c5a);
    color: #fff;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    z-index: 10;
}

ul#list li em b {
    color: #fff;
}


.detail-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-top: 20px;
}

.detail-poster {
    position: relative;
}

.detail-poster img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.08));
    display: block !important;
    opacity: 1 !important;
}

.detail-poster .play-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 100px;
}

.detail-poster .play-btn:hover {
    transform: translateX(-50%) scale(1.08);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.7);
    background: linear-gradient(135deg, #ff8c5a, #ff6b35);
}

.detail-poster .play-btn i {
    font-size: 16px;
    animation: pulse-icon 2s infinite;
}

.detail-poster .play-btn span {
    display: inline-block;
    line-height: 1;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.detail-info ul {
    list-style: none;
}

.detail-info li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.detail-info li:last-child {
    border-bottom: none;
}

.detail-info strong {
    color: var(--accent-color);
    min-width: 90px;
}

.detail-score {
    color: var(--highlight-color);
    font-weight: 700;
    font-size: 18px;
}


.heart-rating {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 8px;
    margin-left: 10px;
}

.heart-rating input {
    display: none;
}

.heart-rating label {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.heart-rating label:hover,
.heart-rating label:hover ~ label,
.heart-rating input:checked ~ label {
    color: #FF1493;
    text-shadow: 0 0 15px rgba(255, 20, 147, 0.8), 0 0 30px rgba(255, 20, 147, 0.4);
    transform: scale(1.1);
}

.heart-rating input:checked + label:hover,
.heart-rating input:checked + label:hover ~ label,
.heart-rating input:checked ~ label {
    color: #FF1493;
    text-shadow: 0 0 15px rgba(255, 20, 147, 0.8), 0 0 30px rgba(255, 20, 147, 0.4);
}


.vote-buttons {
    display: flex;
    gap: 12px;
    margin-left: 10px;
}

.vote-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.up-vote {
    border-color: rgba(64, 204, 146, 0.5);
}

.up-vote:hover {
    background: linear-gradient(135deg, rgba(64, 204, 146, 0.3), rgba(64, 204, 146, 0.2));
    border-color: #40CC92;
    box-shadow: 0 0 20px rgba(64, 204, 146, 0.4);
    transform: translateY(-2px);
}

.up-vote i {
    color: #40CC92;
}

.down-vote {
    border-color: rgba(255, 152, 0, 0.5);
}

.down-vote:hover {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.3), rgba(255, 152, 0, 0.2));
    border-color: #FF9800;
    box-shadow: 0 0 20px rgba(255, 152, 0, 0.4);
    transform: translateY(-2px);
}

.down-vote i {
    color: #FF9800;
}

.vote-btn span {
    font-weight: 700;
    min-width: 20px;
}

.rating-actions {
    flex-wrap: wrap;
    gap: 15px !important;
    align-items: center;
}


.play-source-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.play-source-tabs li {
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.play-source-tabs li:hover {
    background: rgba(255, 255, 255, 0.15);
}

.play-source-tabs li.hsc {
    background: linear-gradient(135deg, var(--accent-color), #e0c070);
}

.play-source-tabs li.hsc a {
    color: var(--primary-color);
    font-weight: 700;
}

.play_num_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.play_num_list.show {
    display: grid;
}

.play_num_list.hide {
    display: none;
}

.play_num_list li {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    text-align: center;
    transition: all var(--transition-fast);
}

.play_num_list li:hover {
    background: rgba(201, 169, 89, 0.3);
    transform: translateY(-2px);
}

.play_num_list li a {
    display: block;
    padding: 10px;
    color: var(--text-primary);
    font-size: 13px;
}

.play_num_list li.hsc {
    background: linear-gradient(135deg, var(--highlight-color), #ff8c5a);
}

.play_num_list li.hsc a {
    color: #fff;
    font-weight: 700;
}


.bf-h {
    width: 100%;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
}

.player-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.page {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 30px 20px;
    flex-wrap: wrap;
}

.page a {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    transition: all var(--transition-fast);
    border: 1px solid var(--border-color);
}

.page a:hover {
    background: rgba(201, 169, 89, 0.3);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.page a[style*="pointer-events: none"] {
    opacity: 0.5;
    cursor: not-allowed;
}


.qa-comment-wrap {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-top: 20px;
    border: 1px solid var(--border-color);
}

.qa-list {
    list-style: none;
}

.qa-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.qa-item:last-child {
    border-bottom: none;
}

.question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 600;
}

.question .qa-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #40CC92, #2aa876);
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    flex-shrink: 0;
}

.answer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-left: 40px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.answer .qa-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #FF9800, #e08400);
    border-radius: 50%;
    color: #fff;
    font-size: 11px;
    font-style: normal;
    position: absolute;
    left: 0;
    flex-shrink: 0;
}

.answer {
    position: relative;
}

.link {
    color: var(--accent-color);
    transition: all var(--transition-fast);
}

.link:hover {
    color: var(--highlight-color);
    text-decoration: underline;
}

.review-content {
    font-style: italic;
    color: var(--text-secondary);
}


.site-footer-container {
    background: rgba(15, 15, 26, 0.95);
    border-top: 1px solid var(--border-color);
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
}

.footer-nav-links {
    margin-bottom: 20px;
}

.footer-nav-links a {
    color: var(--text-secondary);
    margin: 0 10px;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-nav-links a:hover {
    color: var(--accent-color);
}

.footer-nav-links span {
    color: var(--border-color);
}

.footer-notice-text {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 15px;
}

.footer-copyright-info {
    color: var(--text-muted);
    font-size: 13px;
}

.back-to-top-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #e0c070);
    color: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    z-index: 999;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(201, 169, 89, 0.4);
    transition: all var(--transition-fast);
}

.back-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(201, 169, 89, 0.6);
}


.floating-tools-wrapper {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 998;
}

.floating-tools-wrapper li {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.floating-tools-wrapper li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.floating-tools-wrapper a {
    color: var(--text-secondary);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.floating-tools-wrapper a:hover {
    color: var(--accent-color);
}




@media (max-width: 1024px) {
    ul#list {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }
    
    .detail-container {
        grid-template-columns: 240px 1fr;
        gap: 20px;
    }
    
    .play_num_list {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }
}


@media (max-width: 767px) {
    .main-header-wrapper {
        padding: 0 15px;
        height: 60px;
    }
    
    .brand-logo-container {
        font-size: 22px;
    }
    
    .top-nav {
        gap: 15px;
    }
    
    .nav-links {
        gap: 5px;
    }
    
    .nav-links a {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    #content {
        margin-top: 75px;
        padding: 0 15px;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        max-width: 100%;
    }
    
    .bd {
        padding: 15px;
        margin: 15px 0;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-all;
    }
    
    .bd_title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    ul#list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    ul#list li {
        border-radius: var(--radius-sm);
    }
    
    ul#list li img {
        width: 100%;
        height: auto;
        aspect-ratio: 2/3;
        object-fit: cover;
        display: block !important;
    }
    
    ul#list li span {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    ul#list li em {
        top: 6px;
        right: 6px;
        padding: 3px 8px;
        font-size: 11px;
    }
    
    .detail-container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .detail-poster {
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
    }

    .detail-poster img {
        margin: 0 auto;
    }
    
    .detail-info {
        text-align: left;
    }

    .detail-info li {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 8px;
        padding: 8px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 14px;
        flex-wrap: wrap !important;
        white-space: normal !important;
        overflow: visible;
        width: 100%;
    }

    .detail-info li strong {
        min-width: auto;
        flex-shrink: 0 !important;
        color: var(--accent-color);
    }

    .detail-info li a,
    .detail-info li span {
        display: inline !important;
        white-space: normal !important;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        flex: 1;
        margin: 0;
    }

    .bd {
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
    }
    
    .rating-actions {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .detail-poster .play-btn {
        padding: 7px 14px;
        font-size: 11px;
        min-width: 95px;
        gap: 4px;
    }
    
    .detail-poster .play-btn i {
        font-size: 14px;
    }
    
    .heart-rating {
        justify-content: center;
    }
    
    .heart-rating label {
        font-size: 32px;
    }
    
    .vote-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .vote-btn {
        flex: 1;
        max-width: 140px;
        justify-content: center;
    }
    
    .play_num_list {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    }
    
    .bf-h {
        height: auto;
    }
    
    .player-wrapper {
        padding-bottom: 56.25%;
    }
    
    .floating-tools-wrapper {
        right: 15px;
        bottom: 80px;
    }
    
    .floating-tools-wrapper li {
        width: 40px;
        height: 40px;
    }
    
    .back-to-top-btn {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
}


@media (max-width: 480px) {
    .brand-logo-container {
        font-size: 18px;
    }
    
    .search {
        max-width: 100%;
    }
    
    .search input[type="text"] {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .search button {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .bd {
        padding: 12px;
    }
    
    .bd_title {
        font-size: 16px;
        padding-left: 10px;
    }
    
    ul#nav {
        gap: 6px;
    }
    
    ul#nav li {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    ul#list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    ul#list li {
        margin: 0;
    }
    
    .detail-info li {
        font-size: 13px;
        flex-direction: column;
        gap: 4px;
    }
    
    .detail-info strong {
        min-width: auto;
    }
    
    .qa-comment-wrap {
        padding: 15px;
    }
    
    .question {
        font-size: 14px;
    }
    
    .answer {
        font-size: 13px;
        padding-left: 35px;
    }
    
    .page {
        padding: 20px 10px;
    }
    
    .page a {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .footer-nav-links a {
        display: inline-block;
        margin: 5px 8px;
    }
    
    .footer-notice-text,
    .footer-copyright-info {
        font-size: 12px;
    }
}


@media (max-width: 360px) {
    html {
        font-size: 14px;
    }
    
    ul#list {
        grid-template-columns: 1fr;
    }
    
    .play_num_list {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    }
}


.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

.margin-0 {
    margin: 0;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}


::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}
