/* Import the font - add this at the top of styles.css */


/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a1a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #9747FF, #6a1b9a);
    border-radius: 10px;
    border: 2px solid #0a0a1a;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #b57aff, #9747FF);
    box-shadow: 0 0 10px rgba(151, 71, 255, 0.8);
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #9747FF #0a0a1a;
}

.last-updated {
    color: white;
    font-size: 0.9rem;
    margin-left: auto;
}

/* Add this at the top of the file, after the reset styles */
html {
    transition: all 0.3s ease-in-out;
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adjust based on your navbar height */
}

/* Make background fully black */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;  /* Fully black background */
    z-index: -1;
}

html[data-theme="dark"] body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;  /* Fully black background */
    z-index: -1;
}

/* Remove background image and make body fully black */
body {
    line-height: 1.6;
    color: #333;
    background: #000000;
    min-height: 100vh;
    transition: all 0.3s ease-in-out;
}

html[data-theme="dark"] {
    background: #000000;
}

html[data-theme="dark"] body {
    color: whitesmoke;
    background: #000000;
}

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

/* Headings */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Paragraphs */
p {
    margin-bottom: 1rem;
}

/* Header */
header {
    text-align: center;
    padding: 2rem 0;
}

header h1 {
    font-family: 'Inter', 'Verdana', Geneva, sans-serif;
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease-out forwards;
}

.centered-title {
    text-align: center;
    width: 100%;
    font-size: 3.5rem;
    margin: 1rem 0;
}

.gen-tweaks-title-section {
    text-align: center;
    padding: 2rem 0;
}

.main-title {
    font-family: 'Raleway', 'Poppins', 'Roboto Slab', 'Orbitron', 'Montserrat', 'Inter', 'Verdana', Geneva, sans-serif;
    font-size: 5rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 1rem 0;
}

header .subtitle {
    font-family: 'Inter', 'Verdana', Geneva, sans-serif;
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Video showcase */
.video-showcase {
    margin: 2rem 0;
    text-align: center;
    padding: 1rem;
}

.video-showcase h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
}

.video-container video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 15px;
    background: white;
}

/* Remove all video control styling */
video::-webkit-media-controls,
video::-webkit-media-controls-panel {
    background-color: transparent;
}

/* Improved Navbar styling */
.navbar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(151, 71, 255, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.logo:hover {
    text-decoration: none;
    color: #9747FF;
}

.logo-img {
    width: 3.5rem;
    height: 3.5rem;
    filter: drop-shadow(0 0 5px rgba(151, 71, 255, 0.5));
}

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

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    padding: 0.7rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(151, 71, 255, 0.2);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #9747FF;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: #ffffff;
    background: rgba(151, 71, 255, 0.2);
    box-shadow: 0 0 20px rgba(151, 71, 255, 0.4);
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 70%;
    background: #9747FF;
    box-shadow: 0 0 10px rgba(151, 71, 255, 0.8);
}

/* Active link state */
.nav-links a.active {
    background: rgba(151, 71, 255, 0.4);
    border-color: rgba(151, 71, 255, 0.8);
    color: #e0d0ff; /* Brighter purple color */
    box-shadow: 0 0 20px rgba(151, 71, 255, 0.7);
    font-weight: 600;
    transform: translateY(-2px);
}

.nav-links a.active::after {
    width: 100%;
    background: #9747FF;
}

/* Reset button styles */
button {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-family: inherit;
}

/* Improved Hamburger Menu Styles */
.hamburger-wrapper {
    display: none;
    z-index: 100;
}

.background {
    border-radius: 16px;
    border: 1px solid rgba(151, 71, 255, 0.3);
    background: rgba(0, 0, 0, 0.4);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateZ(0);
    cursor: pointer;
    transition: all 0.3s ease;
}

.background:hover {
    border-color: rgba(151, 71, 255, 0.6);
    box-shadow: 0 0 15px rgba(151, 71, 255, 0.4);
}

.menu__icon {
    width: 30px;
    height: 30px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: 8px;
    position: relative;
}

.menu__icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #e0e0e0;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    position: absolute;
}

.menu__icon span:nth-child(1) {
    top: 5px;
}

.menu__icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu__icon span:nth-child(3) {
    bottom: 5px;
}

/* Click animations */
.menu__icon span.active:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
    background-color: #9747FF;
    box-shadow: 0 0 10px rgba(151, 71, 255, 0.8);
}

.menu__icon span.active:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu__icon span.active:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    background-color: #9747FF;
    box-shadow: 0 0 10px rgba(151, 71, 255, 0.8);
}

/* Show hamburger on mobile */
@media screen and (max-width: 768px) {
    .hamburger-wrapper {
        display: block;
        z-index: 100;
        margin-right: 1rem;
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: 1rem;
        width: 200px;
        background-color: rgba(111, 5, 177, 0.95);
        padding: 1.5rem;
        border-radius: 12px;
        display: none;
        flex-direction: column;
        gap: 1rem;
        z-index: 1000;
    }

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

    .nav-links a {
        font-size: 1rem;
        padding: 0.8rem;
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .hamburger-wrapper {
        display: block;
        margin-right: 0.5rem;
    }

    .nav-links {
        width: 180px;
        right: 0.8rem;
        padding: 1.2rem;
    }
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 25, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Adjust main content to account for fixed navbar */
main {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .nav-links a {
        width: 80%;
        margin: 0 auto;
    }

    .hamburger {
        display: block;
    }
}

/* Update existing text colors to whitesmoke */
h1, h2, h3, p {
    color: whitesmoke;
}

.subtitle {
    color: rgba(245, 245, 245, 0.8);
}

/* Download section */
.download-section {
    text-align: center;
    margin: 2rem auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    order: 4;
}

.download-section h3 {
    color: whitesmoke;
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    padding: 0 0.5rem;
}

.button-group .btn {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
    text-align: center;
    display: flex;
    justify-content: center;  /* Center horizontally */
    align-items: center;     /* Center vertically */
    gap: 0.5rem;
}

.button-group .btn i {
    margin: 0;  /* Remove any margin that might affect centering */
}

/* Mobile adjustments */
@media screen and (max-width: 480px) {
    .button-group .btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-secondary:hover {
    background: rgba(151, 71, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(151, 71, 255, 0.8), 0 0 30px rgba(151, 71, 255, 0.6);
}

.btn-primary {
    background: #2d125c;
    color: #e0e0e0;
    border: 1px solid rgba(45, 18, 92, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(151, 71, 255, 0.8), 0 0 30px rgba(151, 71, 255, 0.6);
    background: #2d125c;
    transition: all 0.3s ease-in-out;
}

/* Remove the ::before gradient effect since it was causing the corner issues */
.btn-primary::before {
    display: none;
}

/* Remove the second hover effect */
.btn-primary:hover::before {
    display: none;
}

.btn:hover {
    text-decoration: none;
}

/* Improved Footer with purple accents */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 2.5rem 0;
    margin-top: 4rem;
    transition: all 0.3s ease-in-out;
    color: whitesmoke;
    border-top: 1px solid rgba(151, 71, 255, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left {
    color: whitesmoke;
    text-align: left;
}

.footer-left p {
    color: whitesmoke;
    margin: 0;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    justify-content: flex-end;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.footer-links a:hover {
    color: #ffffff;
    background: rgba(151, 71, 255, 0.2);
    box-shadow: 0 0 15px rgba(151, 71, 255, 0.3);
}

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

.social-link {
    color: whitesmoke;
    font-size: 1.8rem;
    transition: all 0.3s ease-in-out;
}

.social-link:hover {
    color: #9747FF;
    transform: translateY(-3px);
}

/* Media queries update */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        justify-content: center;  /* Center links on mobile */
    }

    .download-section {
        max-width: 100%;  /* Changed from 280px to full width */
        padding: 1.5rem;
        margin: 2rem 1rem;  /* Added horizontal margin */
    }

    .button-group {
        width: 100%;  /* Full width buttons container */
        padding: 0 1rem;  /* Add some padding */
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;  /* Increased padding */
    }
}

/* Hero section */
.hero {
    text-align: center;
    padding: 1rem 0 4rem;
    order: 1;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}

/* For 1440x900 and below */
@media screen and (max-width: 1440px), screen and (max-height: 900px) {
    .hero-main-container {
        justify-content: space-between;
        gap: 1rem;
    }
    
    .hero-text-container {
        align-items: flex-start;
        text-align: left;
    }
    
    .hero-issues, .hero-fix {
        text-align: left;
        width: 100%;
    }
    
    .hero-image-container {
        max-width: 30%;
    }
    
    .hero-pc-image {
        max-width: 90%;
    }
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    /* Reduce space between navbar and hero text even more */
    .hero {
        padding: 0rem 0 0.5rem;
    }
    
    .hero-main-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        text-align: center;
    }
    
    .hero-text-container {
        align-items: center;
        text-align: center;
        width: 100%;
        min-height: 120px;
        padding-left: 5%;
        padding-right: 5%;
    }
    
    /* Make hero text even smaller */
    .hero-issues {
        font-size: 2rem;
        text-align: center;
        width: 100%;
        margin-bottom: 0.3rem;
    }
    
    .hero-fix {
        font-size: 1.5rem;
        text-align: center;
        width: 100%;
        margin-bottom: 0.8rem;
    }
    
    /* Completely remove PC image from DOM on mobile */
    .hero-image-container {
        display: none !important;
    }
    
    /* Make CTA button smaller */
    .hero-cta {
        align-self: center;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Reduce space before services section */
    .services-section {
        padding: 2rem 0 3rem;
    }
    
    .services-section h2 {
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }
}

/* Targeted styles for devices between 400x900 and 500x1000 */
@media screen and (min-width: 400px) and (max-width: 500px) and (min-height: 900px) and (max-height: 1000px) {
    .hero-issues {
        font-size: 2.2rem;
    }
    
    .hero-fix {
        font-size: 1.7rem;
    }
    
    .hero-text-container {
        min-height: 140px;
    }
    
    /* Adjust service card buttons for better fit */
    .card-buttons {
        flex-direction: row;
        gap: 0.3rem;
        padding-top: 0.5rem;
    }
    
    .service-card .btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
        flex: 1;
        min-width: auto;
    }
    
    .info-btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
        flex: 0 0 auto;
        min-width: auto;
    }
}

.hero-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 300px;
    flex: 1;
    position: relative;
    margin-left: 0;
    padding-left: 0;
}

.hero-image-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    max-width: 40%;
}

.hero-pc-image {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.hero-issues {
    font-size: 4.5rem;
    font-weight: 800;
    text-align: left;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background-image: url('pic1.png');
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

/* For 1440x900 and below */
@media screen and (max-width: 1440px), screen and (max-height: 900px) {
    .hero-issues {
        text-align: left;
        font-size: 3.5rem;
    }
}

.hero-fix {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: left;
    margin-bottom: 2rem;
    background-image: url('pic1.png');
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

/* For 1440x900 and below */
@media screen and (max-width: 1440px), screen and (max-height: 900px) {
    .hero-fix {
        text-align: left;
        font-size: 2.5rem;
    }
}

.hero-cta {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: black;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #9747FF;
    position: relative;
    transform: scale(1);
}

.hero-cta:hover {
    transform: scale(1.05) translateY(-3px);
    background: linear-gradient(135deg, #9747FF, #6a1b9a);
    box-shadow: 0 0 10px #9747FF, 0 0 20px #9747FF, 0 0 30px #9747FF;
    text-decoration: none;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px #9747FF, 0 0 20px #9747FF, 0 0 30px #9747FF;
    }
    to {
        box-shadow: 0 0 20px #9747FF, 0 0 30px #9747FF, 0 0 40px #9747FF;
    }
}

/* Features section */
.features {
    padding: 4rem 0;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1rem;
    justify-items: center;
    margin-bottom: 3rem;
}

.feature-card {
    flex: 0 0 auto;
    width: calc(33.333% - 0.8rem);
    min-width: 180px;
    max-width: 220px;
    background: linear-gradient(180deg, rgba(151, 71, 255, 0.3) 0%, rgba(74, 5, 120, 0.5) 100%);
    backdrop-filter: blur(10px);
    padding: 1.8rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(151, 71, 255, 0.5);
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Add these new styles for the card contents */
.feature-card h3 {
    font-size: 1.8rem;  /* Increased from 1.6rem */
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: white;
    background-image: none;
    background-clip: initial;
    -webkit-background-clip: initial;
}

.feature-card p {
    font-size: 1.2rem;  /* Increased from 1.1rem */
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;  /* Slightly increased for better readability */
    margin-top: 0.3rem;
}

.feature-icon {
    width: 70px;  /* Increased from 60px */
    height: 70px;  /* Increased from 60px */
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;  /* Increased from 1.8rem */
    background-image: linear-gradient(90deg, #ff8dc7, #b57aff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-card:hover {
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 0 30px rgba(151, 71, 255, 0.9), 0 0 60px rgba(151, 71, 255, 0.7) !important;
    background: linear-gradient(180deg, rgba(151, 71, 255, 0.5) 0%, rgba(74, 5, 120, 0.7) 100%) !important;
    border-color: rgba(151, 71, 255, 0.8) !important;
    transition: all 0.3s ease-in-out;
}

.feature-card h3 {
    margin: 0.5rem 0;
    min-height: 2em;
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    background-image: none;
    background-clip: initial;
    -webkit-background-clip: initial;
    line-height: 1.2;
    padding: 0 0.5rem;
}

.feature-card p {
    margin-bottom: 0.5rem;
    min-height: 2.5em;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.5;
    margin-top: 0.3rem;
}

/* Add these new styles for version titles */
.version-title {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: white;
    background-image: none;
    background-clip: initial;
    -webkit-background-clip: initial;
}

.version-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Adjust spacing between grids */
.feature-grid + .version-title {
    margin-top: 5rem;
}

/* First grid doesn't need top margin */
.version-title:first-of-type {
    margin-top: 0;
}

/* Update feature grid spacing */
.feature-grid {
    margin-bottom: 3rem;
}

@media (min-width: 1200px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Make the last row center-aligned when there are 5 items */
    .feature-grid:last-of-type {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Hero h1 and subtitle - matching the same bright gradient */
.hero h1, .hero .subtitle {
    color: var(--text-light);
}

/* Update Discord button styles with purple glow effect */
.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    background: #5865F2; /* Discord's official Blurple color */
    color: white;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.discord-btn:hover {
    background: #4752C4; /* Slightly darker shade for hover */
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.6), 0 0 30px rgba(151, 71, 255, 0.4);
}

.discord-btn i {
    font-size: 1.4rem;
}

.feature-icon {
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;  /* Increased from 1.8rem */
    background-image: linear-gradient(90deg, #ff8dc7, #b57aff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-card h3 {
    font-size: 1.8rem;  /* Increased from 1.6rem */
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: white;
    background-image: none;
    background-clip: initial;
    -webkit-background-clip: initial;
}

.feature-card p {
    font-size: 1.2rem;  /* Increased from 1.1rem */
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;  /* Slightly increased for better readability */
    margin-top: 0.3rem;
}

@media (max-width: 768px) {
    .version-container {
        padding: 1rem;
    }
    
    .version-title {
        font-size: 2rem;  /* Increased from 1.5rem for mobile */
    }
    
    .version-description {
        font-size: 1.1rem;  /* Increased from 1rem for mobile */
    }
    
    .feature-cards-horizontal {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        width: 100%;
        max-width: none;
    }
}

/* Add optimized animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.version-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 750px; /* Increased from 650px */
    transform: scale(0.95);
    margin: 0 auto;
    content: url('free1.png');  /* Default image */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .version-image {
        max-height: 600px; /* Increased from 500px */
        transform: scale(0.95);
        content: url('mobilefree1.png');  /* Switch to mobile image */
    }
}

@media (max-width: 480px) {
    .version-image {
        max-height: 500px; /* Increased from 400px */
        transform: scale(1);
        content: url('mobilefree1.png');  /* Keep mobile image for smaller screens */
    }
}

.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    font-size: 2rem;
    color: #ff69b4;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Version comparison section */
.version-comparison {
    display: flex;
    flex-direction: column;
    gap: 1rem;  /* Reduced from 2rem */
    justify-content: center;
    margin: 1rem 0;  /* Reduced from 2rem */
    padding: 0 0.5rem;  /* Reduced padding */
    width: 100%;
}

.version-features {
    flex: 1;
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.version-features h4 {
    font-size: 1.1rem;  /* Reduced from 1.3rem */
    margin-bottom: 0.8rem;  /* Reduced from 1.2rem */
    text-align: center;
    background-image: linear-gradient(90deg, #ff8dc7, #b57aff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.version-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.version-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.3rem;  /* Reduced from 0.5rem */
    margin-bottom: 0.5rem;  /* Reduced from 0.8rem */
    color: white;
    font-size: 0.9rem;  /* Reduced from 1rem */
    padding-right: 0.3rem;  /* Reduced padding */
    line-height: 1.3;  /* Reduced from 1.4 */
}

.version-features li i {
    flex-shrink: 0;
    margin-top: 0.2rem;
    width: 12px;  /* Reduced from 16px */
    font-size: 0.9rem;  /* Added font size */
}

.version-features li span {
    margin-left: 0.5rem;
    white-space: nowrap;
    display: inline-block;
}

/* Specific styles for premium version */
.version-features.premium {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
}

/* Media query adjustments */
@media (min-width: 768px) {
    .version-comparison {
        flex-direction: row;
        gap: 1.5rem;  /* Reduced from 2rem */
        padding: 0 1rem;
    }

    .version-features {
        padding: 1.5rem;  /* Reduced from 2rem */
    }

    .version-features h4 {
        font-size: 1.2rem;  /* Reduced from 1.5rem */
    }

    .version-features li {
        font-size: 1rem;  /* Reduced from 1.1rem */
        gap: 0.4rem;
        margin-bottom: 0.6rem;
    }
}

.policy-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-content {
    padding: 2rem;
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
    background-image: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
}

.policy-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: white;
    font-size: 1.1rem;
}

.policy-text h3 {
    color: white;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    background-image: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.policy-text strong {
    color: white;
    font-weight: 600;
}

.policy-text ul {
    list-style-type: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-text ul li {
    position: relative;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.6;
}

.policy-text ul li::before {
    content: "•";
    color: white;
    position: absolute;
    left: -1.5rem;
    top: 0;
}

.policy-text a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-text a:hover {
    color: white;
    text-decoration: underline;
}

/* Dark theme styles */
:root {
    --primary-dark: #2d125c;
    --primary-black: #000000;
    --accent-border: rgba(45, 18, 92, 0.3);
    --text-light: #e0e0e0;
}

body {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-black) 100%);
    color: var(--text-light);
}

.navbar {
    background: rgba(45, 18, 92, 0.2);
    border-bottom: 1px solid var(--accent-border);
}

.btn {
    background: var(--primary-dark);
    border: 1px solid var(--accent-border);
    color: var(--text-light);
}

.btn:hover {
    background: rgba(45, 18, 92, 0.8);
    border-color: var(--primary-dark);
}

.service {
    background: rgba(45, 18, 92, 0.1);
    border: 1px solid var(--accent-border);
}

.service:hover {
    background: rgba(45, 18, 92, 0.2);
    border-color: var(--primary-dark);
}

.services {
    padding: 60px 0;
    background: rgba(45, 18, 92, 0.05);
    border-radius: 20px;
    margin: 2rem 0;
}

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

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

.service {
    background: rgba(45, 18, 92, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(45, 18, 92, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service:hover {
    transform: scale(1.05);
    background: rgba(45, 18, 92, 0.2);
    border-color: var(--primary-dark);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 18, 92, 0.2);
    border-radius: 50%;
    border: 1px solid rgba(45, 18, 92, 0.3);
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.service h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.service p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    color: #2d125c;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.services-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

.service-details {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    color: var(--text-light);
    font-size: 0.9rem;
}

.service:hover .service-details {
    opacity: 1;
    transform: translateY(0);
}

/* About Page Styles */
.about-hero {
    text-align: center;
    padding: 4rem 0;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.about-hero .subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    opacity: 0.8;
}

.about-content {
    padding: 4rem 0;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-align: left;
}

.services-section {
    padding: 4rem 0;
}

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

/* Shop grid layout: 3 / 2 / 1 columns */
.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4rem;
}

@media (max-width: 1024px) {
    .services-section .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .services-section .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: linear-gradient(180deg, rgba(151, 71, 255, 0.25) 0%, rgba(74, 5, 120, 0.4) 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: left;
    border: 1px solid rgba(151, 71, 255, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Layered border effect */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(45, 18, 92, 0.6), rgba(45, 18, 92, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* Inner glow */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    box-shadow: inset 0 0 10px rgba(45, 18, 92, 0.25);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(180deg, rgba(151, 71, 255, 0.4) 0%, rgba(74, 5, 120, 0.6) 100%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 25px rgba(151, 71, 255, 0.7), 0 0 40px rgba(151, 71, 255, 0.5);
    border-color: rgba(151, 71, 255, 0.8);
}

/* Enhance inner glow on hover */
.service-card:hover::after {
    box-shadow: inset 0 0 15px rgba(151, 71, 255, 0.4);
}

.service-card .service-icon {
    width: 56px;
    height: 56px;
    margin: 0 0 1rem 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 18, 92, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(45, 18, 92, 0.3);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

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

.service-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 0 0 0.5rem 0;
    color: white;
    font-weight: 600;
}

.service-card p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: white;
    opacity: 0.85;
}

.service-image + .service-icon {
    margin-top: 0;
}

.motivational-text {
    font-size: 1.5rem;
    color: white;
    margin: 0;
    font-weight: 500;
}

.service-price {
    font-size: 1rem;
    color: white;
    margin: 0.3rem 0 0.5rem 0;
    font-weight: 600;
}

.card-buttons {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
}

.info-btn {
    flex: 0 0 auto;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    align-self: center;
    font-size: 1rem;
    text-align: center;
    min-width: 0;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-btn:hover {
    background: rgba(151, 71, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(151, 71, 255, 0.6);
}

.info-btn:hover {
    text-decoration: none;
}

.old-price {
    text-decoration: line-through;
    color: #ff69b4;
    margin-right: 0.5rem;
    opacity: 0.8;
}

/* Keep action buttons aligned at the bottom for equal-height cards */
.service-card {
    display: flex;
    flex-direction: column;
    cursor: default; /* Remove pointer cursor from card since we have buttons */
    background: linear-gradient(180deg, rgba(151, 71, 255, 0.15) 0%, rgba(74, 5, 120, 0.25) 100%);
    position: relative;
    z-index: 2;
}

.service-card .btn {
    margin-top: auto;
    flex: 1;
    padding: 0.8rem 1.2rem;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Featured service cards */
.featured-service {
    transform: scale(1.10);
    box-shadow: 0 0 20px rgba(151, 71, 255, 0.4), 0 0 30px rgba(151, 71, 255, 0.2);
    border: 1px solid rgba(151, 71, 255, 0.5);
    z-index: 10;
    background: linear-gradient(180deg, rgba(151, 71, 255, 0.3) 0%, rgba(74, 5, 120, 0.4) 100%);
}

.featured-service h3 {
    color: #e0d0ff;
    transition: all 0.3s ease;
}

/* .featured-service:hover h3 text-shadow removed */

.featured-service::after {
    box-shadow: inset 0 0 15px rgba(151, 71, 255, 0.3);
}

.featured-service:hover {
    transform: scale(1.10) translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 30px rgba(151, 71, 255, 0.7), 0 0 50px rgba(151, 71, 255, 0.5);
}

.policy-section {
    padding: 4rem 0;
    background: rgba(45, 18, 92, 0.05);
    border-radius: 20px;
    margin: 2rem 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.policy-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.policy-content h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--text-light);
}

.policy-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .services {
        padding: 40px 0;
    }
    .services h2 {
        font-size: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .service {
        padding: 1.5rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .subtitle {
        font-size: 1.2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .services-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .policy-container {
        margin: 1rem;
        padding: 1rem;
    }

    .policy-content {
        padding: 1rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-text h3 {
        font-size: 1.4rem;
    }

    .policy-text p {
        font-size: 1rem;
    }
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(28, 28, 35, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    width: 90%;
    max-width: 600px;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: none;
}

.cookie-content h3 {
    color: #ff69b4;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.cookie-option:hover {
    background: rgba(255, 255, 255, 0.08);
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.3rem;
}

.cookie-option label {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    cursor: pointer;
}

.cookie-title {
    color: white;
    font-weight: 500;
}

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

.cookie-links {
    margin-bottom: 1.5rem;
}

.cookie-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-links a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept-all {
    background: white;
    color: #1c1c23;
}

.btn-accept-all:hover {
    background: #3ce082;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(151, 71, 255, 0.8), 0 0 30px rgba(151, 71, 255, 0.6);
}

.btn-reject-all {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-reject-all:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(151, 71, 255, 0.8), 0 0 30px rgba(151, 71, 255, 0.6);
}

.btn-save {
    background: #ff69b4;
    color: white;
}

.btn-save:hover {
    background: #ff50a7;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(151, 71, 255, 0.8), 0 0 30px rgba(151, 71, 255, 0.6);
}

@media (max-width: 768px) {
    .cookie-consent {
        bottom: 1rem;
        width: 95%;
        padding: 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
    }
}

.version-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.version-note a {
    color: white;
    text-decoration: none;
}

.version-note a:hover {
    text-decoration: underline;
}

/* Update the version features styles to be consistent */
.version-features {
    flex: 1;
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.version-features.free,
.version-features.premium {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
}

/* Mobile adjustments */
@media screen and (max-width: 480px) {
    .version-features.free,
    .version-features.premium {
        padding: 0.8rem;
    }

    .version-features.free li,
    .version-features.premium li {
        padding: 0.4rem 0.2rem;
        font-size: 0.85rem;
        gap: 0.3rem;
        margin-bottom: 0.5rem;
    }
}

@media screen and (max-width: 384px) {
    .version-features.free,
    .version-features.premium {
        padding: 0.6rem;
    }

    .version-features.free li,
    .version-features.premium li {
        padding: 0.3rem 0.2rem;
        font-size: 0.8rem;
    }
}

/* Version features colors */
.version-features.free li i {
    color: white;  /* Bright green for free version */
}

.version-features.free h4 {
    color: white;
    background-image: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.version-features.premium li i {
    color: #ff69b4;  /* Pink for premium version */
}

.version-features.premium h4 {
    color: white;
    background-image: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

/* Add hover effects */
.version-features li {
    transition: all 0.3s ease;
    padding: 0.3rem 0.5rem;  /* Added horizontal padding */
    border-radius: 6px;
}

.version-features li:hover {
    background: rgba(255, 255, 255, 0.05);
}

.version-features.free li:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.version-features.premium li:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Override the previous gradient for headings */
.version-features h4 {
    background-image: none;  /* Remove the previous gradient */
}

/* Confirmation Popup Styles */
.confirmation-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.confirmation-content {
    background: rgba(28, 28, 35, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.confirmation-content h3 {
    color: #ff69b4;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.checkbox-container input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-container label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    cursor: pointer;
}

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

.btn-proceed {
    padding: 0.8rem 1.5rem;
    background: #ff69b4;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-proceed:disabled {
    background: #666;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-proceed:not(:disabled):hover {
    background: #ff50a7;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(151, 71, 255, 0.8), 0 0 30px rgba(151, 71, 255, 0.6);
}

.btn-cancel {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(151, 71, 255, 0.8), 0 0 30px rgba(151, 71, 255, 0.6);
}

@media (max-width: 768px) {
    .confirmation-content {
        width: 95%;
        padding: 1.5rem;
    }

    .confirmation-buttons {
        flex-direction: column;
    }

    .confirmation-buttons button {
        width: 100%;
    }
}

/* Reviews Slider Styles */
.reviews-section {
    padding: 4rem 0;
    background: rgba(45, 18, 92, 0.05);
    border-radius: 20px;
    margin: 2rem 0;
}

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

.reviews-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.reviews-slider {
    display: flex;
    gap: 2rem;
    /* Animation will be handled by JavaScript for smoother infinite loop */
}

.review-card {
    flex: 0 0 auto;
    width: 300px;
    background: linear-gradient(180deg, rgba(151, 71, 255, 0.25) 0%, rgba(74, 5, 120, 0.4) 100%);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(151, 71, 255, 0.4);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 25px rgba(151, 71, 255, 0.7), 0 0 40px rgba(151, 71, 255, 0.5);
    border-color: rgba(151, 71, 255, 0.8);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    color: #ff69b4;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@keyframes slide-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Animation for JavaScript-controlled sliding */
@keyframes slide-loop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Faster animation for mobile devices */
@media (max-width: 768px) {
    .reviews-slider-container {
        padding: 0.5rem 0;
    }
}

/* Pause animation on hover */
.reviews-slider-container:hover .reviews-slider {
    animation-play-state: paused;
}

/* Add order to sections to control their visual appearance */
.hero {
    order: 1;
}

.services-section {
    order: 2;
    position: relative;
    overflow: hidden;
}

.reviews-section {
    order: 3;
}

.services-section .parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('paralax5.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: -1;
}

.services-section .parallax-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('paralax5.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: -1;
}

.parallax-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.premium-utility {
    order: 3;
}

.free-utility {
    order: 4;
}

.download-section {
    order: 5;
}

.contact {
    order: 6;
}

/* Make sure the container uses flexbox */
main {
    display: flex;
    flex-direction: column;
}

/* Simplified contact section */
.contact {
    padding: 4rem 0;
    text-align: center;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

.discord-btn i {
    font-size: 1.4rem;
}

/* Update footer text colors */
.footer-links a {
    color: whitesmoke;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #5865F2; /* Discord color on hover */
}

.footer-left p {
    color: whitesmoke;
    margin: 0;
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0 4rem;
    }
}

/* Benchmarks page styles */
.benchmarks {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 2rem 0;
}

.benchmarks .container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.benchmarks h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    background-image: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.benchmarks .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.benchmark-disclaimer {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2rem;
    line-height: 1.6;
}

.benchmark-disclaimer p {
    margin-bottom: 0.5rem;
}

/* Theme Switch Styles */
.toggle-switch {
    position: relative;
    width: 70px;
    height: 34px;
    margin: 0 15px;
    align-self: center;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch .slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #6f05b1;
    transition: 0.4s;
    border-radius: 34px;
    box-shadow: 0 0 10px rgba(106, 27, 154, 0.7);
    cursor: pointer;
}

.toggle-switch .slider:before {
    position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.toggle-switch input:checked + .slider {
    background-color: #8e24aa;
    box-shadow: 0 0 15px rgba(142, 36, 170, 0.8);
}

.toggle-switch input:checked + .slider:before {
    transform: translateX(36px);
}

/* Remove old theme switch styles */
.theme-switch-wrapper {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
        padding: 2rem;
    }
    
    .toggle-switch {
        margin: 1rem 0;
    }
}

.return-arrow {
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: auto;
    padding-left: 15px;
}

.return-arrow i {
    font-size: 24px;
}

.return-arrow:hover {
    transform: translateX(-5px);
    color: #6a1b9a;
}

@media (max-width: 768px) {
    .return-arrow {
        display: flex;
        order: 2;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(151, 71, 255, 0.3);
    }
    
    .nav-links a {
        width: 80%;
        text-align: center;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(151, 71, 255, 0.2);
    }
    
    .nav-links a:hover {
        background: rgba(151, 71, 255, 0.2);
        box-shadow: 0 0 20px rgba(151, 71, 255, 0.4);
    }
}

/* Service Popup Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: linear-gradient(135deg, #1a0a33 0%, #0d0419 100%);
    margin: 5% auto;
    padding: 0;
    border: 1px solid rgba(151, 71, 255, 0.5);
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(151, 71, 255, 0.3);
    position: relative;
    animation: slideIn 0.3s ease-out;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(151, 71, 255, 0.2);
}

.modal-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2d125c 0%, #1a0a33 100%);
}

.modal-title {
    font-size: 2rem;
    margin: 0;
    color: #e0e0e0;
}

.modal-body {
    padding: 1.5rem 2rem;
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.modal-details {
    background: rgba(45, 18, 92, 0.2);
    border: 1px solid rgba(151, 71, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
}

.modal-close:hover {
    background: rgba(151, 71, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(151, 71, 255, 0.6);
}

.modal-close.bottom-right {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.modal-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem 2rem;
    position: relative;
}

.modal-footer .btn {
    margin: 0;
}

.modal-footer .modal-close {
    position: absolute;
    right: 2rem;
}

.confirmation-close-btn {
    position: static;
    margin-left: 1rem;
}

.cookie-close-btn {
    position: static;
    margin-left: 1rem;
}

.modal-details h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.modal-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(151, 71, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.modal-details li:last-child {
    border-bottom: none;
}

.modal-details li:before {
    content: "•";
    color: white;
    display: inline-block;
    width: 1em;
    margin-right: 0.5em;
}

.modal-footer {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(151, 71, 255, 0.2);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-body, .modal-footer {
        padding: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.6rem;
    }
    
    .modal-description {
        font-size: 1rem;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}