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

body {
    background-color: #0a0a0a;
    color: #ffffff;
}

/* Header Styles */
header {
    background-color: #1a1a1a;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b6b;
}

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

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff6b6b;
}

/* Hero Section with Neon Effect */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(70, 51, 103, 0.3), transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
                 0 0 20px rgba(70, 51, 103, 0.5),
                 0 0 30px rgba(70, 51, 103, 0.5),
                 0 0 40px rgba(70, 51, 103, 0.5);
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 1.8rem;
    color: #463367;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(70, 51, 103, 0.8),
                 0 0 20px rgba(70, 51, 103, 0.8),
                 0 0 30px rgba(70, 51, 103, 0.8);
    position: relative;
    z-index: 2;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Neon animation */
@keyframes pulseGlow {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

/* Update scroll indicator for neon effect */
.scroll-indicator {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.scroll-indicator p {
    color: #463367;
    text-shadow: 0 0 10px rgba(70, 51, 103, 0.8),
                 0 0 20px rgba(70, 51, 103, 0.8);
    animation: neonPulse 1.5s ease-in-out infinite;
}

.scroll-arrow {
    border-right: 3px solid #463367;
    border-bottom: 3px solid #463367;
    box-shadow: 0 0 10px rgba(70, 51, 103, 0.8),
                0 0 20px rgba(70, 51, 103, 0.8);
}

@keyframes neonPulse {
    0% {
        text-shadow: 0 0 10px rgba(70, 51, 103, 0.8),
                     0 0 20px rgba(70, 51, 103, 0.8);
    }
    50% {
        text-shadow: 0 0 15px rgba(70, 51, 103, 1),
                     0 0 25px rgba(70, 51, 103, 1),
                     0 0 35px rgba(70, 51, 103, 1);
    }
    100% {
        text-shadow: 0 0 10px rgba(70, 51, 103, 0.8),
                     0 0 20px rgba(70, 51, 103, 0.8);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
}

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

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

.feature-card {
    background: linear-gradient(145deg, #333, #2a2a2a);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

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

.feature-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: #ffffff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #463367;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Versions Section */
.versions {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
}

.versions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6b6b;
}

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

.version-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.version-card.current {
    border: 2px solid #ff6b6b;
    position: relative;
}

.version-card.current::before {
    content: "Latest";
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ff6b6b;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.version-card h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.version-card p {
    color: #888;
    margin-bottom: 1.5rem;
}

.download-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.download-button:hover {
    background-color: #ff4757;
}

/* Download Section */
.download {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
}

.download-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6b6b;
}

.download-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #2a2a2a;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.download-info {
    text-align: center;
}

.version-badge {
    display: inline-block;
    background-color: #ff6b6b;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    margin-bottom: 2rem;
}

/* Enhanced Features Container Styles */
.features-container {
    background: linear-gradient(145deg, #2a2a2a, #222);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.features-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b6b, transparent);
}

.features-title {
    color: #ff6b6b;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
    display: block;
    position: relative;
    left: 0;
    transform: none;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b6b, transparent);
}

.mod-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0;
}

.feature-item {
    background: linear-gradient(145deg, #333, #2a2a2a);
    border-radius: 15px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: linear-gradient(145deg, #383838, #2f2f2f);
}

.feature-item:hover .feature-glow {
    opacity: 1;
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    background: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    color: #463367;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-item:hover .feature-icon {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.feature-text {
    font-weight: 500;
    color: #fff;
    position: relative;
    z-index: 1;
}

.feature-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 107, 107, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mod-features {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 1rem;
    }

    .features-title {
        font-size: 1.5rem;
    }
}

/* Animation for feature items */
@keyframes featureAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item {
    animation: featureAppear 0.5s ease forwards;
    opacity: 0;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }
.feature-item:nth-child(6) { animation-delay: 0.6s; }
.feature-item:nth-child(7) { animation-delay: 0.7s; }
.feature-item:nth-child(8) { animation-delay: 0.8s; }

/* Footer */
footer {
    background-color: #1a1a1a;
    padding: 1rem;
    text-align: center;
}

/* Ad Banner Styles */
.ad-banner {
    width: 100%;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, transparent, #1a1a1a, transparent);
    min-height: 90px;
    margin: 1rem 0;
}

/* Responsive adjustment for ad banners */
@media (max-width: 768px) {
    .ad-banner {
        padding: 1rem 0;
    }
}

/* Enhanced Download Button Styles */
.download-buttons {
    margin-top: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.download-button.large {
    padding: 1.2rem 3.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #ff6b6b, #ff4757, #ff6b6b);
    background-size: 200% auto;
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.download-button.large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.6);
    background-position: right center;
}

.download-button.large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.download-button.large::after {
    content: '⬇️';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    50% {
        transform: rotate(45deg) translateX(100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

.file-info {
    margin-top: 1rem;
    color: #888;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    display: block;
    text-align: center;
    width: fit-content;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .download-button.large {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .download-button.large::after {
        right: 15px;
    }
    
    .file-info {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}

/* About Us Links Section */
.about-us-links {
    padding: 3rem 2rem;
    text-align: center;
    background-color: #1a1a1a;
}

.about-us-links h3 {
    color: #ff6b6b;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.link-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #463367, #ff6b6b);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ff6b6b, #463367);
}

/* Responsive adjustment for about links */
@media (max-width: 768px) {
    .link-container {
        flex-direction: column;
        align-items: center;
    }
    
    .about-link {
        width: 80%;
        text-align: center;
    }
} 