/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00a8ff;
    --dark-bg: #1e2a3a;
    --darker-bg: #141d29;
    --text-light: #ffffff;
    --text-gray: #b8c5d6;
    --accent-color: #00d4ff;
    --card-bg: #2c3e50;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--dark-bg);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--text-light);
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.text-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
}

.text-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.phone-mockup {
    max-width: 400px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: scale(1.05) translateY(-10px);
    animation-play-state: paused;
}

.phone-screen {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    filter: drop-shadow(0 20px 40px rgba(0, 168, 255, 0.3));
    transition: filter 0.3s ease;
}

.phone-mockup:hover .phone-screen {
    filter: drop-shadow(0 30px 60px rgba(0, 168, 255, 0.5));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(1deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

/* Pulse glow animation for extra effect */
@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 20px 40px rgba(0, 168, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 20px 60px rgba(0, 168, 255, 0.5));
    }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--darker-bg);
    color: var(--text-light);
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
}

/* Popular Mods Section */
.popular-mods {
    padding: 5rem 0;
    background-color: #fff;
}

.popular-mods h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark-bg);
}

.mods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mod-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: box-shadow 0.3s ease;
}

.mod-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mod-item h3 {
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.mod-item p {
    color: #555;
}

/* Legitimacy Section */
.legitimacy {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.legitimacy h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-bg);
}

.legitimacy p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: #666;
}

/* How To Section */
.how-to {
    padding: 5rem 0;
    background-color: #fff;
}

.how-to h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 60px;
    margin-bottom: 1rem;
}

.step h3 {
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.step p {
    color: #555;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--text-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-gray);
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--text-light);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.updated-date {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
    background-color: #fff;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 1.8rem;
    color: var(--dark-bg);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-wrapper h3 {
    font-size: 1.4rem;
    color: var(--dark-bg);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-wrapper p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-wrapper ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.8;
}

.content-wrapper a {
    color: var(--primary-color);
    text-decoration: none;
}

.content-wrapper a:hover {
    text-decoration: underline;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.contact-info p {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.common-questions h3 {
    font-size: 1.3rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #0096e6;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

/* Support Info Section */
.support-info {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.support-info h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-bg);
    margin-bottom: 3rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.support-card h3 {
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.support-card p {
    color: #555;
}

.support-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.support-card a:hover {
    text-decoration: underline;
}

/* Mods Catalog Page */
.mods-catalog {
    padding: 4rem 0;
    background-color: #fff;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.catalog-item {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.catalog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 168, 255, 0.15);
}

.mod-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.catalog-item h2 {
    color: var(--dark-bg);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.catalog-item > p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mod-features {
    list-style: none;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.mod-features li {
    color: #555;
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
}

.mod-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.mod-info {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1.5rem;
}

.mod-version, .mod-size {
    font-size: 0.9rem;
    color: #666;
}

.download-button {
    display: block;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #0096e6;
}

/* Download Instructions */
.download-instructions {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.download-instructions h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-bg);
    margin-bottom: 3rem;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.instruction-step {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.instruction-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 50px;
    margin-bottom: 1rem;
}

.instruction-step h3 {
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.instruction-step p {
    color: #555;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #fff;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-bg);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.faq-box h3 {
    color: var(--dark-bg);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-box p {
    color: #555;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--dark-bg);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.5rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .mods-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .phone-mockup {
        max-width: 250px;
    }

    .phone-screen {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .feature-card,
    .mod-item,
    .step {
        padding: 1.5rem;
    }
}
