/* Navbar Styles */
:root {
    --navbar-height: 80px;
    --primary-color: #10a802;
    --secondary-color: #000;
}

.navbar {
    background-color: var(--secondary-color);
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
    height: var(--navbar-height);
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding-right: 40px;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    font-family: 'Poppins', sans-serif;
}

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

.menu-toggle {
    display: none;
}

main {
    padding-top: var(--navbar-height);
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
    }
    
    .logo {
        padding-left: 0;
    }

    .menu-toggle {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1000;
        margin-left: auto;
        align-content: center;
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }

    .nav-links a:hover {
        background-color: rgba(16, 168, 2, 0.1);
    }
}

/* Add margin to main content to account for fixed header */
.hero-section, .hero {
    padding-top: calc(var(--navbar-height) + 40px);
}

/* PS2 BIOS Download Page Styles */
.ps2-bios-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.ps2-bios-section h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    line-height: 1.6;
}

.bios-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.bios-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.bios-info p {
    color: #666;
    line-height: 1.6;
}

.bios-download-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.bios-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.bios-card:hover {
    transform: translateY(-5px);
}

.card-content {
    padding: 2rem;
    text-align: center;
}

.card-content img {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
}

.card-content h3 {
    color: #333;
    margin-bottom: 1.5rem;
}

.card-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, #00c853, #009624);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.2);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.card-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.3);
    background: linear-gradient(135deg, #00e676, #00b020);
}

.card-download:active {
    transform: translateY(1px);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.2);
}

.card-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

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

.card-download i {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.card-download:hover i {
    transform: translateX(3px);
}

.download-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(45deg, var(--primary-color), #4a90e2);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: linear-gradient(45deg, #4a90e2, var(--primary-color));
}

.download-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.download-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

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

.download-button i {
    margin-right: 8px;
    font-size: 1.1em;
    vertical-align: middle;
}

.download-all-section {
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 15px;
}

.all-versions {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 3rem auto;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    width: 90%;
}

.all-versions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #2ecc71);
}

.download-all-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.download-all-info {
    margin-bottom: 25px;
}

.download-all-info h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.download-all-info p {
    color: #ccc;
    font-size: 1.1rem;
}

.mega-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(45deg, #10a802, #2ecc71);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mega-download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 168, 2, 0.3);
}

.mega-download-button .file-size {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-left: 10px;
}

.download-all-content {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.all-versions-text h3 {
    color: #333;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.all-versions-text p {
    color: #666;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 2rem);
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.security-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: clamp(0.9rem, 2vw, 1rem);
    white-space: nowrap;
}

.security-badges i {
    color: var(--primary-color);
    font-size: 1.1em;
}

@media screen and (max-width: 768px) {
    .download-all-card {
        padding: 20px;
    }

    .download-all-info h2 {
        font-size: 1.5rem;
    }

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

    .mega-download-button {
        padding: 12px 24px;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .safety-notice {
        padding: 1.5rem;
        margin: 1.5rem 1rem;
    }

    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .notice-icon {
        width: 56px;
        height: 56px;
    }

    .notice-icon i {
        font-size: 24px;
    }
}

@media screen and (max-width: 768px) {
    .ps2-bios-section {
        padding: 40px 0;
    }

    .ps2-bios-section h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .bios-cards {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .bios-info {
        margin: 0 1rem 3rem;
    }

    .download-all-section {
        margin: 0 1rem;
    }

    .all-versions {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem;
    }

    .safety-notice {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .security-badges {
        justify-content: center;
    }
}

@media screen and (max-width: 1024px) {
    .all-versions {
        padding: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .all-versions {
        padding: 2rem;
        margin: 2rem auto;
        width: 95%;
    }

    .safety-notice {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .security-badges {
        justify-content: center;
    }

    .mega-download-button {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .all-versions {
        padding: 1.5rem;
    }

    .button-content {
        width: 100%;
        justify-content: center;
    }

    .mega-download-button {
        flex-direction: column;
    }

    .button-badge {
        width: 100%;
        text-align: center;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #10a802;
    --secondary-color: #000000;
    --white: #ffffff;
    --gray: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('https://playstationbios.com/images/image gaming ps2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(16, 168, 2, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    margin-top: -80px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-content .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #4a90e2, var(--primary-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-content .download-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.4);
    background: linear-gradient(135deg, var(--primary-color), #4a90e2);
}

.hero-content .download-btn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.hero-content .download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.6s;
}

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

.hero-content .download-btn i {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.hero-content .download-btn:hover i {
    transform: translateY(-2px);
}

/* Responsive adjustments for hero section */
@media screen and (max-width: 968px) {
    .hero {
        background-attachment: scroll; /* Disable parallax on mobile for better performance */
    }
}

@media screen and (max-width: 768px) {
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-content .download-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.features-heading {
    font-size: 32px;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 20px;
}

.features-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

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

.feature-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0d8002);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(16, 168, 2, 0.2);
}

.feature-content h3 {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
}

@media screen and (max-width: 768px) {
    .features-section {
        padding: 3rem 0;
    }

    .features-heading {
        font-size: 28px;
        margin-bottom: 2rem;
    }

    .feature-item {
        padding: 1.5rem;
        gap: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .feature-content h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .features-heading {
        font-size: 24px;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon {
        margin-bottom: 1rem;
    }
}

/* About Page Styles */
.about-section {
    padding: 120px 0 60px;
}

.about-section h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.contact-section h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.contact-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-card i {
    font-size: 2.5rem;
    color: #009624;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.email-link {
    color: #009624;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #007c1d;
    text-decoration: underline;
}

/* Animation for icons */
.bounce {
    animation: bounce 2s infinite;
}

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

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .contact-info {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-section h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-card i {
        font-size: 2rem;
    }

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

@media screen and (max-width: 480px) {
    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 1.25rem;
    }

    .contact-section h1 {
        font-size: 1.75rem;
    }

    .contact-card i {
        font-size: 1.75rem;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }
}

/* Touch Device Optimization */
@media (hover: none) {
    .contact-card:hover {
        transform: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

/* Privacy Policy Styles */
.privacy-section {
    padding: 120px 0 60px;
}

.privacy-section h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style-position: inside;
    margin: 1rem 0;
}

/* BIOS Details Table */
.bios-details {
    margin-top: 3rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.bios-details h3 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.bios-details h3::after {
    display: none;
}

.table-container {
    overflow-x: auto;
}

.details-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.details-table tr {
    transition: background-color 0.3s ease;
}

.details-table tr:hover {
    background-color: #f8f9fa;
}

.details-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.details-table tr:last-child td {
    border-bottom: none;
}

.details-table .label {
    color: #6c757d;
    font-weight: 500;
    width: 40%;
}

.details-table .value {
    color: #212529;
    font-weight: 400;
}

/* Responsive Table Styles */
@media screen and (max-width: 768px) {
    .bios-details {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .bios-details h3 {
        font-size: 20px;
        margin-bottom: 1rem;
    }

    .details-table td {
        padding: 0.75rem;
    }
}

@media screen and (max-width: 480px) {
    .bios-details {
        padding: 1rem;
    }

    .details-table .label {
        width: 45%;
    }

    .details-table td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Content Section */
.content-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.demo-heading {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.demo-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.content-text {
    max-width: 900px;
    margin: 0 auto;
}

.content-text h3 {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.content-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.content-text p {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

.content-text p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for content section */
@media screen and (max-width: 768px) {
    .content-section {
        padding: 3rem 1.5rem;
    }

    .demo-heading {
        font-size: 22px;
    }

    .content-text h3 {
        font-size: 20px;
        margin-top: 2rem;
        margin-bottom: 1.25rem;
    }

    .content-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media screen and (max-width: 480px) {
    .content-section {
        padding: 2rem 1rem;
    }

    .demo-heading {
        font-size: 20px;
    }

    .content-text h3 {
        font-size: 18px;
        margin-top: 1.75rem;
        margin-bottom: 1rem;
    }
}

/* Footer Styles */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #ffffff; /* White color for footer links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #10a802; /* Primary green color on hover */
}

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

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: 0.5rem;
    margin-top: -3rem;
}

.footer-disclaimer {
    margin-top: -1rem;
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1000;
        margin-left: auto;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--white);
        transition: all 0.3s ease;
        border-radius: 3px;
    }

    .menu-toggle.active span:first-child {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:last-child {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--secondary-color);
        padding-top: 80px;
        z-index: 998;
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        color: var(--white);
        font-size: 1.2rem;
    }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

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

    .hero p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

@media screen and (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .about-section,
    .contact-section,
    .privacy-section {
        padding: 100px 20px 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .download-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .nav-links {
        width: 100%;
    }
}

/* Menu Toggle Animation */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* BIOS Versions Section */
.bios-versions {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.bios-versions h2 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 32px;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
}

.bios-versions h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #2ecc71);
    border-radius: 2px;
}

.version-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

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

.version-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.version-card:hover {
    transform: translateY(-5px);
}

.version-card::before {
    display: none;
}

.version-number {
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.1);
}

.version-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0d8002);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.version-icon i {
    color: white;
    font-size: 24px;
}

.version-content {
    flex: 1;
    position: relative;
}

.version-content h3 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.version-content .region {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9em;
}

.version-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Responsive Versions Section */
@media screen and (max-width: 1024px) {
    .versions-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media screen and (max-width: 768px) {
    .bios-versions {
        padding: 3rem 0;
    }

    .bios-versions h2 {
        font-size: 28px;
    }

    .version-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .version-card {
        padding: 1.5rem;
    }

    .version-icon {
        width: 50px;
        height: 50px;
    }

    .version-number {
        font-size: 32px;
    }

    .version-content h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .bios-versions h2 {
        font-size: 24px;
    }

    .version-card {
        flex-direction: column;
        padding: 1.25rem;
        text-align: center;
    }

    .version-icon {
        margin: 0 auto 1rem;
    }

    .version-number {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 0.5rem;
    }

    .version-content h3 {
        font-size: 18px;
    }
}

/* Download Section Styles */
.download-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.download-box {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #0d8002);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.download-box:hover::before {
    opacity: 1;
}

.download-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), #0d8002);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: transform 0.3s ease;
}

.download-box:hover .download-icon {
    transform: scale(1.1) rotate(5deg);
}

.download-icon i {
    color: white;
    font-size: 36px;
}

.download-box h2 {
    color: var(--secondary-color);
    font-size: 28px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.download-text {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.download-button-container {
    text-align: center;
    margin: 1.5rem 0;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 168, 2, 0.2);
}

.download-button:hover {
    background: #0d8002;
    transform: translateY(-2px);
}

.download-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.download-button:hover i {
    transform: translateX(5px);
}

/* Responsive Download Section */
@media screen and (max-width: 768px) {
    .download-section {
        padding: 4rem 0;
    }

    .download-box {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem;
    }

    .download-icon {
        width: 80px;
        height: 80px;
    }

    .download-icon i {
        font-size: 32px;
    }

    .download-box h2 {
        font-size: 24px;
    }

    .download-text {
        font-size: 1rem;
    }

    .download-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .download-section {
        padding: 3rem 0;
    }

    .download-box {
        padding: 2rem 1.25rem;
    }

    .download-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .download-icon i {
        font-size: 28px;
    }

    .download-box h2 {
        font-size: 22px;
    }

    .download-button {
        padding: 0.8rem 1.8rem;
    }
}

/* Emulators Section Styles */
.emulators-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.emulator-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.emulator-image {
    flex: 0 0 45%;
    border-radius: 15px;
    overflow: hidden;
}

.emulator-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.emulator-content {
    flex: 1;
}

.emulator-content h4 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.emulator-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Responsive Styles */
@media screen and (max-width: 968px) {
    .emulator-item {
        flex-direction: column;
        padding: 1.5rem;
    }

    .emulator-image {
        flex: 0 0 100%;
        margin-bottom: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .section-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .emulator-item {
        margin: 0 1rem 2rem;
        padding: 1.25rem;
    }

    .emulator-content h4 {
        font-size: 20px;
    }
}

/* Windows & Mac Section Styles */
.windows-mac-section {
    padding: 2rem 0;
    background: #f8f9fa;
}

.windows-mac-section + .windows-mac-section {
    padding-top: 0;
}

.windows-mac-list {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0;
    list-style: none;
}

.windows-mac-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.windows-mac-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.windows-mac-list li strong {
    color: var(--primary-color);
    font-weight: 600;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.windows-mac-image {
    max-width: 400px;
    margin: 2rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

/* Installation Guide Section */
.installation-guide {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.installation-guide .demo-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.installation-guide .demo-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1rem;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.guide-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.installation-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
}

.step-title {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.step-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.step-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.step-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.note-box {
    background: rgba(16, 168, 2, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    .step-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-item {
        padding: 1.5rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-text {
        font-size: 1rem;
    }
}

.image-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.popup-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.close-popup {
    position: absolute;
    top: -30px;
    right: -30px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.installation-guide .step-image img {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.installation-guide .step-image img:hover {
    opacity: 0.9;
}

.alert-container {
    background: rgba(16, 168, 2, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem auto;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 800px;
    width: 90%;
}

.alert-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-content {
    flex-grow: 1;
}

.alert-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.alert-text {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.android-guide {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.android-guide .demo-heading {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.android-guide .demo-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1rem;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.android-guide-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.android-steps {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.android-step-container {
    margin-bottom: 4rem;
}

.android-step {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

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

.android-step-number {
    background: var(--primary-color);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.android-step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
}

.android-step-content {
    color: #666;
    line-height: 1.6;
}

.android-image-container {
    margin: 2rem 0;
    text-align: center;
}

.android-image {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.android-image:hover {
    transform: translateY(-5px);
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 1rem 0;
}

.download-button:hover {
    background: #0d8002;
    transform: translateY(-2px);
}

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

.path-highlight {
    background: rgba(16, 168, 2, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    color: var(--primary-color);
}

.faq-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-heading {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.faq-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1rem;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    color: #333;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

/* PCSX2 Guide Styles */
.pcsx2-guide {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.pcsx2-guide h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
    font-size: 2.5rem;
}

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

.step {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

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

.step p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.guide-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

.guide-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

@media screen and (max-width: 768px) {
    .pcsx2-guide h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

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

    .step {
        padding: 1.5rem;
    }
}

/* PS1 BIOS Page Styles */
.hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 130px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(16, 168, 2, 0.2) 0%, transparent 70%);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.animated-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    animation: slideIn 1s ease-out;
}

.animated-text {
    font-size: 1.2rem;
    color: #cccccc;
    animation: fadeIn 1s ease-out 0.5s both;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.bios-info-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-50px);
    margin-top: -30px;
    position: relative;
    z-index: 1;
}

.info-card h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.info-card p {
    color: #666;
    line-height: 1.8;
}

.downloads-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.region-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.region-card:hover {
    transform: translateY(-10px);
}

.region-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.region-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    z-index: 2;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0% {
        transform: scale(1);
        text-shadow: 0 0 10px var(--primary-color);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 20px var(--primary-color),
                     0 0 30px var(--primary-color);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 10px var(--primary-color);
    }
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.region-card:hover .glow-effect {
    opacity: 0.2;
    animation: rotate 2s linear infinite;
}

.region-card:hover .region-icon i {
    animation: pulse-icon 1s infinite;
}

.region-card h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.glow-button {
    background: linear-gradient(45deg, var(--primary-color), #2ecc71);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glow-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.3s ease-out;
}

.glow-button:hover::before {
    transform: scale(1);
}

.glow-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.all-versions {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.accent-text {
    color: var(--primary-color);
    font-weight: bold;
}

.mega-download-button {
    background: linear-gradient(45deg, var(--primary-color), #2ecc71);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    margin: 1.5rem 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mega-download-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.3s ease-out;
}

.mega-download-button:hover::after {
    transform: scale(1);
}

.mega-download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.4);
}

.safety-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #2ecc71;
    margin-top: 1.5rem;
    font-weight: 500;
}

.safety-badge i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

@media screen and (max-width: 768px) {
    .hero-section {
        padding: 85px 0;
    }

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

    .info-card {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    .region-grid {
        padding: 0 1rem;
    }

    .all-versions {
        margin: 2rem 1rem;
    }
}

@media screen and (max-width: 1200px) {
    .region-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .region-grid {
        grid-template-columns: 1fr;
    }
}

/* PS1 BIOS Download Styles */
.bios-downloads {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.download-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.download-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.download-info {
    margin-bottom: 15px;
}

.download-info h3 {
    margin: 10px 0;
    color: #333;
    font-size: 1.2rem;
}

.download-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 5px 0;
}

.region-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}

.region-tag.japan {
    background: linear-gradient(45deg, #e60012, #ff1a1a);
}

.region-tag.usa {
    background: linear-gradient(45deg, #0052B4, #0066cc);
}

.region-tag.eur {
    background: linear-gradient(45deg, #003399, #0044cc);
}

.region-tag.asia {
    background: linear-gradient(45deg, #FFD700, #FFA500);
}

.download-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: all 0.3s ease;
}

.download-button:hover {
    background: #28a745;
    transform: scale(1.05);
}

.download-button:active {
    transform: translateY(1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.download-table {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.download-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.download-row:nth-child(even) {
    background-color: #f8f9fa;
}

.download-row:hover {
    background-color: #f0f0f0;
}

.bios-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ps-icon {
    width: 24px;
    height: 24px;
}

.bios-info span {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
}

.download-btn {
    background: #10a802;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #0d8d02;
    transform: translateY(-2px);
}

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

@media screen and (max-width: 768px) {
    .download-row {
        padding: 12px 15px;
    }

    .bios-info span {
        font-size: 0.9rem;
    }

    .download-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

.bios-table {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    overflow: hidden;
    width: 100%;
}

.bios-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.bios-row:last-child {
    border-bottom: none;
}

.bios-row:hover {
    background-color: #f8f9fa;
}

.bios-name {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.bios-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
    justify-content: center;
}

.bios-btn:hover {
    background: #28a745;
    transform: translateY(-2px);
}

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

@media screen and (max-width: 768px) {
    .bios-row {
        padding: 0.8rem 1.2rem;
    }
    
    .bios-name {
        font-size: 0.9rem;
    }
    
    .bios-btn {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
        min-width: 100px;
    }
}

@media screen and (max-width: 480px) {
    .bios-row {
        padding: 0.8rem 1rem;
    }
    
    .bios-name {
        font-size: 0.85rem;
        margin-right: 1rem;
    }
    
    .bios-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-width: 80px;
    }
    
    .bios-btn i {
        display: none;
    }
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

@media screen and (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .section-heading {
        font-size: 1.8rem;
    }
}

/* Guides Page Styles */
.guides-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.guides-hero .section-heading {
    color: white;
    margin-bottom: 1rem;
}

.guides-hero .section-description {
    font-size: 1.2rem;
    opacity: 0.9;
}

.guides-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.guide-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.guide-card a {
    text-decoration: none;
    color: inherit;
}

.guide-thumbnail {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.guide-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.guide-card:hover .guide-thumbnail img {
    transform: scale(1.05);
}

.guide-content {
    padding: 1.5rem;
}

.guide-content h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

.guide-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.guide-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #888;
}

.guide-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.guide-meta i {
    font-size: 0.9rem;
    color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    .guides-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .guide-content h2 {
        font-size: 1.2rem;
    }

    .guide-content p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .guides-hero {
        padding: 3rem 0;
    }

    .guides-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .guide-content {
        padding: 1.2rem;
    }
}

.guide-article {
    padding: 4rem 0;
    background: #f8f9fa;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #666;
    font-size: 0.9rem;
}

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

.article-meta i {
    color: var(--primary-color);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.article-content h2 {
    font-size: 1.8rem;
    color: #333;
    margin: 2rem 0 1rem;
}

.article-content h3 {
    font-size: 1.4rem;
    color: #444;
    margin: 1.5rem 0 1rem;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.article-content ul, 
.article-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.article-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

.info-box {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

.info-box h3 {
    color: #333;
    margin-top: 0;
}

.troubleshooting-section {
    background: #fff8f8;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.conclusion {
    background: #f0f8ff;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

@media screen and (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }

    .article-meta {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .article-content {
        padding: 1.5rem;
    }

    .article-content h2 {
        font-size: 1.6rem;
    }

    .article-content h3 {
        font-size: 1.3rem;
    }

    .article-content p,
    .article-content li {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .article-header h1 {
        font-size: 1.8rem;
    }

    .article-content {
        padding: 1.2rem;
    }

    .info-box,
    .troubleshooting-section,
    .conclusion {
        padding: 1.2rem;
    }
}

/* Troubleshooting Section Styles */
.troubleshooting-section {
    padding: 40px 0 20px;
    background: #f8f9fa;
    margin-top: 30px;
}

.troubleshooting-section .section-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.troubleshooting-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.troubleshooting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.troubleshooting-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.troubleshooting-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 25px;
}

.card-link {
    color: #007bff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    position: absolute;
    bottom: 25px;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #0056b3;
}

.card-link i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(5px);
}

.troubleshooting-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.troubleshooting-cta p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #555;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #007bff;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .troubleshooting-grid {
        grid-template-columns: 1fr;
    }
    
    .troubleshooting-section {
        padding: 60px 0;
    }
    
    .troubleshooting-card {
        padding-bottom: 70px;
    }
}

/* Update the grid to show all cards in one row */
.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

/* Make heading more attractive */
.troubleshooting-section h2.demo-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 20px;
}

.troubleshooting-section h2.demo-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--theme-color);
    border-radius: 2px;
}

/* Update card styling with theme color */
.troubleshooting-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--theme-color);
    margin-bottom: 20px;
}

.card-link {
    color: var(--theme-color);
}

.card-link:hover {
    color: var(--theme-hover-color);
}

.cta-button {
    background: var(--theme-color);
}

.cta-button:hover {
    background: var(--theme-hover-color);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .troubleshooting-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .troubleshooting-grid {
        grid-template-columns: 1fr;
    }
    
    .troubleshooting-section h2.demo-heading {
        font-size: 2rem;
    }
}

/* PS2 BIOS Installation Guide Section */
.installation-guide-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.installation-guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(var(--theme-color-rgb), 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(var(--theme-color-rgb), 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.guide-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
    position: relative;
    display: inline-block;
}

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

.guide-steps {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(var(--theme-color-rgb), 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

.step-number {
    width: 50px;
    height: 50px;
    background: var(--theme-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(var(--theme-color-rgb), 0.3);
}

.step h3 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.step p {
    color: #aaa;
    font-size: 1.1rem;
    line-height: 1.6;
    grid-column: 2;
}

.guide-cta {
    margin-top: 40px;
}

.guide-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--theme-color);
    color: #fff;
    padding: 20px 35px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(var(--theme-color-rgb), 0.3);
}

.guide-button:hover {
    background: var(--theme-hover-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(var(--theme-color-rgb), 0.4);
}

.button-text {
    display: flex;
    flex-direction: column;
}

.main-text {
    font-size: 1.3rem;
    font-weight: 600;
}

.sub-text {
    font-size: 0.95rem;
    opacity: 0.8;
}

.button-icon {
    font-size: 1.3rem;
    transition: transform 0.4s ease;
}

.guide-button:hover .button-icon {
    transform: translateX(8px);
}

.guide-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.4s ease;
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

.image-container:hover img {
    transform: scale(1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--theme-color-rgb), 0.2) 0%, transparent 100%);
    pointer-events: none;
}

@media (max-width: 1024px) {
    .guide-content {
        grid-template-columns: 1fr;
    }

    .guide-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto 50px;
    }

    .guide-text h2 {
        text-align: center;
        font-size: 2.4rem;
    }

    .step:hover {
        transform: translateX(0);
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .installation-guide-section {
        padding: 60px 0;
    }

    .guide-text h2 {
        font-size: 2rem;
    }

    .step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }

    .step-number {
        grid-column: 1;
    }

    .step p {
        grid-column: 1;
    }
}

/* Setup Guide Section */
.setup-guide-section {
    padding: 70px 0;
    background: var(--theme-color);
    position: relative;
    overflow: hidden;
}

.setup-guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.setup-header {
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.setup-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.setup-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.setup-steps {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    justify-content: center;
}

.setup-step {
    flex: 1;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.setup-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2rem;
    color: #fff;
}

.step-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: #fff;
    color: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-details h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-details p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.setup-action {
    text-align: center;
}

.setup-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--theme-color);
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.setup-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.setup-button i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.setup-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .setup-steps {
        flex-direction: column;
        align-items: center;
    }

    .setup-step {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .setup-guide-section {
        padding: 50px 0;
    }

    .setup-header h2 {
        font-size: 2.2rem;
    }

    .setup-header p {
        font-size: 1.1rem;
    }

    .setup-button {
        width: 100%;
        justify-content: center;
    }
}

/* Guide Section Styles */
.guide-section {
    padding: 60px 0;
    background: #fff;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.guide-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 2rem;
    color: var(--theme-color);
}

.guide-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.guide-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more {
    color: var(--theme-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.learn-more i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: var(--theme-hover-color);
}

.learn-more:hover i {
    transform: translateX(5px);
}

.guide-cta {
    text-align: center;
}

.guide-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgb(32, 14, 14);
    color: var(--white);
    
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid var(--theme-color);
    transition: all 0.3s ease;
}

.guide-button:hover {
    background: #200e0e;
    color: #00be00;
}

.guide-button i {
    font-size: 0.9em;
}

@media (max-width: 1200px) {
    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .guide-card {
        padding: 25px;
    }

    .guide-button {
        width: 100%;
        justify-content: center;
    }
}

/* Alert Box Styles */
.alert-box {
    background: rgba(0, 200, 0, 0.1);
    border: 1px solid #00be00;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 15px auto;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.5s ease-out, pulse 2s infinite;
}

.alert-box i {
    color: #00be00;
    font-size: 1.2rem;
}

.alert-box p {
    color: #006600;
    margin: 0;
    font-size: 0.95rem;
}

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

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

/* Download Card Responsive Styles */
@media screen and (max-width: 768px) {
    .download-card {
        max-width: 90%;
        margin: 1rem auto;
        padding: 1.5rem;
    }

    .download-card h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

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

    .download-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin: 1rem auto;
        width: 100%;
        max-width: 250px;
    }

    .file-size {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }

    .security-features {
        margin-top: 1.5rem;
        padding: 1rem;
    }

    .security-features li {
        font-size: 0.85rem;
        margin: 0.5rem 0;
        padding-left: 1.5rem;
    }

    .security-features li:before {
        font-size: 0.8rem;
        left: 0;
    }
}

@media screen and (max-width: 480px) {
    .download-card {
        max-width: 95%;
        padding: 1.25rem;
        margin: 0.75rem auto;
    }

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

    .download-button {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
        max-width: 200px;
    }

    .security-features {
        margin-top: 1.25rem;
        padding: 0.75rem;
    }

    .security-features li {
        font-size: 0.8rem;
        margin: 0.4rem 0;
    }
}

/* Touch Device Optimization */
@media (hover: none) {
    .download-button:hover {
        transform: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

.download-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    max-width: 450px;
    margin: 2rem auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.download-card h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.download-card p {
    color: #666;
    margin: 0.5rem auto 1.5rem;
    line-height: 1.6;
    max-width: 300px;
}

.download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00be00;
    color: #ffffff;
    padding: 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 1.5rem auto;
    width: 80%;
    max-width: 300px;
    font-size: 1rem;
    gap: 8px;
    position: relative;
}

.download-button i {
    margin-right: 5px;
    font-size: 1.1em;
}

.file-size {
    color: #888;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

.security-features {
    margin: 3rem auto 1rem;
    padding: 0;
    max-width: 300px;
    text-align: center;
}

.security-features li {
    color: #555;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-features li:before {
    content: "✓";
    color: #00be00;
    margin-right: 8px;
}

.security-icon {
    width: 40px;
    height: 40px;
    margin: 2rem auto;
    display: block;
}

.notice-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.notice-icon i {
    font-size: 2.5rem;
    color: #00be00;
}

.safety-notice {
    text-align: center;
    margin-top: 2rem;
}