/* ====== RESET & BASE ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1b2e 0%, #2d2b55 100%);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

/* ====== NAVBAR ====== */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(26, 27, 46, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
    border-bottom: 1px solid #3a3a6a;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.nav-logo img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
}

.nav-center {
    display: flex;
    align-items: center;
}

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

.nav-menu li {
    list-style: none;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 500;
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    position: relative;
}

.nav-link:hover, .nav-link:focus {
    background: #3a3a6a;
    color: #8b5cf6;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-download-btn {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 25px;
    padding: 0.7rem 1.7rem;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 10px rgba(59,130,246,0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-download-btn i {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-style: normal;
    line-height: 1;
}

.nav-download-btn:hover {
    background: linear-gradient(45deg, #8b5cf6, #3b82f6);
    box-shadow: 0 4px 20px rgba(59,130,246,0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* ====== HERO SECTION ====== */
.hero {
    padding-top: 110px;
    padding-bottom: 80px;
    min-height: 80vh;
    background: linear-gradient(135deg, #2d2b55 0%, #1a1b2e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wave" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,50 Q25,40 50,50 T100,50 V100 H0 Z" fill="rgba(59,130,246,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23wave)"/></svg>');
    opacity: 0.3;
    animation: wave 8s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    z-index: 10;
    position: relative;
    opacity: 1;
    visibility: visible;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 11;
    position: relative;
}

.hero-logo img {
    max-width: 180px;
    max-height: 180px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(59,130,246,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid rgba(59,130,246,0.2);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    z-index: 12;
    position: relative;
}

.hero-logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 50px rgba(59,130,246,0.4);
    border-color: rgba(59,130,246,0.4);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #e3f2fd;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #e3f2fd;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ====== VIDEO SECTION ====== */
.video-section {
    background: linear-gradient(135deg, #3a3a6a 0%, #1a1b2e 100%);
    padding: 80px 0;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-container video {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.2);
}

/* ====== BUTTONS ====== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn i {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-style: normal;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    color: #fff;
    box-shadow: 0 4px 15px rgba(59,130,246,0.25);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #8b5cf6, #3b82f6);
    box-shadow: 0 6px 25px rgba(59,130,246,0.35);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ====== FEATURES ====== */
.features {
    background: linear-gradient(135deg, #1a1b2e 0%, #3a3a6a 100%);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #e3f2fd;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid #3a3a6a;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 10px rgba(59,130,246,0.1);
}

.feature-card:hover {
    box-shadow: 0 8px 32px rgba(59,130,246,0.2);
    transform: translateY(-6px) scale(1.02);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem auto;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    position: relative;
}

.feature-icon i {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-style: normal;
    line-height: 1;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.feature-card p {
    color: #e3f2fd;
    font-size: 1rem;
    line-height: 1.6;
}

/* ====== GALLERY ====== */
.gallery {
    background: linear-gradient(135deg, #3a3a6a 0%, #1a1b2e 100%);
    padding: 80px 0;
}

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

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    background: #3a3a6a;
    box-shadow: 0 2px 10px rgba(59,130,246,0.1);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    aspect-ratio: 16/10;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(59,130,246,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

/* ====== REQUIREMENTS ====== */
.requirements {
    background: linear-gradient(135deg, #1a1b2e 0%, #3a3a6a 100%);
    padding: 80px 0;
}

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

.requirements-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid #3a3a6a;
    border-radius: 16px;
    padding: 2.5rem 2rem;
}

.requirements-card h3 {
    color: #8b5cf6;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.requirements-card ul {
    list-style: none;
    padding-left: 0;
}

.requirements-card li {
    color: #e3f2fd;
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    border-bottom: 1px solid #3a3a6a;
    font-size: 1rem;
}

.requirements-card li:last-child {
    border-bottom: none;
}

.requirements-card li::before {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    color: #3b82f6;
    font-weight: bold;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.compatibility-note {
    background: rgba(59,130,246,0.15);
    border: 1px solid #3b82f6;
    border-radius: 12px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.compatibility-note h4 {
    color: #8b5cf6;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.compatibility-note ul {
    list-style: none;
    padding-left: 0;
}

.compatibility-note li {
    color: #e3f2fd;
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 1rem;
}

.compatibility-note li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ====== DOWNLOAD SECTION ====== */
.download {
    background: linear-gradient(135deg, #3a3a6a 0%, #1a1b2e 100%);
    padding: 80px 0;
    text-align: center;
}

.download-card {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.08);
    border: 1px solid #3a3a6a;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: 0 8px 32px rgba(59,130,246,0.15);
}

.download-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(59,130,246,0.25);
    letter-spacing: 1px;
}

.download-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.download-content p {
    color: #e3f2fd;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.download-info {
    margin-bottom: 2.5rem;
}

.download-info p {
    color: #e3f2fd;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.download-info i {
    color: #3b82f6;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-style: normal;
    line-height: 1;
}

/* ====== FOOTER ====== */
.footer {
    background: linear-gradient(135deg, #1a1b2e 0%, #3a3a6a 100%);
    padding: 3rem 0 1.5rem 0;
    border-top: 1px solid #3a3a6a;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #8b5cf6;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p, .footer-section a {
    color: #e3f2fd;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #8b5cf6;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-logo span {
    font-weight: bold;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.social-links a i {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-style: normal;
    line-height: 1;
}

.social-links a:hover {
    box-shadow: 0 4px 16px rgba(139,92,246,0.25);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    color: #e3f2fd;
    font-size: 0.98rem;
    border-top: 1px solid #3a3a6a;
    padding-top: 1.2rem;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-logo {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-logo img {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid, .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 700px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .features-grid, .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .download-card {
        padding: 2rem 1.5rem;
    }
    
    .requirements-card {
        padding: 2rem 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: auto;
    }
    
    .nav-container {
        height: 60px;
        padding: 0 0.5rem;
    }
    
    .nav-logo img {
        width: 32px;
        height: 32px;
    }
    
    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .hero-logo img {
        max-width: 140px;
        max-height: 140px;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    .download-card {
        padding: 1.5rem 1rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    /* Ensure icons are visible on mobile */
    .btn i,
    .nav-download-btn i,
    .feature-icon i,
    .social-links a i,
    .download-info i {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-style: normal;
        line-height: 1;
    }
}

/* ====== LEGAL PAGES STYLES (PRIVACY & TERMS) ====== */
.legal-content {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1b2e 0%, #2d2b55 100%);
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #3a3a6a;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.legal-header p {
    font-size: 1.1rem;
    color: #e3f2fd;
    font-weight: 500;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border: 1px solid #3a3a6a;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(59,130,246,0.1);
}

.legal-section {
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #3a3a6a;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3b82f6;
    margin: 2rem 0 1rem 0;
}

.legal-section p {
    font-size: 1rem;
    color: #e3f2fd;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.legal-section li {
    color: #e3f2fd;
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    border-bottom: 1px solid rgba(58,58,106,0.3);
    font-size: 1rem;
    line-height: 1.6;
}

.legal-section li:last-child {
    border-bottom: none;
}

.legal-section li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1;
}

.legal-section strong {
    color: #8b5cf6;
    font-weight: 600;
}

.legal-section a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-section a:hover {
    color: #8b5cf6;
    text-decoration: underline;
}

/* Legal page navigation adjustments */
.legal-content .navbar {
    background: rgba(26, 27, 46, 0.98);
}

.legal-content .nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.legal-content .nav-menu li {
    list-style: none;
}

.legal-content .nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 500;
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    position: relative;
}

.legal-content .nav-link:hover, 
.legal-content .nav-link:focus {
    background: #3a3a6a;
    color: #8b5cf6;
}

/* Legal page responsive design */
@media (max-width: 900px) {
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-body {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .legal-content .nav-menu {
        display: none;
    }
    
    .legal-content .hamburger {
        display: flex;
    }
    
    /* Ensure icons are visible on large screens for legal pages */
    .legal-section li::before {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        line-height: 1;
    }
}

@media (max-width: 700px) {
    .legal-content {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-header p {
        font-size: 1rem;
    }
    
    .legal-body {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 0.95rem;
    }
    
    /* Ensure icons are visible on medium screens for legal pages */
    .legal-section li::before {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        line-height: 1;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .legal-header h1 {
        font-size: 1.8rem;
    }
    
    .legal-body {
        padding: 1rem;
        margin: 0;
        border-radius: 12px;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 0.9rem;
    }
    
    .legal-section li {
        padding: 0.6rem 0 0.6rem 1.5rem;
    }
    
    /* Ensure icons are visible on mobile for legal pages */
    .legal-section li::before {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        line-height: 1;
    }
}

/* ====== FONT AWESOME FALLBACK ICONS ====== */
/* Download Icon */
.fa-download::before {
    content: "⬇";
    font-weight: bold;
}

/* Desktop Icon */
.fa-desktop::before {
    content: "🖥";
}

/* Layer Group Icon */
.fa-layer-group::before {
    content: "📑";
}

/* Gamepad Icon */
.fa-gamepad::before {
    content: "🎮";
}

/* Keyboard Icon */
.fa-keyboard::before {
    content: "⌨";
}

/* Clock Icon */
.fa-clock::before {
    content: "🕐";
}

/* Music Icon */
.fa-music::before {
    content: "🎵";
}

/* Bell Icon */
.fa-bell::before {
    content: "🔔";
}

/* Cogs Icon */
.fa-cogs::before {
    content: "⚙";
}

/* Play Icon */
.fa-play::before {
    content: "▶";
}

/* Check Icon */
.fa-check::before {
    content: "✓";
}

/* ====== CUSTOM SCROLLBAR ====== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1b2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #8b5cf6, #3b82f6);
}

::selection {
    background: #3b82f644;
    color: #fff;
}

::-moz-selection {
    background: #3b82f644;
    color: #fff;
}
