.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease;
}

.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.search-input {
    width: 100%;
    padding: 14px 140px 14px 20px;
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 8px;
    font-size: 0.95em;
    background: rgba(15, 15, 35, 0.8);
    color: #e0e0e0;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.3s ease;
    outline: none;
}

    .search-input::placeholder {
        color: rgba(255, 255, 255, 0.3);
    }

    .search-input:focus {
        border-color: #00ff9d;
        box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
        background: rgba(15, 15, 35, 0.95);
    }

.search-wrapper .search-input {
    padding-left: 160px;
}

.search-select {
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 36px 10px 12px;
    background: rgba(15, 15, 35, 0.8);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 8px;
    color: #00ff9d;
    font-weight: 600;
    font-size: 0.85em;
    font-family: 'JetBrains Mono', monospace;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease;
    background-image:
        linear-gradient(45deg, transparent 50%, #00ff9d 50%),
        linear-gradient(135deg, #00ff9d 50%, transparent 50%),
        linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0));
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px),
        100% 0;
    background-size:
        6px 6px,
        6px 6px,
        2.5em 100%;
    background-repeat: no-repeat;
}

.search-select:hover,
.search-select:focus {
    border-color: #00ff9d;
    box-shadow: 0 0 18px rgba(0, 255, 157, 0.2);
    background: rgba(15, 15, 35, 0.95);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 24px;
    background: rgba(0, 255, 157, 0.15);
    color: #00ff9d;
    border: 1px solid #00ff9d;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.85em;
    font-family: 'JetBrains Mono', monospace;
}

    .search-btn:hover {
        background: rgba(0, 255, 157, 0.25);
        box-shadow: 0 0 20px rgba(0, 255, 157, 0.4);
    }

.clear-btn {
    padding: 12px 24px;
    background: rgba(255, 75, 75, 0.1);
    color: #ff4b4b;
    border: 1px solid rgba(255, 75, 75, 0.5);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.85em;
    font-family: 'JetBrains Mono', monospace;
}

    .clear-btn:hover {
        background: rgba(255, 75, 75, 0.2);
        border-color: #ff4b4b;
        box-shadow: 0 0 20px rgba(255, 75, 75, 0.3);
    }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease;
}

/* Skinset specific grid layout - 4 columns, 3 rows */
body[data-page="skinset"] .grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.item {
    background: rgba(15, 15, 35, 0.6);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(0, 255, 157, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .item.excepted {
        opacity: 0.5;
        filter: grayscale(50%);
        border-color: rgba(255, 75, 75, 0.3);
    }

    .item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #00ff9d, transparent);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .item:hover::before {
        transform: scaleX(1);
    }

    .item:hover {
        transform: translateY(-8px);
        border-color: #00ff9d;
        box-shadow: 0 8px 30px rgba(0, 255, 157, 0.3);
        background: rgba(15, 15, 35, 0.85);
    }

.item-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .item-image-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        cursor: pointer;
    }

.item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 212, 255, 0.3));
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

.item:hover img {
    transform: scale(1.08);
}

.item-name {
    font-size: 1em;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 12px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.5px;
}

.button-group {
    display: flex;
    gap: 8px;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.item:hover .button-group {
    opacity: 1;
    transform: translateY(0);
}

.view-btn, .download-btn {
    display: inline-block;
    padding: 9px 18px;
    color: #fff;
    border-radius: 6px;
    font-size: 0.8em;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    font-family: 'JetBrains Mono', monospace;
    border: 1px solid;
}

.view-btn {
    background: rgba(0, 212, 255, 0.15);
    border-color: #00d4ff;
    color: #00d4ff;
}

    .view-btn:hover {
        background: rgba(0, 212, 255, 0.25);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    }

.download-btn {
    background: rgba(0, 255, 157, 0.15);
    border-color: #00ff9d;
    color: #00ff9d;
}

    .download-btn:hover {
        background: rgba(0, 255, 157, 0.25);
        box-shadow: 0 0 20px rgba(0, 255, 157, 0.4);
    }

    .view-btn.disabled, .download-btn.disabled {
        background: rgba(100, 100, 100, 0.2);
        border-color: rgba(150, 150, 150, 0.3);
        color: rgba(150, 150, 150, 0.5);
        cursor: not-allowed;
        opacity: 0.5;
    }

        .view-btn.disabled:hover, .download-btn.disabled:hover {
            box-shadow: none;
            transform: none;
            background: rgba(100, 100, 100, 0.2);
        }

.paging {
    text-align: center;
    margin-top: 50px;
    animation: fadeIn 1s ease;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

    .paging a, .paging span {
        display: inline-block;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: 6px;
        margin: 0 4px;
        font-weight: 600;
        transition: all 0.3s ease;
        min-width: 40px;
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.9em;
    }

    .paging a {
        background: rgba(15, 15, 35, 0.6);
        color: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(0, 255, 157, 0.2);
    }

        .paging a:hover {
            background: rgba(15, 15, 35, 0.8);
            border-color: #00ff9d;
            color: #00ff9d;
            box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
        }

    .paging span {
        background: rgba(0, 255, 157, 0.2);
        color: #00ff9d;
        border: 1px solid #00ff9d;
        box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
    }

.page-jump {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(15, 15, 35, 0.6);
    border: 1px solid rgba(0, 255, 157, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    margin: 0;
}

.page-jump-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85em;
    font-family: 'JetBrains Mono', monospace;
    white-space: nowrap;
}

.page-jump-input {
    width: 60px;
    padding: 6px 10px;
    background: rgba(15, 15, 35, 0.8);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 6px;
    color: #e0e0e0;
    font-size: 0.9em;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    outline: none;
    transition: all 0.3s ease;
}

    .page-jump-input:focus {
        border-color: #00ff9d;
        box-shadow: 0 0 15px rgba(0, 255, 157, 0.2);
    }

.page-jump-btn {
    padding: 6px 16px;
    background: rgba(0, 255, 157, 0.15);
    color: #00ff9d;
    border: 1px solid #00ff9d;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85em;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .page-jump-btn:hover {
        background: rgba(0, 255, 157, 0.25);
        box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
    }

.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 255, 157, 0.2);
    color: #00ff9d;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #00ff9d;
    font-family: 'JetBrains Mono', monospace;
}

    .badge.excepted-badge {
        background: rgba(255, 75, 75, 0.2);
        color: #ff4b4b;
        border-color: #ff4b4b;
    }

.result-info {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 0.95em;
    font-family: 'JetBrains Mono', monospace;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: rgba(255, 255, 255, 0.6);
}

    .empty-state h2 {
        font-size: 1.8em;
        margin-bottom: 10px;
        color: #00ff9d;
        font-family: 'JetBrains Mono', monospace;
    }

    .empty-state p {
        font-size: 1em;
        font-family: 'JetBrains Mono', monospace;
    }

.tooltip {
    position: fixed;
    background: rgba(15, 15, 35, 0.95);
    color: #e0e0e0;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.8em;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 9999;
    white-space: nowrap;
    border: 1px solid rgba(0, 255, 157, 0.3);
    font-family: 'JetBrains Mono', monospace;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.visitor-stats {
    text-align: center;
    margin-bottom: 25px;
    padding: 12px 24px;
    background: rgba(15, 15, 35, 0.6);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    display: inline-block;
    border: 1px solid rgba(0, 255, 157, 0.2);
}

.stat-item {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85em;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
}

    .stat-item strong {
        color: #00ff9d;
        font-size: 1.1em;
        font-weight: 700;
    }

.stat-divider {
    margin: 0 12px;
    color: rgba(0, 212, 255, 0.5);
}

.disclaimer {
    text-align: center;
    margin-bottom: 25px;
    animation: fadeIn 1s ease;
}

    .disclaimer span {
        display: inline-block;
        padding: 10px 20px;
        background: rgba(15, 15, 35, 0.6);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9em;
        font-weight: 500;
        border: 1px solid rgba(0, 255, 157, 0.2);
        letter-spacing: 0.5px;
        font-family: 'JetBrains Mono', monospace;
    }

.image-banner {
    margin-top: 80px;
    padding: 30px 0;
    overflow-x: hidden;
    position: relative;
    animation: fadeInUp 1s ease;
}

.banner-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 40px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 255, 157, 0.3) transparent;
    cursor: grab;
    cursor: -webkit-grab;
}

    .banner-track::-webkit-scrollbar {
        height: 8px;
    }

    .banner-track::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 4px;
    }

    .banner-track::-webkit-scrollbar-thumb {
        background: rgba(0, 255, 157, 0.3);
        border-radius: 4px;
    }

        .banner-track::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 255, 157, 0.5);
        }

.banner-card {
    flex: 0 0 auto;
    background: rgba(15, 15, 35, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: all 0.4s ease;
    width: 400px;
    height: 280px;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

    .banner-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
        border-color: #00d4ff;
    }

    .banner-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
        filter: brightness(0.9);
    }

    .banner-card:hover img {
        transform: scale(1.08);
        filter: brightness(1);
    }

.banner-track.dragging {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.banner-track, .banner-track * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .banner-track img {
        -webkit-user-drag: none;
        user-drag: none;
    }

.banner-title {
    text-align: center;
    font-size: 1.4em;
    font-weight: 600;
    margin-top: 100px;
    margin-bottom: 25px;
    color: #00ff9d;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
}

.side-buttons {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.side-btn {
    display: inline-block;
    background: rgba(15, 15, 35, 0.8);
    color: #00ff9d;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(0, 255, 157, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85em;
}

    .side-btn:hover {
        transform: translateX(-5px);
        box-shadow: 0 0 20px rgba(0, 255, 157, 0.4);
        border-color: #00ff9d;
        background: rgba(15, 15, 35, 0.95);
    }

.support-section {
    text-align: center;
    margin: 80px 0 60px;
    animation: fadeInUp 1s ease;
}

.support-box {
    display: inline-block;
    background: rgba(15, 15, 35, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 40px 60px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.support-title {
    font-size: 1.6em;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 15px;
    font-family: 'JetBrains Mono', monospace;
}

.support-description {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

.support-main-btn {
    display: inline-block;
    padding: 16px 45px;
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    border: 1px solid #00d4ff;
    border-radius: 8px;
    font-size: 1.05em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'JetBrains Mono', monospace;
}

    .support-main-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
        background: rgba(0, 212, 255, 0.25);
    }

/* Skinset specific styles */
.skinset-header {
    margin-bottom: 20px;
    text-align: center;
}

.skinset-name {
    font-size: 1.1em;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 8px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.5px;
}

.skinset-owner {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'JetBrains Mono', monospace;
}

.skin-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 157, 0.1);
}

    .skin-slots.has-weapon {
        grid-template-columns: repeat(4, 1fr);
    }

.skin-slot {
    position: relative;
    aspect-ratio: 1;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .skin-slot:hover {
        border-color: #00d4ff;
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    }

.skin-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 212, 255, 0.3));
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

    .skin-slot:hover .skin-image {
        transform: scale(1.05);
    }

.slot-label {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #e0e0e0;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.65em;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .skin-slot:hover .slot-label {
        opacity: 1;
    }

.weapon-slot {
    border-color: rgba(255, 193, 7, 0.3);
}

    .weapon-slot:hover {
        border-color: #ffc107;
        box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
    }

.armor-slot {
    border-color: rgba(0, 123, 255, 0.3);
}

    .armor-slot:hover {
        border-color: #007bff;
        box-shadow: 0 0 15px rgba(0, 123, 255, 0.3);
    }

.helmet-slot {
    border-color: rgba(220, 53, 69, 0.3);
}

    .helmet-slot:hover {
        border-color: #dc3545;
        box-shadow: 0 0 15px rgba(220, 53, 69, 0.3);
    }

.cloak-slot {
    border-color: rgba(108, 117, 125, 0.3);
}

    .cloak-slot:hover {
        border-color: #6c757d;
        box-shadow: 0 0 15px rgba(108, 117, 125, 0.3);
    }

@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 16px;
    }
    
    /* Skinset mobile layout - 2 columns */
    body[data-page="skinset"] .grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .search-container {
        flex-direction: column;
    }

    .search-wrapper {
        max-width: 100%;
    }

    .visitor-stats {
        font-size: 0.8em;
        padding: 10px 15px;
    }

    .stat-divider {
        margin: 0 8px;
    }

    .support-box {
        padding: 25px 30px;
    }

    .support-title {
        font-size: 1.3em;
    }

    .support-description {
        font-size: 0.9em;
    }

    .support-main-btn {
        padding: 14px 35px;
        font-size: 0.95em;
    }

    .banner-title {
        font-size: 1.2em;
    }

    .paging {
        flex-direction: column;
        gap: 15px;
    }

    .page-jump {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .page-jump-input {
        width: 50px;
    }

    .skin-slots {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

        .skin-slots.has-weapon {
            grid-template-columns: repeat(2, 1fr);
        }
}

/* Algorithm Info Section Styles */
.algorithm-info {
    margin: 30px 0 40px 0;
    animation: fadeIn 0.8s ease;
}

.info-card {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9), rgba(25, 25, 45, 0.8));
    border: 1px solid rgba(0, 255, 157, 0.2);
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(0, 255, 157, 0.4);
    box-shadow: 0 12px 40px rgba(0, 255, 157, 0.1);
    transform: translateY(-2px);
}

.info-card h3 {
    color: #00ff9d;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}

.info-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.info-card li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
    font-size: 0.9em;
}

.info-card li:before {
    content: "▶";
    color: #00ff9d;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.8em;
}

.info-card li strong {
    color: #00ff9d;
    font-weight: 600;
}

.info-card .highlight {
    background: linear-gradient(90deg, rgba(0, 255, 157, 0.1), rgba(0, 255, 157, 0.05));
    border-left: 3px solid #00ff9d;
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-style: italic;
}

.info-card .notice {
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
    border-left: 3px solid #ffc107;
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85em;
    font-style: italic;
}

.download-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 6, 22, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.download-modal.hidden {
    display: none;
}

.download-modal__content {
    background: #0b1224;
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 16px;
    padding: 24px 28px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    position: relative;
}

.download-modal__content h3 {
    margin-bottom: 10px;
    color: #00ff9d;
    font-size: 1.2em;
}

.download-modal__content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    font-size: 0.95em;
}

.download-countdown {
    font-weight: 600;
    color: #ffffff;
}

.download-ad {
    margin: 15px auto;
    min-height: 250px;
    min-width: 300px;
    width: 100%;
    display: block;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.download-modal__button {
    width: 100%;
    padding: 12px 18px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #00ff9d, #00bfff);
    color: #02111a;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin-top: 10px;
}

.download-modal__button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.download-modal__link {
    margin-top: 12px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.9em;
}

.download-modal__link:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
}
