/* General Styles */
body {
    margin: 0;
    font-family: 'Comic Sans MS', 'Arial', sans-serif; /* TikTok-inspired playful font */
    line-height: 1.6;
    background: #1e1e2e;
    color: #fff;
}

/* Header */
header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    top: 0;
    width: 100%;
    background: #1e1e2e;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

h1, h2, h3 {
    font-family: 'Bebas Neue', 'Impact', sans-serif; /* Bold and fun for headings */
    color: #00d1ff; /* Neon Cyan for headings */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8), 4px 4px 10px rgba(0, 0, 0, 0.5); /* 3D effect */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    position: absolute;
    right: 0px;
    padding-right: 30px;
    overflow-x: auto; /* Enable horizontal scrolling */
    white-space: nowrap; /* Prevent line breaks */
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.8em;
}

nav ul li a:hover {
    background: #ff69b4; /* Neon Pink */
    color: #12121c; /* Dark Text */
}

nav ul li a.active {
    background: #005f99; /* Dark Blue */
    color: #fff;
}

.header-title {
    font-size: 1em;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    background: #1e1e2e;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8), 4px 4px 10px rgba(0, 0, 0, 0.5); /* 3D effect */
}

.header-title:hover {
    background: #ff69b4;
    color: #12121c;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px 50px; /* Adjusted for fixed header */
    background: linear-gradient(135deg, #ff69b4, #00d1ff); /* Neon Pink to Cyan */
    color: #12121c;
}

.hero-logo {
    margin-top: 20px;
    text-align: center;
}

.hero-logo img {
    max-width: 30vw;
    height: auto;
    display: inline-block;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero .cta {
    background: #12121c;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background 0.3s;
}

.hero .cta:hover {
    background: #ff69b4;
    color: #12121c;
}

/* Features Section */
.features {
    padding: 50px 20px;
    text-align: center;
    background: #2a2a3a;
    color: white;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1200px;
}

.features h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #00d1ff; /* Neon Cyan */
}

.features .feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.features .feature {
    background: #12121c;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    color: white;
    text-align: left;
    transition: background 0.3s;
}

.features .feature:hover {
    background: #005f99; /* Dark Blue */
    color: #fff;
}

.features .feature h3 {
    color: #ff69b4;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.features .feature p {
    font-size: 1em;
    line-height: 1.5;
}

/* Mission Section */
.mission {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #ff69b4, #00d1ff); /* Neon Pink to Cyan */
    color: #12121c;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.mission h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
}

.mission p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: white;
}

/* Pricing Section */
.pricing {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #ff69b4, #00d1ff); /* Neon Pink to Cyan */
    color: #12121c;
}

.pricing h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.plan {
    background: #2a2a3a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    color: white;
}

.plan h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #ff69b4;
}

.plan .price {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #00d1ff;
}

.plan ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.plan ul li {
    margin: 10px 0;
}

.plan .cta {
    display: inline-block;
    background: #00d1ff;
    color: #12121c;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    transition: background 0.3s;
}

.plan .cta:hover {
    background: #ff69b4;
    color: #12121c;
}

/* Signup Section */
.signup {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #00d1ff, #ff69b4); /* Cyan to Neon Pink */
    color: #12121c;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.signup h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
}

.signup p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.signup form {
    max-width: 600px;
    margin: 0 auto;
    background: #2a2a3a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    color: white;
}

.signup label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #fff;
}

.signup input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background: #12121c;
    color: #fff;
    font-size: 1em;
}

.signup button {
    background: #00d1ff;
    color: #12121c;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s;
}

.signup button:hover {
    background: #ff69b4;
    color: #12121c;
}

/* Contact Section */
.contact {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #ff69b4, #00d1ff); /* Neon Pink to Cyan */
    color: #12121c;
}

.contact h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    background: #2a2a3a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    color: white;
}

.contact label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #fff;
}

.contact input,
.contact select,
.contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background: #12121c;
    color: #fff;
    font-size: 1em;
}

.contact button {
    background: #00d1ff;
    color: #12121c;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s;
}

.contact button:hover {
    background: #ff69b4;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #12121c;
    color: #fff;
}

/* Media Queries */
@media (max-width: 768px) {
    nav ul {
        position: static;
        justify-content: center;
    }

    .pricing-options,
    .features .feature-list {
        grid-template-columns: 1fr;
    }

    .contact,
    .signup form {
        padding: 20px;
    }
}
