/* Asegurar que todos los elementos usen border-box */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Tipografías */
body {
    font-family: "Ajusted Cyrillic", Barlow, "Helvetica Neue", Helvetica, sans-serif;
}

body.landing-page {
    padding: 0;
    margin: 0;
    background-color: var(--background-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(22, 22, 29, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(130, 46, 245, 0.1);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.logo a:hover {
    color: #9145ff;
}

.logo a:hover .logo-icon {
    transform: scale(1.1);
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-button {
    background-color: var(--primary-color);
    color: var(--text-primary);
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(130, 46, 245, 0.3);
}

.login-button:hover {
    background-color: #9145ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(130, 46, 245, 0.5);
}

/* Footer Styles */
.site-footer {
    background-color: var(--card-background);
    padding: 2rem 0;
    border-top: 1px solid rgba(130, 46, 245, 0.1);
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-logo a:hover {
    color: #9145ff;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.footer-logo a:hover .footer-logo-icon {
    transform: scale(1.1);
}

.footer-nav ul,
.footer-legal ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    justify-content: center;
}

.footer-nav a,
.footer-legal a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-legal ul {
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    /*margin-top: 2rem;*/
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* Ajustes para el contenido principal con header y footer */
.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    max-height: 80vh;
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    flex: 1;
    max-width: 50%;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    max-height: 80vh;
    overflow: auto;
}

.hero-content {
    margin: auto;
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff; /* Blanco puro para mayor contraste */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Sombra para mejorar legibilidad */
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    text-align: center;
}

.hero-cta {
    /*display: inline-block;*/
    display: block;
    margin: auto;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(130, 46, 245, 0.3);
    cursor: pointer;
    border: none;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(130, 46, 245, 0.5);
    background-color: #9145ff; /* Morado más claro al hover */
}

/* Pricing info styles */
.pricing-info {
    text-align: center;
    margin-top: 1rem;
}

.video-tutorial {
    text-align: center;
    margin-top: 1.5rem;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.video-link:hover {
    background-color: rgba(130, 46, 245, 0.1);
    transform: translateY(-2px);
}

.video-link i {
    font-size: 1.2rem;
}

.pricing-strikethrough {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
}

.pricing-current {
    color: #ffffff;
    font-weight: 500;
}

.hero-image {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 70%;
    max-width: 500px;
    opacity: 0.15;
    z-index: 1;
}

/* Features Carousel */
.features-section {
    flex: 1;
    max-width: 50%;
    padding: 4rem 0;
    background-color: var(--background-color);
    position: relative;
    max-height: 80vh;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.features-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    margin-top: 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 75%;
    margin: 0 auto;
    overflow: hidden;
    max-width: 100vw; /* Asegura que nunca exceda el ancho de la ventana */
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
    width: auto; /* Eliminar el ancho fijo */
}

.carousel-slide {
    min-width: 100%; /* Cada slide ocupa al menos el 100% del contenedor */
    width: 100%;
    flex: 0 0 100%; /* No crecer, no encoger, base 100% */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}

.feature-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.feature-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.feature-image-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: auto;
}

.feature-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.feature-item:hover .feature-image {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-secondary);
    opacity: 0.3;
    margin: 0 0.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    opacity: 1;
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--card-background);
    color: var(--primary-color);
    border: 1px solid rgba(130, 46, 245, 0.3);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background-color: var(--primary-color);
    color: var(--text-primary);
}

.carousel-button.prev {
    left: 1rem;
}

.carousel-button.next {
    right: 1rem;
}

/* Login Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.login-modal {
    background-color: var(--card-background);
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: all 0.3s ease;
    opacity: 0;
}

.modal-overlay.active .login-modal {
    transform: translateY(0);
    opacity: 1;
}

/* Ensure login form is visible inside modal */
.login-modal .login-container {
    box-shadow: none;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    display: block !important; /* Force display */
}

.login-modal .login-form {
    display: flex !important; /* Force display */
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.login-modal .form-group {
    margin-bottom: 0;
}

.login-modal .form-group input {
    background-color: rgba(36, 36, 48, 0.8);
    border: 1px solid rgba(130, 46, 245, 0.3);
}

.login-modal .btn-primary {
    margin-top: 1rem;
}

.modal-title {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background-color: var(--background-color);
    border: 1px solid rgb(161 147 180);
    border-radius: 0.5rem;
    z-index: 999;
    width: 36px;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    position: absolute; /* Position absolute */
    top: 15px;
    right: 15px;
}

.modal-close:hover {
    color: var(--danger-color);
}

/* Help links in login form */
.help-link {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.help-link a {
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.help-link a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.help-link i {
    font-size: 1rem;
}

/* Login Modal Input with Icon */
.login-modal .input-with-icon {
    position: relative;
    display: flex;
    width: 100%;
}

.login-modal .input-with-icon input {
    flex: 1;
    padding-right: 2.5rem;
}

.login-modal .toggle-visibility {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.login-modal .toggle-visibility:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .landing-container {
        flex-direction: column;
        max-height: none;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-section, .features-section {
        max-width: 100%;
        width: 100%;
        max-height: none;
        overflow-x: hidden;
    }

    .hero-section {
        padding: 3rem 1rem 1rem 1rem;
    }

    .features-section {
        padding: 1rem 1rem 1rem 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .features-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .feature-description {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-cta {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }

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

    .carousel-button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    /* Ajustes adicionales para el carrusel en tablets */
    .feature-card {
        padding: 1.5rem;
    }

    .feature-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .feature-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .feature-image-container {
        max-width: 90%;
    }

    .carousel-button.prev {
        left: 5px;
    }

    .carousel-button.next {
        right: 5px;
    }

    body.landing-page {
        overflow-x: hidden;
    }

    .landing-container {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .features-section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .logo span {
        visibility: hidden;
        width: 0;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .header-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .hero-cta {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }

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

    .feature-title {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }

    .feature-description {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .carousel-button {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    /* Ajustes adicionales para el carrusel en móviles pequeños */
    .feature-card {
        padding: 1rem;
    }

    .feature-image {
        max-height: 200px;
    }

    .feature-image-container {
        max-width: 85%;
    }
}

/* Page Container */
.page-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: calc(var(--header-height) + 2rem);
}

/* Active Navigation Link */
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a.active::after {
    width: 100%;
}

/* Common Page Styles */
.pricing-section,
.about-section,
.features-page-section {
    padding: 2rem 0;
}

.pricing-header,
.about-header,
.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h1,
.about-header h1,
.features-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-subtitle,
.about-subtitle,
.features-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Page Styles */
.pricing-card {
    background-color: var(--card-background);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto 3rem;
    border: 1px solid rgba(130, 46, 245, 0.2);
}

.pricing-card-header {
    background: linear-gradient(135deg, #822ef5, #6023b5);
    padding: 2rem;
    text-align: center;
    color: var(--text-primary);
}

.pricing-card-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pricing-original {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.pricing-current {
    font-size: 3rem;
    font-weight: 700;
}

.pricing-period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-card-body {
    padding: 2rem;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 1rem;
}

.pricing-card-footer {
    padding: 2rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.1);
}

.pricing-cta {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(130, 46, 245, 0.3);
    cursor: pointer;
    border: none;
    margin-bottom: 1rem;
}

.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(130, 46, 245, 0.5);
    background-color: #9145ff;
}

.pricing-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-faq {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-faq h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.about-image {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.about-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    filter: brightness(0.9) contrast(1.1);
}

.about-text {
    color: var(--text-primary);
}

.about-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.about-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.about-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.cta-container {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(130, 46, 245, 0.1);
    transform: translateY(-2px);
}

.btn-primary,
.get-started-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(130, 46, 245, 0.3);
    cursor: pointer;
    border: none;
}

.btn-primary:hover,
.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(130, 46, 245, 0.5);
    background-color: #9145ff;
}

/* Features Page Styles */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-item {
    background-color: var(--card-background);
    border-radius: 1rem;
    overflow: hidden;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(130, 46, 245, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(130, 46, 245, 0.3);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #822ef5, #6023b5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-content {
    flex: 1;
}

.feature-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.feature-number {
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.feature-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.feature-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.features-cta {
    text-align: center;
    background-color: var(--card-background);
    padding: 3rem;
    border-radius: 1rem;
    margin-top: 3rem;
    border: 1px solid rgba(130, 46, 245, 0.2);
}

.features-cta h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.features-cta p {
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-container {
        flex-direction: column;
    }

    .pricing-header h1,
    .about-header h1,
    .features-header h1 {
        font-size: 2rem;
    }
}

/* Legal Pages Styles */
.legal-section {
    padding: 2rem 0;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.legal-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-primary);
}

.legal-content .legal-section {
    margin-bottom: 2.5rem;
    padding: 0;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--card-background);
    padding: 1rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(130, 46, 245, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    flex: 1;
    padding-right: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.cookie-actions {
    display: flex;
    gap: 0.5rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.cookie-btn-accept {
    background-color: var(--primary-color);
    color: white;
}

.cookie-btn-accept:hover {
    background-color: #6b26c7;
}

.cookie-btn-reject {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(130, 46, 245, 0.3);
}

.cookie-btn-reject:hover {
    background-color: rgba(130, 46, 245, 0.1);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 1rem;
    }

    .cookie-content {
        padding-right: 0;
        margin-bottom: 1rem;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.video-tutorial, .discord-link {
    margin: 0;
}

.video-link, .discord-button, .video-tutorial-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.video-link, .video-tutorial-link {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.video-link:hover, .video-tutorial-link:hover {
    background-color: rgba(130, 46, 245, 0.1);
    transform: translateY(-2px);
}

.discord-button {
    color: #5865F2;
    border: 1px solid #5865F2;
}

.discord-button:hover {
    background-color: rgba(88, 101, 242, 0.1);
    transform: translateY(-2px);
}

.video-link i, .discord-button i, .video-tutorial-link i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

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

.creations-header h2 {
    margin: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 0;
}

.sort-select {
    height: 2.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(130, 46, 245, 0.3);
    background-color: var(--card-background);
    color: var(--text-primary);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .creations-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .header-actions {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .social-links {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .sort-select {
        width: 100%;
    }
} 