@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazir-font@v30.1.0/dist/font-face.css');

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

body {
    font-family: 'Vazir', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a0a0a 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 127, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 127, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 127, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Header */
.header {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 255, 127, 0.1);
    border-bottom: 1px solid rgba(0, 255, 127, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ff7f, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 127, 0.5);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00ff7f, #00d4aa);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #00ff7f;
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.5);
}

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

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 255, 127, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 255, 127, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffffff, #00ff7f, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(0, 255, 127, 0.3);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #00ff7f, #00d4aa);
    color: #000000;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 25px rgba(0, 255, 127, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    z-index: 1;
}

.cta-button::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;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(0, 255, 127, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button:hover::before {
    left: 100%;
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
}

.screenshots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 127, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 127, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.screenshot-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 127, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.screenshot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 255, 127, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 255, 127, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.screenshot-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.1), rgba(0, 212, 170, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.screenshot-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px 15px 0 0;
    background: rgba(0, 0, 0, 0.1);
}

.screenshot-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.screenshot-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.screenshot-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 10%, rgba(0, 255, 127, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(0, 255, 127, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #00ff7f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 127, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 255, 127, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 255, 127, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 255, 127, 0.5));
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    fill: #00ff7f;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* How it Works */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 127, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 127, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 127, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 255, 127, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 255, 127, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.step:hover::before {
    opacity: 1;
}

.step-number {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00ff7f, #00d4aa);
    color: #000000;
    border-radius: 50%;
    line-height: 80px;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 8px 25px rgba(0, 255, 127, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.step h3 {
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    text-align: center;
    position: relative;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 255, 127, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    padding: 18px 30px;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.download-btn::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.5s ease;
}

.download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 255, 127, 0.3);
    border-color: rgba(0, 255, 127, 0.5);
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn.windows {
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.2), rgba(0, 120, 212, 0.1));
    border-color: rgba(0, 120, 212, 0.3);
}

.download-btn.windows:hover {
    box-shadow: 0 15px 30px rgba(0, 120, 212, 0.4);
}

.download-btn.mac {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
    border-color: rgba(255, 255, 255, 0.3);
}

.download-btn.mac:hover {
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.download-btn.linux {
    background: linear-gradient(135deg, rgba(245, 108, 66, 0.2), rgba(245, 108, 66, 0.1));
    border-color: rgba(245, 108, 66, 0.3);
}

.download-btn.linux:hover {
    box-shadow: 0 15px 30px rgba(245, 108, 66, 0.4);
}

.download-btn.android {
    background: linear-gradient(135deg, rgba(61, 220, 132, 0.2), rgba(61, 220, 132, 0.1));
    border-color: rgba(61, 220, 132, 0.3);
}

.download-btn.android:hover {
    box-shadow: 0 15px 30px rgba(61, 220, 132, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 127, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 255, 127, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 2rem;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    color: #00ff7f;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 255, 127, 0.3);
    background: rgba(0, 255, 127, 0.1);
    border-color: rgba(0, 255, 127, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .feature-card, .step, .screenshot-card {
        padding: 2rem 1.5rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 127, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 255, 127, 0.6);
    }
}

.feature-card, .step, .screenshot-card {
    animation: fadeInUp 0.8s ease-out;
}

.cta-button {
    animation: glow 2s ease-in-out infinite;
}

/* Floating particles effect */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(0, 255, 127, 0.5);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    margin: 5% auto;
    padding: 0;
    border: 1px solid rgba(0, 255, 127, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 255, 127, 0.2);
    animation: slideIn 0.3s ease;
}

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

.modal-header h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, #ffffff, #00ff7f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.close {
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    color: #00ff7f;
    background: rgba(0, 255, 127, 0.1);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
    color: #ffffff;
}

.guide-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 127, 0.1);
}

.guide-section h3 {
    color: #00ff7f;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.guide-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.guide-section ul {
    color: rgba(255, 255, 255, 0.8);
    padding-right: 1.5rem;
    line-height: 1.7;
}

.guide-section li {
    margin-bottom: 0.5rem;
}

.code-block {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 127, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
    position: relative;
}

.code-block h4 {
    color: #00ff7f;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.code-block code {
    background: rgba(0, 0, 0, 0.5);
    color: #00ff7f;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    display: block;
    border: 1px solid rgba(0, 255, 127, 0.2);
    word-break: break-all;
    line-height: 1.5;
}

.modal-footer {
    padding: 2rem;
    border-top: 1px solid rgba(0, 255, 127, 0.2);
    text-align: center;
    background: rgba(0, 255, 127, 0.05);
    border-radius: 0 0 20px 20px;
}

.download-link-btn {
    display: inline-block;
    background: linear-gradient(45deg, #00ff7f, #00d4aa);
    color: #000000;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 255, 127, 0.3);
}

.download-link-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 255, 127, 0.4);
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Installation Guide Styles */
.installation-guide {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.05) 0%, rgba(0, 212, 170, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 127, 0.2);
    position: relative;
    overflow: hidden;
}

.installation-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 127, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 127, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.guide-container {
    position: relative;
    z-index: 1;
}

.guide-container h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #00ff7f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 127, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(0, 255, 127, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 255, 127, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.step-item:hover::before {
    opacity: 1;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00ff7f, #00d4aa);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 
        0 8px 25px rgba(0, 255, 127, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.step-content strong {
    color: #00ff7f;
    font-weight: 700;
}

.step-image {
    margin-top: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 127, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 127, 0.2);
    transition: all 0.3s ease;
}

.step-image:hover {
    transform: scale(1.05);
    border-color: rgba(0, 255, 127, 0.6);
    box-shadow: 0 15px 40px rgba(0, 255, 127, 0.3);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.success-message {
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.2), rgba(0, 212, 170, 0.2));
    border: 1px solid rgba(0, 255, 127, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.success-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

.success-message span {
    color: #00ff7f;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* macOS Guide Steps */
.mac-guide-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.mac-guide-steps .step-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 255, 127, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mac-guide-steps .step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mac-guide-steps .step-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 255, 127, 0.4);
    box-shadow: 0 10px 25px rgba(0, 255, 127, 0.15);
}

.mac-guide-steps .step-item:hover::before {
    opacity: 1;
}

.mac-guide-steps .step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00ff7f, #00d4aa);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 255, 127, 0.3);
    position: relative;
    z-index: 1;
}

.mac-guide-steps .step-content {
    position: relative;
    z-index: 1;
}

.mac-guide-steps .step-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.mac-guide-steps .step-image {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 127, 0.3);
    box-shadow: 0 5px 15px rgba(0, 255, 127, 0.2);
    transition: all 0.3s ease;
}

.mac-guide-steps .step-image:hover {
    transform: scale(1.02);
    border-color: rgba(0, 255, 127, 0.5);
    box-shadow: 0 8px 20px rgba(0, 255, 127, 0.3);
}

.mac-guide-steps .step-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mac-guide-steps .success-message {
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.2), rgba(0, 212, 170, 0.2));
    border: 1px solid rgba(0, 255, 127, 0.4);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.mac-guide-steps .success-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

.mac-guide-steps .success-message span {
    color: #00ff7f;
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* Responsive Installation Guide */
@media (max-width: 768px) {
    .installation-guide {
        margin-top: 3rem;
        padding: 2rem 0;
    }
    
    .guide-container h3 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .guide-steps {
        gap: 2rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .step-image {
        margin-top: 1rem;
    }
    
    .mac-guide-steps {
        gap: 1.5rem;
    }
    
    .mac-guide-steps .step-item {
        padding: 1rem;
    }
    
    .mac-guide-steps .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .guide-section {
        padding: 1rem;
    }
    
    .code-block {
        padding: 1rem;
    }
    
    .code-block code {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
}

/* RTL Support */
.rtl {
    direction: rtl;
}

.ltr {
    direction: ltr;
}
