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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Image Protection - Disable copying, dragging, and right-click */
img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Navbar Logo and Text Protection */
.logo, .logo-text {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.25;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 25, 45, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid #00aaff;
    z-index: 1000;
    padding: 0.6rem 0;
    box-shadow: 0 3px 15px rgba(0, 170, 255, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo {
    height: 35px;
    filter: drop-shadow(0 0 8px rgba(0, 170, 255, 0.3));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00aaff, #0088cc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(0, 170, 255, 0.4);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0.7rem;
    border-radius: 6px;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #00aaff;
    background: rgba(0, 170, 255, 0.1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #00aaff, #0088cc);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 80%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    position: relative;
    padding-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 170, 255, 0.08) 0%, rgba(0, 50, 100, 0.12) 50%, rgba(0, 20, 40, 0.15) 100%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.hero-content {
    text-align: left;
    padding-right: 2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00ccff 0%, #0099ff 25%, #0066cc 50%, #003d99 75%, #002266 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 50px rgba(0, 170, 255, 1);
    letter-spacing: -2px;
    z-index: 100;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(0, 170, 255, 0.7));
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 30px rgba(0, 170, 255, 0.7)); }
    100% { filter: drop-shadow(0 0 40px rgba(0, 170, 255, 0.9)); }
}

.hero .slogan {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero .intro-text {
    font-size: 1.1rem;
    max-width: 580px;
    margin-bottom: 4.5rem;
    line-height: 1.7;
    color: #c0c0c0;
    font-weight: 400;
}

.system-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 170, 255, 0.3), 
                0 0 0 1px rgba(0, 170, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 170, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.system-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.system-image:hover::before {
    left: 100%;
}

.system-image:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 35px 80px rgba(0, 170, 255, 0.4), 
                0 0 0 1px rgba(0, 170, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 170, 255, 0.6);
}

/* Content Sections */
.section {
    padding: 3rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    background: linear-gradient(45deg, #00aaff, #0088cc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: -1px;
}

/* Long Intro Section */
.long-intro {
    background: rgba(5, 25, 45, 0.6);
    border-radius: 24px;
    padding: 3rem;
    margin: 3rem 0;
    border: 1px solid rgba(0, 170, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 170, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.long-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 170, 255, 0.5), transparent);
}

.long-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
    text-align: justify;
    margin-bottom: 1rem;
}

.long-intro p:last-child {
    margin-bottom: 0;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature-box {
    background: rgba(5, 35, 65, 0.35);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 170, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(6px);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 170, 255, 0.06), transparent);
    transition: left 0.5s ease;
}

.feature-box:hover::before {
    left: 100%;
}

.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 170, 255, 0.15);
    border-color: rgba(0, 170, 255, 0.25);
    background: rgba(5, 35, 65, 0.5);
}

.feature-box h3 {
    color: #00aaff;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-box p {
    color: #b8b8b8;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Screenshots Section */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.screenshot-box {
    background: rgba(5, 35, 65, 0.3);
    border-radius: 10px;
    padding: 1.2rem;
    border: 1px solid rgba(0, 170, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.screenshot-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 170, 255, 0.12);
    border-color: rgba(0, 170, 255, 0.2);
}

.screenshot-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.08), rgba(0, 80, 160, 0.12));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00aaff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(0, 170, 255, 0.15);
}

.screenshot-box p {
    color: #c0c0c0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Developer Blog Section */
.blog-section {
    text-align: center;
    background: rgba(5, 25, 45, 0.35);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0, 170, 255, 0.1);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0, 170, 255, 0.06);
}

.blog-section p {
    font-size: 1rem;
    color: #c0c0c0;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.release-badge.update {
    background: linear-gradient(135deg, #66bb6a, #4caf50);
    color: white;
}

.release-badge.security {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
}

.release-badge.first {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    color: white;
}

.blog-link {
    display: inline-block;
    background: linear-gradient(45deg, #00aaff, #0088cc);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 8px 20px rgba(0, 170, 255, 0.3);
}

.blog-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 170, 255, 0.4);
    background: linear-gradient(45deg, #0088cc, #00aaff);
}

/* Download Section */
.download-section {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(5, 25, 45, 0.8);
    border-radius: 20px;
    border: 2px solid #00aaff;
    box-shadow: 0 15px 35px rgba(0, 170, 255, 0.3);
    backdrop-filter: blur(15px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-section h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.download-section p {
    font-size: 1rem;
    color: #d0d0d0;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(45deg, #00ff88, #00aaff);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.25);
    letter-spacing: 0.3px;
    white-space: nowrap;
    width: auto;
    max-width: 200px;
}

.download-btn:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 255, 136, 0.35);
    background: linear-gradient(45deg, #00cc70, #0088cc);
}

/* Footer */
.footer {
    background: rgba(5, 15, 25, 0.98);
    padding: 4rem 2rem 3rem;
    border-top: 3px solid #00aaff;
    text-align: center;
    backdrop-filter: blur(10px);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.footer-links a:hover {
    color: #00aaff;
    background: rgba(0, 170, 255, 0.1);
    transform: translateY(-2px);
}

.footer p {
    color: #808080;
    font-size: 1rem;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .system-image {
        max-width: 60%;
    }
    
    .section {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .logo {
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }

    .hero {
        padding-top: 50px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        padding-right: 0;
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .slogan {
        font-size: 1.1rem;
    }
    
    .hero .intro-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .system-image {
        max-width: 90%;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section h2 {
        font-size: 2.2rem;
    }
    
    .long-intro {
        padding: 2.5rem;
    }
}

/* Developer Page Specific Styles */
.developer-page {
    background: #0a0a0a;
    min-height: 100vh;
    padding-top: 60px;
}

/* Cover Section - Banner Settings */ 
.cover-section {
    position: relative;
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url('Assets/banner.png');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 25px 25px;
    overflow: hidden;
    margin-top: -20px;
}

.cover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 20, 40, 0.6));
}

/* Profile Section */
.profile-section {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.profile-container {
    position: relative;
    margin-top: -120px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 5px solid rgba(0, 170, 255, 0.9);
    box-shadow: 0 20px 40px rgba(0, 170, 255, 0.4), 0 0 20px rgba(0, 170, 255, 0.2);
    object-fit: cover;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 170, 255, 0.5), 0 0 30px rgba(0, 170, 255, 0.3);
}

.profile-info {
    margin-top: 2rem;
    text-align: center;
    background: rgba(5, 25, 45, 0.7);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 170, 255, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.profile-name {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00aaff, #0066cc, #00aaff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.profile-title {
    font-size: 1.3rem;
    color: #00aaff;
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0.9;
}

.profile-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: left;
    margin-top: 1.5rem;
}

/* Social Media Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    background: rgba(0, 170, 255, 0.1);
    border: 1px solid rgba(0, 170, 255, 0.3);
    border-radius: 12px;
    color: #00aaff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.social-link:hover {
    background: rgba(0, 170, 255, 0.2);
    border-color: rgba(0, 170, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 170, 255, 0.2);
}

.social-link i {
    font-size: 1.1rem;
}

.social-link span {
    font-size: 0.9rem;
}

/* Blog Section */
.blog-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

.blog-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00aaff, #0088cc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
}

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

.blog-card {
    background: rgba(5, 35, 65, 0.7);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 170, 255, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 170, 255, 0.3);
    border-color: rgba(0, 170, 255, 0.5);
}

.blog-image {
    height: 140px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.2), rgba(0, 100, 200, 0.2));
    z-index: 1;
}

.blog-content {
    padding: 2rem;
}

.blog-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00aaff;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    text-align: left;
}

.blog-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
    text-align: left;
}

.blog-excerpt {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: rgba(5, 25, 45, 0.95);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    border: 2px solid rgba(0, 170, 255, 0.3);
    backdrop-filter: blur(20px);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 170, 255, 0.2);
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #00aaff;
}

.close {
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #00aaff;
}

.modal-body {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1.1rem;
}

.modal-date {
    color: #888;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Developer Page Mobile Responsive */
@media (max-width: 768px) {
    .cover-section {
        height: 280px;
    }
    
    .profile-container {
        margin-top: -80px;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .profile-name {
        font-size: 2.2rem;
    }
    
    .profile-info {
        padding: 2rem;
        margin-top: 1.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-title {
        font-size: 2.2rem;
    }
}

/* Donate Page Specific Styles */
.donation-grid-section {
    padding: 3rem 0;
}

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

.donation-card {
    position: relative;
    padding: 2rem 1.5rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.crypto-icon {
    font-size: 2.5rem;
}

.crypto-icon.bitcoin {
    color: #f7931a;
}

.crypto-icon.ethereum {
    color: #627eea;
}

.crypto-icon.monero {
    color: #ff6600;
}

.crypto-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #00aaff;
    margin: 0;
}

.address-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 170, 255, 0.25);
    transition: all 0.3s ease;
    margin-top: auto;
}

.address-container:hover {
    border-color: rgba(0, 170, 255, 0.4);
    background: rgba(0, 0, 0, 0.6);
}

.crypto-code {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: #00aaff;
    word-break: break-all;
    flex: 1;
    background: none;
    border: none;
    padding: 0;
    line-height: 1.3;
}

.copy-btn {
    background: rgba(0, 170, 255, 0.15);
    border: 1px solid rgba(0, 170, 255, 0.3);
    color: #00aaff;
    padding: 0.6rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: rgba(0, 170, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 170, 255, 0.2);
}

/* Thank You Card Styles */
.thank-you-card {
    text-align: center;
    justify-content: center;
}

.thank-you-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 0.8rem;
}

.thank-you-icon {
    font-size: 2.5rem;
    color: #ff4757;
    animation: heartbeat 2s ease-in-out infinite;
}

.thank-you-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #00aaff;
    margin: 0;
}

.thank-you-content p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.privacy-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    background: rgba(0, 170, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 170, 255, 0.2);
    color: #00aaff;
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .donation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .donation-card {
        padding: 1.5rem;
        min-height: 180px;
    }
    
    .crypto-code {
        font-size: 0.7rem;
    }
}

/* News Page Styles */
.news-grid-section {
    padding: 3rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.news-card {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 170, 255, 0.3);
}

.news-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

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

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 170, 255, 0.9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.news-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    color: #00aaff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.news-excerpt {
    color: #e0e0e0;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #888;
    margin-top: auto;
}

.news-date, .news-author {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* News Modal Styles */
.news-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: rgba(10, 30, 50, 0.95);
    margin: 2% auto;
    padding: 0;
    border: 1px solid rgba(0, 170, 255, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #00aaff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close:hover {
    background: rgba(0, 170, 255, 0.2);
    transform: scale(1.1);
}

.modal-header {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.modal-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-category {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 170, 255, 0.9);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.modal-body {
    padding: 2rem;
}

.modal-title {
    color: #00aaff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
    text-align: center;
}

.modal-date {
    color: #888;
    font-size: 0.9rem;
    margin: 1rem 0;
    font-style: italic;
    text-align: right;
    padding-right: 2rem;
}

.modal-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.modal-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-body p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.modal-body ul {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
    color: #d0d0d0;
}

/* News Page Mobile Responsive */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-content {
        padding: 1.2rem;
    }
    
    .news-content h3 {
        font-size: 1.2rem;
    }
    
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-header {
        height: 200px;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-body h2 {
        font-size: 1.6rem;
    }
    
    .modal-meta {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .navbar {
        padding: 0.4rem 0;
    }
    
    .logo {
        height: 28px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 0 1rem;
        padding-top: 45px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .download-btn {
        padding: 1.5rem 2.5rem;
        font-size: 1.1rem;
    }
}

/* Releases Page Styles */
.releases-section {
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

.releases-timeline {
    display: grid;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.release-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.release-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 153, 204, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.release-card:hover::before {
    opacity: 1;
}

.release-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.25), 0 0 40px rgba(0, 212, 255, 0.1);
}

.release-header {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 153, 204, 0.08));
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.release-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.release-card:hover .release-header::before {
    left: 100%;
}

.release-version {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.version-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00d4ff;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5), 0 0 30px rgba(0, 212, 255, 0.2);
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.version-name {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-weight: 500;
}

.release-date {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.release-date i {
    color: #00d4ff;
}

.release-badge {
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.release-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.release-badge:hover::before {
    left: 100%;
}

.release-badge.major {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.release-badge.bugfix {
    background: linear-gradient(135deg, #ffa726, #ff9800);
    color: white;
}

.release-badge.update {
    background: linear-gradient(135deg, #66bb6a, #4caf50);
    color: white;
}

.release-badge.security {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
}

.release-badge.first {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    color: white;
}

.release-content {
    padding: 30px;
    position: relative;
}

.release-section {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.release-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateX(5px);
}

.release-section:last-child {
    margin-bottom: 0;
}

.release-section h3 {
    color: #00d4ff;
    font-size: 1.3rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.release-section h3 i {
    font-size: 1.1rem;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.release-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.release-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.release-list li {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.7;
    padding: 8px 0;
    transition: all 0.2s ease;
}

.release-list li:hover {
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(3px);
}

.release-list li i {
    color: #00d4ff;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.release-list li strong {
    color: #00d4ff;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.2);
}

/* Developer Notes Styles */
.dev-notes {
    display: grid;
    gap: 15px;
    margin-top: 15px;
}

.dev-note {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
}

.dev-note:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.25);
    transform: translateX(3px);
}

.dev-note i {
    color: #00d4ff;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.dev-note p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.dev-note a {
    color: #00d4ff;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.dev-note a:hover {
    color: #00aaff;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
}

/* Hero Section for Releases */
.hero {
    text-align: center;
    padding: 100px 0 50px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design for Releases */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .release-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .version-number {
        font-size: 1.2rem;
    }
    
    .release-content {
        padding: 20px;
    }
    
    .release-section h3 {
        font-size: 1.1rem;
    }
    
    .releases-timeline {
        gap: 20px;
    }
}

/* Download Page Styles */
.download-section {
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

.download-grid-simple {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.download-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 153, 204, 0.04));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
}

.download-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.25), 0 0 40px rgba(0, 212, 255, 0.1);
}

.download-header {
    padding: 25px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 153, 204, 0.08));
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.download-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.download-icon i {
    font-size: 1.5rem;
    color: white;
}

.download-header h3 {
    color: #00d4ff;
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.download-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.download-content {
    padding: 30px;
}

.download-info {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.info-item i {
    color: #00d4ff;
    width: 20px;
    text-align: center;
}

.download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.download-btn {
    flex: 1;
    min-width: 140px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
}

.download-btn.primary {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.download-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.download-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.download-btn.secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.5);
}

.download-btn.torrent {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.download-btn.torrent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.version-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    align-items: center;
}

.current-version {
    color: #00d4ff;
    font-weight: 600;
    font-size: 1.1rem;
}

.release-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.version-list {
    margin-bottom: 20px;
}

.version-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.version-item:last-child {
    border-bottom: none;
}

.version-name {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.version-download {
    color: #00d4ff;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.version-download:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: scale(1.1);
}

.view-all-link {
    color: #00d4ff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.view-all-link:hover {
    color: #00aaff;
    transform: translateX(3px);
}

.torrent-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.verification-info {
    display: grid;
    gap: 20px;
}

.hash-info {
    display: grid;
    gap: 10px;
}

.hash-info label {
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.9rem;
}

.hash-value {
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    word-break: break-all;
    border: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
}

.copy-hash {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 212, 255, 0.2);
    border: none;
    color: #00d4ff;
    padding: 5px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-hash:hover {
    background: rgba(0, 212, 255, 0.3);
}

.verification-link {
    color: #00d4ff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.verification-link:hover {
    color: #00aaff;
    transform: translateX(3px);
}

/* Hash Copy Section */
.hash-copy-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.hash-copy-section label {
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.hash-container {
    position: relative;
    display: flex;
    align-items: center;
}

.hash-container .hash-value {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 50px 10px 15px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    word-break: break-all;
    border: 1px solid rgba(0, 212, 255, 0.2);
    margin: 0;
}

.hash-container .copy-hash {
    position: absolute;
    right: 10px;
    background: rgba(0, 212, 255, 0.2);
    border: none;
    color: #00d4ff;
    padding: 8px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hash-container .copy-hash:hover {
    background: rgba(0, 212, 255, 0.3);
}

/* Info Section Styles */
.info-section {
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.info-title {
    color: #00d4ff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    padding: 8px 0;
}

.info-item i {
    color: #00d4ff;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.install-step {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    padding: 10px 0;
}

.step-num {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
    flex-shrink: 0;
}

/* System Requirements Section */
.requirements-section {
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

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

.requirement-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.req-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.req-header i {
    color: #00d4ff;
    font-size: 1.5rem;
}

.req-header h3 {
    color: #00d4ff;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.req-content {
    display: grid;
    gap: 12px;
}

.req-item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
}

.req-item strong {
    color: #00d4ff;
}

/* Installation Guide Section */
.guide-section {
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.step-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 25px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.step-content h3 {
    color: #00d4ff;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    margin-top: 10px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.section-title {
    text-align: center;
    color: #00d4ff;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

/* Compact Section Styles */
.section-title-compact {
    text-align: center;
    color: #00d4ff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.requirements-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.requirement-card-compact {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.requirement-card-compact:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.15);
}

.req-header-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
}

.req-header-compact i {
    color: #00d4ff;
    font-size: 1.2rem;
}

.guide-steps-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.step-card-compact {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 20px 15px;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.step-card-compact:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.15);
}

.step-number-compact {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.step-content-compact {
    margin-top: 8px;
}

.step-content-compact span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive Design for Download Page */
@media (max-width: 768px) {
    .main-download-simple {
        margin: 0 20px;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .download-btn {
        min-width: auto;
    }
    
    .requirements-grid-compact,
    .guide-steps-compact {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 0 20px;
    }
    
    .section-title-compact {
        font-size: 1.5rem;
    }
    
    .version-info {
        text-align: center;
    }
    
    .hash-container .hash-value {
        font-size: 0.7rem;
        padding: 8px 45px 8px 12px;
    }
    
    .hash-container .copy-hash {
        padding: 6px 8px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 20px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .info-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .info-content {
        gap: 12px;
    }
    
    .info-item,
    .install-step {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .step-num {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
}

/* ===== NEW MODERN DOWNLOAD SECTION ===== */
.download-section-new {
    padding: 100px 0;
    position: relative;
}

.download-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.download-main {
    background: linear-gradient(145deg, rgba(0, 170, 255, 0.05), rgba(0, 120, 200, 0.02));
    border: 1px solid rgba(0, 170, 255, 0.2);
    border-radius: 24px;
    padding: 60px 50px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-main:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 170, 255, 0.4);
    box-shadow: 
        0 30px 80px rgba(0, 170, 255, 0.15),
        0 0 60px rgba(0, 170, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.download-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00aaff, #0088cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.3);
}

.download-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00aaff;
    margin: 0 0 10px 0;
    letter-spacing: -0.02em;
}

.download-codename {
    font-size: 1.1rem;
    color: #888;
    margin: 0 0 40px 0;
    font-style: italic;
}

.file-info {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    padding: 20px;
    background: rgba(0, 170, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(0, 170, 255, 0.1);
}

.file-detail {
    text-align: center;
    flex: 1;
}

.detail-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.detail-value {
    display: block;
    font-size: 1.1rem;
    color: #00aaff;
    font-weight: 600;
}

.download-button-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00aaff, #0088cc);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 30px 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 170, 255, 0.3);
    border: none;
    cursor: pointer;
}

.download-button-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 170, 255, 0.4);
    background: linear-gradient(135deg, #0099ee, #0077bb);
}

.download-button-new i {
    font-size: 1.3rem;
}

.hash-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 170, 255, 0.1);
}

.hash-label {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
    font-weight: 500;
}

.hash-display {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(0, 170, 255, 0.2);
}

.hash-code {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #ccc;
    background: none;
    border: none;
    word-break: break-all;
    line-height: 1.4;
}

.hash-copy-btn {
    background: rgba(0, 170, 255, 0.2);
    border: 1px solid rgba(0, 170, 255, 0.3);
    border-radius: 6px;
    padding: 8px 12px;
    color: #00aaff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.hash-copy-btn:hover {
    background: rgba(0, 170, 255, 0.3);
    border-color: rgba(0, 170, 255, 0.5);
}

.hash-copy-btn i {
    font-size: 0.9rem;
}

/* Responsive Design for New Download Section */
@media (max-width: 768px) {
    .download-main {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .download-title {
        font-size: 2rem;
    }
    
    .file-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .download-button-new {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .hash-code {
        font-size: 0.7rem;
    }
}

/* Documentation Page Styles */
.docs-container {
    display: flex;
    min-height: 100vh;
    padding-top: 55px;
}

.docs-sidebar {
    width: 220px;
    background: rgba(5, 25, 45, 0.95);
    backdrop-filter: blur(12px);
    border-right: 2px solid #00aaff;
    position: fixed;
    top: 55px;
    height: calc(100vh - 55px);
    overflow-y: auto;
    z-index: 100;
    padding: 1rem 0;
}

.docs-sidebar::-webkit-scrollbar {
    width: 6px;
}

.docs-sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.docs-sidebar::-webkit-scrollbar-thumb {
    background: rgba(0, 170, 255, 0.5);
    border-radius: 3px;
}

.docs-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 170, 255, 0.8);
}

.sidebar-section {
    margin-bottom: 1rem;
}

.sidebar-title {
    color: #00aaff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    margin-bottom: 0.3rem;
    border-bottom: 1px solid rgba(0, 170, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sidebar-item {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
    font-size: 0.85rem;
    position: relative;
}

.sidebar-item:hover {
    color: #00aaff;
    background: rgba(0, 170, 255, 0.08);
    border-left-color: #00aaff;
}

.sidebar-item.active {
    color: #00aaff;
    background: rgba(0, 170, 255, 0.12);
    border-left-color: #00aaff;
}

.docs-content {
    flex: 1;
    margin-left: 220px;
    padding: 1.5rem 2rem;
    max-width: calc(100% - 220px);
}

.content-section {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-title {
    font-size: 2rem;
    color: #00aaff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 170, 255, 0.3);
}

.subsection-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin: 1.5rem 0 1rem 0;
    padding-left: 0.8rem;
    border-left: 3px solid #00aaff;
}

.content-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.content-text ul, .content-text ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-text li {
    margin-bottom: 0.4rem;
}

.content-text strong {
    color: #00aaff;
}

.code-block {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 170, 255, 0.3);
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
    font-family: 'Courier New', monospace;
    color: #00ff88;
    overflow-x: auto;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .docs-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        width: 250px;
    }

    .docs-sidebar.mobile-open {
        transform: translateX(0);
    }

    .docs-content {
        margin-left: 0;
        max-width: 100%;
        padding: 1rem;
    }

    .mobile-menu-btn {
        display: block;
        position: fixed;
        top: 90px;
        left: 15px;
        z-index: 1001;
        background: rgba(0, 170, 255, 0.9);
        color: white;
        border: none;
        padding: 8px 12px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 0.9rem;
    }
}

.mobile-menu-btn {
    display: none;
}

/* Projects Page Styles */
.detailed-projects {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 2rem;
}

.detailed-project {
    background: rgba(5, 25, 45, 0.7);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 170, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 170, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.detailed-project:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 170, 255, 0.2);
    border-color: rgba(0, 170, 255, 0.5);
}

.project-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.project-image-placeholder {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.2), rgba(0, 100, 200, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00aaff;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px dashed rgba(0, 170, 255, 0.4);
    border-radius: 12px;
}

.project-info h3 {
    font-size: 2rem;
    color: #00aaff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.project-status {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-status.active {
    background: rgba(0, 255, 100, 0.2);
    color: #00ff64;
    border: 1px solid rgba(0, 255, 100, 0.3);
}

.project-status.planned {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.tech-stack {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.project-description {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.project-description p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.project-description h4 {
    color: #00aaff;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 600;
}

.project-description ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.project-description li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.project-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-btn, .source-btn, .docs-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid;
}

.download-btn {
    background: linear-gradient(45deg, #00aaff, #0088cc);
    color: white;
    border-color: #00aaff;
}

.download-btn:hover {
    background: linear-gradient(45deg, #0088cc, #006699);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 170, 255, 0.3);
}

.download-btn.disabled {
    background: rgba(100, 100, 100, 0.3);
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(100, 100, 100, 0.3);
    cursor: not-allowed;
}

.source-btn {
    background: transparent;
    color: #00aaff;
    border-color: #00aaff;
}

.source-btn:hover {
    background: rgba(0, 170, 255, 0.1);
    transform: translateY(-2px);
}

.docs-btn {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

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

/* Gallery Page Styles */
.screenshots-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.screenshot-item {
    background: rgba(5, 25, 45, 0.6);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 170, 255, 0.2);
    transition: all 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 170, 255, 0.2);
    border-color: rgba(0, 170, 255, 0.4);
}

.screenshot-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.system-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.2), rgba(0, 100, 200, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00aaff;
    font-weight: 600;
    border: 2px dashed rgba(0, 170, 255, 0.4);
}

.screenshot-item h3 {
    color: #00aaff;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.screenshot-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Wallpapers Section */
.wallpapers-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.wallpaper-item {
    background: rgba(5, 25, 45, 0.5);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(0, 170, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.wallpaper-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 170, 255, 0.4);
}

.wallpaper-image {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.wallpaper-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.15), rgba(0, 100, 200, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00aaff;
    font-weight: 500;
    border: 1px dashed rgba(0, 170, 255, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
}

.wallpaper-item h4 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.download-wallpaper {
    color: #00aaff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 170, 255, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 80px;
    text-align: center;
}

.download-wallpaper:hover {
    background: rgba(0, 170, 255, 0.1);
    border-color: rgba(0, 170, 255, 0.5);
}

/* Banners and Logos Section */
.banners-section, .logos-section {
    margin-bottom: 3rem;
}

.banners-section h3, .logos-section h3 {
    color: #00aaff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.banner-grid, .logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.banner-item, .logo-item {
    background: rgba(5, 25, 45, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 170, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.banner-item .download-btn, .logo-item .download-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    min-width: 80px;
    display: inline-block;
    text-align: center;
}

.banner-item:hover, .logo-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 170, 255, 0.4);
}

.banner-image {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.logo-image {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-display {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
}

.banner-placeholder, .logo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.15), rgba(0, 100, 200, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00aaff;
    font-weight: 500;
    border: 1px dashed rgba(0, 170, 255, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Videos Section */
.videos-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-item {
    background: rgba(5, 25, 45, 0.6);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 170, 255, 0.2);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 170, 255, 0.2);
    border-color: rgba(0, 170, 255, 0.4);
}

.video-thumbnail {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.2), rgba(0, 100, 200, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00aaff;
    font-weight: 600;
    border: 2px dashed rgba(0, 170, 255, 0.4);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 170, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(0, 170, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item h3 {
    color: #00aaff;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.video-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.video-info {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
}

.duration, .quality {
    background: rgba(0, 170, 255, 0.2);
    color: #00aaff;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-weight: 500;
}

/* Gallery Section for Index Page */
.gallery-preview {
    text-align: center;
    padding: 2rem;
    background: rgba(5, 25, 45, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(0, 170, 255, 0.2);
    margin-top: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 170, 255, 0.1);
}

.gallery-preview p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gallery-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #00aaff, #0088cc);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #00aaff;
}

.gallery-btn:hover {
    background: linear-gradient(45deg, #0088cc, #006699);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 170, 255, 0.3);
    border-color: #0088cc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .project-image-placeholder {
        height: 150px;
    }
    
    .screenshots-section {
        grid-template-columns: 1fr;
    }
    
    .wallpapers-section {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .videos-section {
        grid-template-columns: 1fr;
    }
    
    .banner-grid, .logo-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll Bar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.8), rgba(0, 210, 255, 1));
    box-shadow: 0 0 8px rgba(0, 210, 255, 0.8);
    border: 1px solid rgba(0, 170, 255, 0.9);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(0, 210, 255, 1), rgba(0, 240, 255, 1));
    box-shadow: 0 0 15px rgba(0, 240, 255, 1);
    border: 1px solid rgba(0, 240, 255, 1);
}
