* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #0e0e0f;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    /* Increased padding for better spacing */
}

/* Header */
header {
    position: sticky;
    top: 0;
    background-color: #0e0e0f;
    padding: 20px 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    animation: floatY 3s ease-in-out infinite;
}

@keyframes floatY {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
        /* Reduced movement for subtlety */
    }

    100% {
        transform: translateY(0px);
    }
}

.logo svg {
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
}

.login-btn {
    background-color: #0066ff;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #0052cc;
}

/* Hero Section */
.hero {
    padding: 130px 0;
    /* Increased padding for more space */
    text-align: left;
    height: calc(100vh - 80px);
    /* Full viewport height minus header */
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 80px;
    margin-bottom: 20px;
    color: #0066ff;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #cccccc;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #0066ff;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0052cc;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #0066ff;
}

.btn-secondary:hover {
    background-color: rgba(0, 102, 255, 0.1);
}

/* Features Section */
.features {
    padding: 100px 0;
    /* Increased padding */
}

.features h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.features-subtitle {
    text-align: center;
    color: #cccccc;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0066ff;
}

.feature-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-desc {
    color: #cccccc;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 100px 0;
    /* Increased padding */
}

.products h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.products-subtitle {
    color: #cccccc;
    margin-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: rgba(39, 40, 41, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    position: relative;
    height: 160px;
    background-size: cover;
    background-position: center;
}

.beta-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/api/placeholder/400/320');
}

.wonderful-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/api/placeholder/400/320');
}

.month-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/api/placeholder/400/320');
}

.product-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
}

.beta-icon {
    color: #0066ff;
}

.wonderful-icon {
    color: #0066ff;
}

.month-icon {
    color: #0066ff;
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 20px;
    margin-bottom: 5px;
}

.product-desc {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 15px;
    height: 60px;
}

.product-btn {
    display: inline-block;
    width: 100%;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.product-btn-blue {
    background-color: #0066ff;
    color: #ffffff;
}

.product-btn-blue:hover {
    background-color: #0052cc;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    /* Increased padding */
}

.faq h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.faq-desc {
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #161616;
    color: #0066ff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: #0066ff;
    color: #ffffff;
}

.faq-items {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    transition: all 0.7s ease;
    /* Slower transition */
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    padding: 10px 0;
}

.faq-question svg {
    transition: transform 0.8s ease;
    /* Slower transition */
}

/* Added styles for FAQ answers */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    /* Slower transition */
    padding: 0 20px;
    color: #cccccc;
    opacity: 0;
}

.faq-answer p {
    padding: 20px 0;
    line-height: 1.6;
}

.faq-answer ul {
    margin-top: 10px;
    margin-left: 20px;
}

.faq-answer li {
    margin-bottom: 5px;
}

.faq-item.active {
    background-color: rgba(43, 43, 42, 0.05);
    /* Changed color to #2b2b2a */
    padding: 20px;
    border-radius: 8px;
    margin: 10px 0;
    box-shadow: 0 4px 15px rgba(43, 43, 42, 0.1);
    /* Changed color to #2b2b2a */
}

.faq-item.active .faq-question svg {
    transform: rotate(90deg);
    color: #2b2b2a;
    /* Changed color to #2b2b2a */
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

/* Footer */
footer {
    background-color: #1e1f20;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #0066ff;
}

.copyright {
    color: #777777;
    font-size: 14px;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #0066ff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    /* Slower transition */
    z-index: 99;
    opacity: 0;
}

.scroll-top:hover {
    background-color: #0052cc;
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
        /* Reduced movement */
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 1.8s ease-out forwards;
    /* Slower animation */
}

.delay-1 {
    animation-delay: 0.4s;
}

.delay-2 {
    animation-delay: 0.8s;
}

.delay-3 {
    animation-delay: 1.2s;
}
