<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary-color: #ffffff;
    --secondary-color: #333333;
    --accent-color: #4a90e2;
    --background-color: #1a1a1a;
    --background-color-2: #272727;
    --text-color: #ffffff;
    --navbar-bg: rgba(26, 26, 26, 0.95);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}


.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--navbar-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}


.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 1;
}

.hero-section {
    height: 50vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    margin-top: 60px;
    padding: 0 2rem;
}

.version-slider {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
    gap: 10px;
}

.version-left, .version-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: flex 0.5s ease;
    height: 100%;
}

.version-left {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.version-right {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.version-left:hover {
    flex: 1.2;
}

.version-right:hover {
    flex: 1.2;
}

.version-left::after, .version-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    border-radius: inherit;
    transition: opacity 0.3s ease;
}

.version-left:hover::after, .version-right:hover::after {
    opacity: 0;
}

.version-left img, .version-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.project-title {
    position: absolute;
    font-size: 5.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    text-shadow: 0 0 30px rgba(74, 144, 226, 0.5),
                 0 0 60px rgba(74, 144, 226, 0.3);
    z-index: 20;
    top: 0%;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 0 0 30px rgba(74, 144, 226, 0.5),
                     0 0 60px rgba(74, 144, 226, 0.3);
    }
    to {
        text-shadow: 0 0 40px rgba(74, 144, 226, 0.7),
                     0 0 80px rgba(74, 144, 226, 0.5);
    }
}

.project-description {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--primary-color);
    z-index: 20;
    max-width: 800px;
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.project-description p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.main-nav {
    padding: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-button {
    padding: 1rem 2rem;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.server-stats {
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    background: var(--glass-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.3);
}

.stat-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stat-item p {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.discord-widget-container {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
}

.discord-widget {
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background: var(--glass-bg);
    padding: 15px;
    border: 1px solid var(--glass-border);
}

.particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.section-divider {
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(74, 144, 226, 0.2),
        rgba(74, 144, 226, 0.5),
        rgba(74, 144, 226, 0.2),
        transparent
    );
}

.roadmap-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: var(--glass-bg);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.roadmap-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
    font-weight: 700;
    letter-spacing: 1px;
}

.roadmap {
    position: relative;
    padding: 20px 0;
}

.roadmap-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.roadmap-progress {
    position: absolute;
    left: 0;
    top: 50%;
    height: 4px;
    background: var(--accent-color);
    transform: translateY(-50%);
    width: 40%;
    transition: width 1s ease;
}

.roadmap-versions {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 0 20px;
}

.version-point {
    position: relative;
    width: 20px;
    height: 20px;
    background: var(--background-color);
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.version-point:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--accent-color);
}

.version-point.active {
    background: var(--accent-color);
}

.version-point.target {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 144, 226, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0);
    }
}

.version-label {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: var(--primary-color);
    font-weight: bold;
}

.version-label.top {
    bottom: calc(100% + 20px);
}

.version-label.bottom {
    top: calc(100% + 20px);
}

@media (max-width: 768px) {
    .project-title {
        font-size: 3rem !important; /* Ð£Ð¼ÐµÐ½ÑŒÑˆÐ°ÐµÐ¼ Ñ 5.5rem */
        top: 5% !important;
        line-height: 1.1 !important;
    }
    
    .version-slider {
        height: 40vh;
    }
    
    .project-description {
        position: relative !important; /* Ð£Ð±Ð¸Ñ€Ð°ÐµÐ¼ absolute Ð¿Ð¾Ð·Ð¸Ñ†Ð¸Ð¾Ð½Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ðµ */
        top: auto !important;
        left: auto !important;
        transform: none !important;
        max-height: 40vh !important; /* ÐžÐ³Ñ€Ð°Ð½Ð¸Ñ‡Ð¸Ð²Ð°ÐµÐ¼ Ð²Ñ‹ÑÐ¾Ñ‚Ñƒ */
        overflow-y: auto !important; /* Ð”Ð¾Ð±Ð°Ð²Ð»ÑÐµÐ¼ Ð¿Ñ€Ð¾ÐºÑ€ÑƒÑ‚ÐºÑƒ */
        margin: 2rem auto 0 !important;
        padding: 1.5rem !important;
        -webkit-overflow-scrolling: touch !important; /* ÐŸÐ»Ð°Ð²Ð½Ð°Ñ Ð¿Ñ€Ð¾ÐºÑ€ÑƒÑ‚ÐºÐ° Ð½Ð° iOS */
    }
    
    .project-description p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    

    .project-description::-webkit-scrollbar {
        width: 4px;
    }
    
    .project-description::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .project-description::-webkit-scrollbar-thumb {
        background: var(--accent-color);
        border-radius: 2px;
    }
    
    .project-description::-webkit-scrollbar-thumb:hover {
        background: rgba(74, 144, 226, 0.8);
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-nav {
        padding: 1.5rem 1rem !important;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }
    
    .nav-button {
        width: 100% !important;
        max-width: 250px !important;
        font-size: 1rem !important;
        padding: 0.8rem 1.5rem !important;
        text-align: center !important;
        display: block !important;
        margin: 0 !important;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 1rem;
    }
    
    .discord-widget {
        width: 100%;
        height: 400px;
    }
    
    .roadmap-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .stat-item {
        padding: 2rem;
    }
    
    .stat-item h3 {
        font-size: 1.1rem;
    }
    
    .stat-item p {
        font-size: 1.8rem;
    }
    
    .version-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .project-title {
        font-size: 2.2rem !important; /* Ð•Ñ‰Ðµ Ð¼ÐµÐ½ÑŒÑˆÐµ Ð´Ð»Ñ Ð¼Ð°Ð»ÐµÐ½ÑŒÐºÐ¸Ñ… ÑÐºÑ€Ð°Ð½Ð¾Ð² */
        top: 3% !important;
        letter-spacing: 1px !important;
    }

    .project-description {
        max-height: 35vh !important;
        padding: 1rem !important;
        margin: 1rem !important;
    }
    
    .project-description p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }

     .main-nav {
        padding: 1rem !important;
        gap: 0.8rem !important;
    }
    
    .nav-button {
        font-size: 0.9rem !important;
        padding: 0.7rem 1.2rem !important;
        max-width: 200px !important;
        border-radius: 25px !important;
    }
}

@media (max-width: 375px) {
    .project-title {
        font-size: 1.8rem !important; /* Ð”Ð»Ñ Ð¾Ñ‡ÐµÐ½ÑŒ Ð¼Ð°Ð»ÐµÐ½ÑŒÐºÐ¸Ñ… ÑÐºÑ€Ð°Ð½Ð¾Ð² */
        top: 2% !important;
    }
}

/* Download Page Styles */
.download-section {
    padding: 6rem 2rem 4rem;
    text-align: center;
    margin-top: 60px;
}

.download-title {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(74, 144, 226, 0.5),
                 0 0 60px rgba(74, 144, 226, 0.3);
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.download-description {
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--text-color);
    font-size: 1.3rem;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.download-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.download-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    width: 300px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.3);
}

.download-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.download-card p {
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
}



.download-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    font-size: 1.1rem;
}

.download-button:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.installation-guide {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.installation-guide h2 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
}

.installation-guide ol {
    text-align: left;
    padding-left: 1.5rem;
    counter-reset: item;
}

.installation-guide li {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.installation-guide ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
    list-style-type: none;
}

.installation-guide ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

.installation-guide ul li::before {
    content: "â€¢";
    color: var(--accent-color);
    position: absolute;
    left: -1rem;
}

.installation-guide strong {
    color: var(--accent-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .download-section {
        padding: 4rem 1.5rem 3rem;
    }

    .download-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .download-description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .download-card {
        width: 100%;
        max-width: 300px;
        padding: 2rem;
    }

    .download-card h3 {
        font-size: 1.3rem;
    }

    .download-card p {
        font-size: 1rem;
    }

    .installation-guide {
        padding: 2rem;
        margin-top: 3rem;
    }

    .installation-guide h2 {
        font-size: 1.8rem;
    }

    .installation-guide li {
        font-size: 1rem;
    }
}

/* Account Page Styles */
.account-section {
    padding: 6rem 2rem 4rem;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.auth-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.auth-form h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.3);
}

.auth-button {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-button:hover {
    background: var(--primary-color);
    color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.form-switch {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-color);
}

.form-switch a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* Account Panel Styles */
.account-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

.account-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
}

.role-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.role-0 { /* Player */
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.role-1 { /* Owner */
    background: linear-gradient(135deg, #ff6b6b 0%, #ee0000 100%);
    color: white;
}

.role-2 { /* Moderator */
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
}

.role-3 { /* Demonlist Moderator */
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
}

.role-4 { /* Moderator Plus */
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
}

.account-stats {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

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

.account-settings {
    margin-top: 2rem;
}

.account-settings h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.settings-button {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.settings-button:hover {
    background: var(--accent-color);
    color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.logout-button {
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-button:hover {
    background: #ff6b6b;
    color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

@media (max-width: 768px) {
    .account-section {
        padding: 4rem 1rem 2rem;
    }

    .auth-form {
        padding: 2rem;
    }

    .auth-form h2 {
        font-size: 2rem;
    }

    .account-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .account-header h2 {
        font-size: 1.8rem;
    }

    .stat-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

.user-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.icon-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    min-width: 120px;
    position: relative;
}

.icon-item h3 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: #ffffff;
}

/* Ð‘Ð°Ð·Ð¾Ð²Ñ‹Ð¹ ÑÐ»Ð¾Ð¹ Ð¸ÐºÐ¾Ð½ÐºÐ¸ */
.icon-item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: relative;
}

/* Ð’Ñ‚Ð¾Ñ€Ð¾Ð¹ ÑÐ»Ð¾Ð¹ (ÑÐµÑ€Ñ‹Ð¹) */
.icon-item img[id$="_2"] {
    filter: brightness(0) invert(0.6);
    position: absolute;
    width: 40px; /* ÐÐµÐ¼Ð½Ð¾Ð³Ð¾ Ð¼ÐµÐ½ÑŒÑˆÐµ Ð¾ÑÐ½Ð¾Ð²Ð½Ð¾Ð³Ð¾ Ñ€Ð°Ð·Ð¼ÐµÑ€Ð° */
    height: 40px;
    left: 50%;
    top: calc(50% + 1rem); /* +1rem Ð´Ð»Ñ ÐºÐ¾Ð¼Ð¿ÐµÐ½ÑÐ°Ñ†Ð¸Ð¸ Ð¾Ñ‚ÑÑ‚ÑƒÐ¿Ð° Ð·Ð°Ð³Ð¾Ð»Ð¾Ð²ÐºÐ° */
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* ÐŸÐµÑ€Ð²Ñ‹Ð¹ ÑÐ»Ð¾Ð¹ (ÑÐ²ÐµÑ‚Ð»Ð¾-ÑÐµÑ€Ñ‹Ð¹) */
.icon-item img:not([id$="_2"]) {
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 2;
}

/* Ð¡Ð¿ÐµÑ†Ð¸Ð°Ð»ÑŒÐ½Ñ‹Ðµ ÑÑ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ Ð²Ñ‚Ð¾Ñ€Ð¾Ð³Ð¾ ÑÐ»Ð¾Ñ ÐºÐ¾Ñ€Ð°Ð±Ð»Ñ */
.icon-item img[id="user-ship_2"] {
    width: 41px; /* ÐÐµÐ¼Ð½Ð¾Ð³Ð¾ Ð¼ÐµÐ½ÑŒÑˆÐµ Ð¾ÑÐ½Ð¾Ð²Ð½Ð¾Ð³Ð¾ Ñ€Ð°Ð·Ð¼ÐµÑ€Ð° */
    height: 41px;
    position: absolute;
    transform: translate(calc(-50% + 3px), calc(-50% - 9px)); /* Ð¡Ð´Ð²Ð¸Ð³ Ð²Ð¿Ñ€Ð°Ð²Ð¾ Ð¸ Ð²Ð²ÐµÑ€Ñ… */
}

.icon-item img[id="user-ufo_2"] {
    width: 60px; /* ÐÐµÐ¼Ð½Ð¾Ð³Ð¾ Ð¼ÐµÐ½ÑŒÑˆÐµ Ð¾ÑÐ½Ð¾Ð²Ð½Ð¾Ð³Ð¾ Ñ€Ð°Ð·Ð¼ÐµÑ€Ð° */
    height: 60px;
}

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

/* Ð”Ð»Ñ Ð²Ñ‚Ð¾Ñ€Ð¾Ð³Ð¾ ÑÐ»Ð¾Ñ ÐºÐ¾Ñ€Ð°Ð±Ð»Ñ Ð¿Ñ€Ð¸ Ð½Ð°Ð²ÐµÐ´ÐµÐ½Ð¸Ð¸ ÑÐ¾Ñ…Ñ€Ð°Ð½ÑÐµÐ¼ ÑÐ¼ÐµÑ‰ÐµÐ½Ð¸Ðµ */
.icon-item:hover img[id="user-ship_2"] {
    transform: translate(calc(-50% + 3px), calc(-50% - 9px)) scale(1.1);
}

/* Ð”Ð»Ñ Ð¾ÑÑ‚Ð°Ð»ÑŒÐ½Ñ‹Ñ… Ð²Ñ‚Ð¾Ñ€Ñ‹Ñ… ÑÐ»Ð¾ÐµÐ² Ð¿Ñ€Ð¸ Ð½Ð°Ð²ÐµÐ´ÐµÐ½Ð¸Ð¸ */
.icon-item:hover img[id$="_2"]:not([id="user-ship_2"]) {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Demonlist Styles */
.demonlist-section {
    max-width: 1200px;
    margin: 6rem auto 2rem;
    padding: 0 1rem;
}

.demonlist-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(74, 144, 226, 0.5),
                 0 0 60px rgba(74, 144, 226, 0.3);
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.demonlist-filters {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.search-box input {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    width: 300px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.3);
}

#sort-demons {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#sort-demons:focus {
    outline: none;
    border-color: var(--accent-color);
}

.demons-list {
    display: grid;
    gap: 1rem;
}

.demon-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.demon-preview {
    width: 200px;
    height: 150px;
    position: relative;
    overflow: hidden;
}

.demon-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.demon-card:hover .demon-thumbnail {
    transform: scale(1.1);
}

.no-video {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-color);
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
}

.demon-info {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.demon-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.demon-position {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

.demon-name {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.demon-creator {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 1.1rem;
}

/* Modal Styles */
.demon-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background: var(--background-color);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
}

.modal-header {
    text-align: center;
    padding: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 0 0.5rem;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
}

.modal-header p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 1.1rem;
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-body {
    padding: 2rem;
}

.demon-video {
    width: 100%;
    background: var(--glass-bg);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.demon-video iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

.no-video-frame {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    color: var(--text-color);
    font-size: 1.1rem;
}

.demon-details {
    background: var(--glass-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demon-details p {
    margin: 0;
    color: var(--text-color);
    font-size: 1.1rem;
}

.send-record-btn {
    background: var(--accent-color);
    color: var(--text-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-record-btn:hover {
    background: var(--accent-color-hover);
    transform: translateY(-2px);
}

.demon-records {
    background: var(--glass-bg);
    border-radius: 12px;
    padding: 1.5rem;
}

.demon-records h3 {
    margin: 0 0 1rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.records-list {
    color: var(--text-color);
}

/* Loading Indicator */
.loading-indicator {
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--glass-border);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    text-align: center;
    color: #ff6b6b;
    padding: 1rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 8px;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .demonlist-filters {
        flex-direction: column;
    }

    .search-box input {
        width: 100%;
    }

    .demon-card {
        flex-direction: column;
    }

    .demon-preview {
        width: 100%;
        height: 200px;
    }

    .demon-info {
        text-align: center;
    }

    .demon-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .modal-content {
        margin: 1rem;
        width: calc(100% - 2rem);
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .demon-details {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Record Form Modal */
.record-form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.record-form {
    width: 100%;
    max-width: 500px;
}

.record-form .form-group {
    margin-bottom: 1rem;
}

.record-form label {
    display: inline-block;
    margin-right: 1rem;
    color: #fff;
}

.record-form input[type="text"],
.record-form input[type="file"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #444;
    background: #222;
    color: #fff;
    border-radius: 4px;
}

.submit-record-btn {
    width: 100%;
    padding: 0.75rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-record-btn:hover {
    background: #0052a3;
}

/* Records List */
.records-list {
    margin-top: 1rem;
}

.record-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: #222;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.record-player {
    color: #fff;
    font-weight: 500;
}

.record-proof {
    color: #0066cc;
    text-decoration: none;
}

.record-proof:hover {
    text-decoration: underline;
}

/* Moderation Page */
.moderate-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.moderate-title {
    text-align: center;
    color: #fff;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(0, 102, 204, 0.5);
}

.pending-records {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.record-card {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.record-info h3 {
    color: #fff;
    margin: 0 0 0.5rem;
}

.record-info p {
    color: #888;
    margin: 0 0 1rem;
}

.record-actions {
    display: flex;
    gap: 0.5rem;
}

.accept-btn,
.reject-btn {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.accept-btn {
    background: #28a745;
    color: #fff;
}

.accept-btn:hover {
    background: #218838;
}

.reject-btn {
    background: #dc3545;
    color: #fff;
}

.reject-btn:hover {
    background: #c82333;
}

.no-records {
    grid-column: 1 / -1;
    text-align: center;
    color: #888;
    padding: 2rem;
}

.error-message {
    grid-column: 1 / -1;
    text-align: center;
    color: #dc3545;
    padding: 2rem;
}

/* Loading Indicator */
.loading-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #444;
    border-top-color: #0066cc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Demonlist Controls */
.demonlist-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.mod-controls {
    display: flex;
    gap: 1rem;
}

.mod-button {
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.mod-button:hover {
    background: var(--accent-color-dark);
}

/* Position Controls */
.demon-card {
    position: relative;
}

.position-controls {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.move-up,
.move-down {
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 4px;
    background: var(--accent-color);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.move-up:hover,
.move-down:hover {
    background: var(--accent-color-dark);
    transform: scale(1.1);
}

/* Add Demon Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.close-modal {
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--accent-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input[type="number"],
.form-group input[type="url"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="text"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input[type="number"]:focus,
.form-group input[type="url"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.3);
}

.verification-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.submit-button {
    width: 100%;
    padding: 0.75rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: var(--accent-color-dark);
} 





/* Songs Page Styles */
.songs-section {
    padding: 6rem 2rem 4rem;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.songs-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(74, 144, 226, 0.5);
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.songs-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.6;
}


.songs-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-controls {
    display: flex;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.search-input, .category-select, .sort-select {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input {
    flex: 2;
    min-width: 200px;
}

.category-select, .sort-select {
    flex: 1;
    min-width: 150px;
}

.search-input:focus, .category-select:focus, .sort-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.3);
}

.view-controls {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    padding: 0.8rem 1.2rem;
    background: transparent;
    border: 2px solid var(--glass-border);
    color: var(--text-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active, .view-btn:hover {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--background-color);
}

/* Songs Container */
.songs-container.grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.songs-container.list-view {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Song Card (Grid View) */
.song-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.2);
    border-color: var(--accent-color);
}

.song-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.song-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.song-card:hover .song-overlay {
    opacity: 1;
}

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

.play-btn {
    background: var(--accent-color);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.song-info {
    padding: 1.5rem;
}

.song-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0 0 0.5rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.song-artist {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1rem;
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.song-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.likes {
    color: var(--accent-color);
}

.category {
    background: rgba(74, 144, 226, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.verified {
    color: #4CAF50;
    font-weight: bold;
}

/* Song List Item (List View) */
.song-list-item {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    gap: 1rem;
}

.song-list-item:hover {
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.song-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.song-details {
    flex: 1;
    min-width: 0;
}

.song-details .song-title {
    font-size: 1.1rem;
    margin: 0 0 0.3rem;
}

.song-details .song-artist {
    margin: 0 0 0.3rem;
    font-size: 0.9rem;
}

.song-category {
    background: rgba(74, 144, 226, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    font-size: 0.8rem;
}

.song-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.song-actions .play-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

/* Music Player */
.music-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background-color-2);
    border-top: 1px solid var(--glass-border);
    padding: 1rem;
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.music-player.hidden {
    transform: translateY(100%);
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.player-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.player-text {
    min-width: 0;
}

.player-text h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-controls {
    display: flex;
    gap: 0.5rem;
}

.control-btn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--accent-color);
    color: var(--background-color);
}

.player-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    max-width: 300px;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: var(--glass-border);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
}

.progress-bar::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    border: none;
}

.player-progress span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    min-width: 35px;
    text-align: center;
}

/* Error and Loading States */
.no-songs, .error-message {
    text-align: center;
    padding: 3rem;
    color: var(--text-color);
}

.no-songs h3, .error-message h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .songs-section {
        padding: 4rem 1rem 6rem;
    }

    .songs-title {
        font-size: 2.5rem;
    }

    .songs-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .search-controls {
        flex-direction: column;
    }

    .view-controls {
        justify-content: center;
    }

    .songs-container.grid-view {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .song-list-item {
        flex-direction: column;
        text-align: center;
    }

    .song-actions {
        justify-content: center;
    }

    .music-player {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .player-progress {
        order: 3;
        flex-basis: 100%;
        max-width: none;
    }
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    padding: 1rem;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.pagination-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.pagination-controls {
    display: flex;
    gap: 0.5rem;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--accent-color);
    color: var(--background-color);
}

.pagination-btn:disabled {
    border-color: var(--glass-border);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .pagination-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .pagination-controls {
        justify-content: center;
    }
    
    .pagination-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

</pre></body></html>