        :root {
            --secondary-color: #9370DB;
            --text-color: #E0E0E0;
            --text-color-light: #B0B0B0;
            --card-background: #272744;
            --card-border-color: #3B3B6B;
            --primary-color: #1A1A2E;
        }

        main {
            padding: 2rem 1rem;
        }

        /* General section styling */
        .product-section {
            max-width: 1100px;
            margin: 4rem auto;
            padding: 2rem;
            background-color: var(--primary-color);
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

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

        .product-section h3 {
            font-size: 2.2rem;
            color: var(--secondary-color);
            margin-top: 0;
            margin-bottom: 0;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 0.5rem;
            display: inline-block;
        }

        /* Intro Section - Enhanced */
        #product-intro {
            background: linear-gradient(135deg, #2c2c4e 0%, var(--card-background) 100%);
            padding: 5rem 2rem;
            border-radius: 20px;
            margin: 2rem auto 4rem auto; /* Added bottom margin to match section spacing */
            max-width: 1200px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 3rem;
            overflow: hidden; /* To contain animations */
            border: 1px solid var(--card-border-color);
        }

        .intro-content {
            flex: 1.2; /* Give a bit more space to text */
            animation: slideInFromLeft 1s ease-out forwards;
        }

        .intro-content h2 {
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        /* The HTML uses a class 'product-description' for the intro paragraph */
        .intro-content .product-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-color);
            margin-bottom: 2.5rem;
        }

        .intro-image {
            flex: 1;
            text-align: center;
            animation: fadeIn 1.5s ease-out forwards;
        }

        .intro-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.25);
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .intro-image img:hover {
            transform: scale(1.05) rotate(1deg);
        }

        /* Enhanced CTA button, replacing the old .cta-button style */
        .cta-button {
            display: inline-block;
            padding: 16px 35px;
            font-size: 1.1rem;
            font-weight: bold;
            background-image: linear-gradient(45deg, var(--secondary-color) 0%, var(--hover-color) 100%);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(147, 112, 219, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(147, 112, 219, 0.5);
        }

        /* Keyframe animations */
        @keyframes slideInFromLeft {
            0% { opacity: 0; transform: translateX(-60px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeIn {
            0% { opacity: 0; transform: scale(0.95); }
            100% { opacity: 1; transform: scale(1); }
        }

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

        .feature-card {
            background-color: var(--card-background);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--secondary-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        
        .feature-card:hover { transform: translateY(-5px); box-shadow: 0 6px 12px rgba(0,0,0,0.2); }
        .feature-card h4 { margin-top: 0; margin-bottom: 0.5rem; color: var(--text-color); }
        .feature-card p { color: var(--text-color-light); font-size: 0.95rem; line-height: 1.6; margin: 0; }

        /* How to Use Section */
        .steps-container { display: flex; flex-direction: column; gap: 1.5rem; }
        .step { background-color: var(--card-background); padding: 1.5rem; border-radius: 8px; display: flex; align-items: center; gap: 1.5rem; }
        .step-number { font-size: 2rem; font-weight: bold; color: var(--secondary-color); background-color: rgba(30, 136, 229, 0.1); border-radius: 50%; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .step-number { font-size: 2rem; font-weight: bold; color: var(--secondary-color); background-color: rgba(147, 112, 219, 0.1); border-radius: 50%; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .step-content h4 { margin: 0 0 0.5rem 0; color: var(--text-color); }
        .step-content p { margin: 0; color: var(--text-color-light); }

        /* Gallery Section */
        #gallery p { text-align: center; color: var(--text-color-light); margin-top: -1rem; margin-bottom: 2rem; }
        .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; }
        .gallery-grid img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            border: 2px solid var(--card-border-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        .gallery-grid img:hover { transform: scale(1.05); box-shadow: 0 5px 20px rgba(147, 112, 219, 0.3); border-color: var(--secondary-color); }

        /* Download Modal Styles */
        .modal {
            display: none; /* Hidden by default */
            position: fixed; /* Stay in place */
            z-index: 1000; /* Sit on top */
            left: 0;
            top: 0;
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            overflow: auto; /* Enable scroll if needed */
            background-color: rgba(18, 28, 45, 0.6);
            background-color: rgba(26, 26, 46, 0.6); /* Updated to new primary color RGB */
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: var(--primary-color);
            margin: 10% auto;
            padding: 2rem 2.5rem;
            border: 1px solid var(--card-border-color);
            width: 90%;
            max-width: 700px;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.5);
            position: relative;
            text-align: center;
            animation: fadeIn 0.3s ease-in-out;
        }

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

        .close-button {
            color: var(--text-color-light);
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 28px;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .close-button:hover,
        .close-button:focus {
            color: var(--secondary-color);
            text-decoration: none;
            cursor: pointer;
        }

        .modal-content h3 {
            color: var(--secondary-color);
            font-size: 2rem;
            margin-top: 0;
            margin-bottom: 0.5rem;
            border-bottom: none;
            display: block;
        }

        .modal-content p {
            color: var(--text-color-light);
            margin-bottom: 2rem;
        }

        .download-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
        }

        .download-link {
            background-color: var(--card-background);
            border: 2px solid var(--card-border-color);
            border-radius: 8px;
            padding: 1.5rem 1rem;
            text-decoration: none;
            color: var(--text-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        
        .download-link:hover {
            transform: translateY(-5px);
            border-color: var(--secondary-color);
            box-shadow: 0 4px 15px rgba(147, 112, 219, 0.2);
        }

        .download-link span { font-size: 1.2rem; font-weight: bold; }
        .download-link small { font-size: 0.9rem; color: var(--text-color-light); }
        .download-link [class^="download-icon-"] { width: 40px; height: 40px; margin-bottom: 0.5rem; background-size: contain; background-repeat: no-repeat; background-position: center; display: inline-block; }
        .download-icon-windows {
            background-image: url("Images/Windows 8.png");
        }
        .download-icon-linux { background-image: url("Images/Linux.png"); }
        .download-icon-github { background-image: url("Images/GitHub.png"); }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            #product-intro {
                flex-direction: column;
                text-align: center;
                padding: 3rem 1.5rem;
                gap: 2rem;
            }
            #product-intro .intro-content h2 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .modal-content {
                width: 95%;
                padding: 1.5rem;
                margin-top: 20%;
            }
            .download-options {
                grid-template-columns: 1fr; /* Stack on smaller screens */
            }
        }

        /* Contact Modal Specific Styles */
        #contact-modal .modal-content {
            max-width: 600px; /* Adjust width for contact info */
            padding: 2.5rem 2rem;
        }

        #contact-modal .modal-content h3 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        .contact-info-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 2rem;
            text-align: center;
        }

        .profile-picture {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--secondary-color);
            margin-bottom: 1.5rem;
            box-shadow: 0 0 15px rgba(147, 112, 219, 0.4);
        }

        .user-description {
            font-size: 1rem;
            color: var(--text-color-light);
            line-height: 1.6;
            max-width: 450px;
            margin: 0 auto;
        }

        .social-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        .social-link-item {
            background-color: var(--card-background);
            border: 1px solid var(--card-border-color);
            border-radius: 8px;
            padding: 1rem;
            text-decoration: none;
            color: var(--text-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .social-link-item:hover {
            transform: translateY(-5px);
            border-color: var(--secondary-color);
            box-shadow: 0 4px 15px rgba(147, 112, 219, 0.2);
        }

        .social-link-item [class^="social-icon-"] {
            width: 40px;
            height: 40px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        /* Feature Guide Accordion */
        .accordion {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            text-align: left;
        }

        .accordion-item {
            border-radius: 8px;
            border: 1px solid var(--card-border-color);
            overflow: hidden;
        }

        .accordion-header {
            background-color: var(--card-background);
            color: var(--text-color);
            cursor: pointer;
            padding: 1.5rem;
            width: 100%;
            border: none;
            text-align: left;
            outline: none;
            font-size: 1.2rem;
            font-weight: bold;
            transition: background-color 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .accordion-header:hover {
            background-color: #2A3B52;
        }

        .accordion-header::after {
            content: '\002B'; /* Plus sign */
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .accordion-header.active::after {
            content: '\2212'; /* Minus sign */
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: var(--card-background);
        }

        .accordion-content-wrapper {
            padding: 1.5rem;
            color: var(--text-color-light);
            line-height: 1.7;
            border-top: 1px solid var(--card-border-color);
        }

        .accordion-content-wrapper p,
        .accordion-content-wrapper ul,
        .accordion-content-wrapper h4 {
            margin-top: 0;
            margin-bottom: 1rem;
        }

        .accordion-content-wrapper h4 {
            color: var(--text-color);
            font-size: 1.1rem;
            margin-top: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--card-border-color);
        }
        .accordion-content-wrapper h4:first-child { margin-top: 0; }
        .accordion-content-wrapper ul { padding-left: 20px; }
        .accordion-content-wrapper li { margin-bottom: 0.75rem; }
        .accordion-content-wrapper code { background-color: var(--primary-color); padding: 2px 6px; border-radius: 4px; font-family: 'Courier New', Courier, monospace; color: var(--secondary-color); font-size: 0.9em; }
        .accordion-content-wrapper strong { color: var(--text-color); font-weight: bold; }

        /* Social Icon Images (You'll need to provide these images) */
        .social-icon-github {
            background-image: url("Images/GitHub.png"); /* Reusing existing GitHub icon */
        }
        .social-icon-instagram {
            background-image: url("Images/instagram.png"); /* Placeholder: Add your Instagram icon */
        }
        .social-icon-reddit {
            background-image: url("Images/Reddit.png"); /* Placeholder: Add your Reddit icon */
        }
        .social-icon-discord {
            background-image: url("Images/discord.png"); /* Placeholder: Add your Discord icon */
        }

        /* Responsive adjustments for contact modal */
        @media (max-width: 600px) {
            #contact-modal .modal-content {
                padding: 1.5rem;
            }
            .profile-picture {
                width: 100px;
                height: 100px;
            }
        }