* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f0f0f;
    color: #f5f5f5;
    min-height: 100vh;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.main-content {
    flex: 1 0 auto;
}

.bg-animation {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(139, 92, 246, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at bottom left, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
    animation: backgroundShift 20s ease-in-out infinite;
}

.star {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: twinkle 5s infinite ease-in-out, float 10s infinite linear;
}

.star:nth-child(1) { top: 10%; left: 15%; width: 2px; height: 2px; animation-delay: 0s; }
.star:nth-child(2) { top: 20%; left: 85%; width: 3px; height: 3px; animation-delay: 1s; }
.star:nth-child(3) { top: 30%; left: 30%; width: 1px; height: 1px; animation-delay: 2s; }
.star:nth-child(4) { top: 40%; left: 70%; width: 2px; height: 2px; animation-delay: 3s; }
.star:nth-child(5) { top: 50%; left: 20%; width: 3px; height: 3px; animation-delay: 4s; }
.star:nth-child(6) { top: 60%; left: 90%; width: 1px; height: 1px; animation-delay: 5s; }
.star:nth-child(7) { top: 70%; left: 40%; width: 2px; height: 2px; animation-delay: 6s; }
.star:nth-child(8) { top: 80%; left: 60%; width: 3px; height: 3px; animation-delay: 7s; }
.star:nth-child(9) { top: 90%; left: 25%; width: 1px; height: 1px; animation-delay: 8s; }
.star:nth-child(10) { top: 15%; left: 50%; width: 2px; height: 2px; animation-delay: 9s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(10px, -10px); }
    100% { transform: translate(0, 0); }
}

@keyframes backgroundShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(1deg); }
}

@keyframes wave {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes logoWave {
    0% { filter: drop-shadow(0 0 4px rgba(139, 92, 246, 0.3)); }
    50% { filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.5)); }
    100% { filter: drop-shadow(0 0 4px rgba(139, 92, 246, 0.3)); }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(173, 145, 255, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(173, 145, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(173, 145, 255, 0); }
}

.header {
    width: 100%;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 10;
    background: transparent;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #f5f5f5;
    position: relative;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-container::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    transition: width 0.3s ease;
}

.logo-container:hover::after {
    width: 100%;
}

.logo {
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
}

.color-custom-logo {
    animation: logoWave 3s infinite linear;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(90deg, #f5f5f5, #d4d4d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-link {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #f5f5f5;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
}

.login-link {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.login-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    transition: left 0.5s ease;
}

.login-link:hover::before {
    left: 100%;
}

.login-link:hover {
    border-color: #8b5cf6;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.2);
}

.color-custom {
    color: #ad91ff;
    background: linear-gradient(90deg, white, #ad91ff, white);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: wave 3s infinite linear;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-section {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80vh;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInScale 1s ease-out forwards;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-slogan {
    font-size: 1.5rem;
    font-weight: 400;
    color: #d4d4d4;
    max-width: 600px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 400;
    color: #b0b0b0;
    max-width: 600px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.learn-more-btn {
    display: inline-block;
    color: #f5f5f5;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

section[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

section[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

section[data-animate] .section-title,
section[data-animate] .section-description,
section[data-animate] .cta-btn,
section[data-animate] .feature-card,
section[data-animate] .stat-card,
section[data-animate] .subscription-card,
section[data-animate] .footer-text,
section[data-animate] .footer-nav,
section[data-animate] .footer-link,
section[data-animate] .footer-login-link,
section[data-animate] .footer-logo-container {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

section[data-animate].visible .section-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

section[data-animate].visible .section-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

section[data-animate].visible .cta-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

section[data-animate].visible .feature-card,
section[data-animate].visible .stat-card,
section[data-animate].visible .subscription-card {
    opacity: 1;
    transform: translateY(0);
}

section[data-animate].visible .feature-card:nth-child(1),
section[data-animate].visible .stat-card:nth-child(1),
section[data-animate].visible .subscription-card:nth-child(1) {
    transition-delay: 0.2s;
}

section[data-animate].visible .feature-card:nth-child(2),
section[data-animate].visible .stat-card:nth-child(2),
section[data-animate].visible .subscription-card:nth-child(2) {
    transition-delay: 0.4s;
}

section[data-animate].visible .feature-card:nth-child(3),
section[data-animate].visible .stat-card:nth-child(3),
section[data-animate].visible .subscription-card:nth-child(3) {
    transition-delay: 0.6s;
}

section[data-animate].visible .feature-card:nth-child(4) {
    transition-delay: 0.8s;
}

section[data-animate].visible .footer-logo-container {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

section[data-animate].visible .footer-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

section[data-animate].visible .footer-nav {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

section[data-animate].visible .footer-link:nth-child(1),
section[data-animate].visible .footer-login-link:nth-child(1) {
    transition-delay: 0.6s;
}

section[data-animate].visible .footer-link:nth-child(2) {
    transition-delay: 0.8s;
}

section[data-animate].visible .footer-link:nth-child(3) {
    transition-delay: 1s;
}

section[data-animate].visible .footer-login-link {
    transition-delay: 1.2s;
}

.learn-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    transition: left 0.5s ease;
}

.learn-more-btn:hover::before {
    left: 100%;
}

.learn-more-btn:hover {
    border-color: #8b5cf6;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.3);
}

.learn-more-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f5f5f5;
    background: linear-gradient(45deg, #f5f5f5, #ad91ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    color: #f5f5f5;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    border-color: #8b5cf6;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.3), rgba(168, 85, 247, 0.3));
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.3);
}

.features-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(173, 145, 255, 0.5);
    animation: pulse 1.7s infinite;
}

.feature-icon {
    font-size: 2rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f5f5f5;
}

.feature-description {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.5;
}

.stats-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    padding: 2rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(173, 145, 255, 0.5);
    animation: pulse 1.7s infinite;
}

.stat-icon {
    font-size: 2rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.stat-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f5f5f5;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b5cf6;
    line-height: 1.5;
}

.subscriptions-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    border-radius: 12px;
    backdrop-filter: blur(6px);
}

.subscriptions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(380px, 1fr));
    gap: 2.5rem;
}

.subscription-card {
    padding: 2.5rem;
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.subscription-card.featured {
    border: 2px solid #8b5cf6;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.15) 0%, rgba(15, 15, 15, 0.85) 100%);
    position: relative;
    overflow: hidden;
}

.subscription-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem;
    background: #8b5cf6;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.subscription-card.featured:hover::before {
    transform: translateY(0);
}

.subscription-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(139, 92, 246, 0.4);
    background: rgba(15, 15, 15, 0.9);
    animation: pulse 2s infinite;
}

.subscription-card.featured:hover {
    transform: translateY(-8px) translateX(-10px) scale(1.03);
}

.plan-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f5f5f5;
    background: linear-gradient(90deg, #f5f5f5, #ad91ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 1.5rem;
}

.plan-price span {
    font-size: 1.1rem;
    color: #b0b0b0;
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    color: #d4d4d4;
    flex-grow: 1;
    padding: 0 1rem;
}

.plan-features li {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
    text-align: left;
}

.plan-features li[data-status="available"]::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: 600;
    font-size: 1.2rem;
}

.plan-features li[data-status="unavailable"]::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1.2rem;
}

.plan-btn {
    display: inline-block;
    color: #f5f5f5;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.85rem 2.5rem;
    border: 1px solid #8b5cf6;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.plan-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    transition: left 0.4s ease;
    z-index: -1;
}

.plan-btn:hover::before {
    left: 0;
}

.plan-btn:hover {
    color: #ffffff;
    border-color: #a855f7;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(139, 92, 246, 0.5);
}

.footer-section {
    flex-shrink: 0;
    width: 100%;
    padding: 2rem;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #f5f5f5;
    position: relative;
    transition: transform 0.3s ease;
}

.footer-logo-container:hover {
    transform: scale(1.05);
}

.footer-logo {
    width: 48px;
    height: 48px;
    animation: logoWave 3s infinite linear;
}

.footer-text {
    text-align: left;
    flex-grow: 1;
}

.footer-slogan {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #f5f5f5, #ad91ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-copyright {
    font-size: 1rem;
    color: #b0b0b0;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-link {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #f5f5f5;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-login-link {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.footer-login-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    transition: left 0.5s ease;
}

.footer-login-link:hover::before {
    left: 100%;
}

.footer-login-link:hover {
    border-color: #8b5cf6;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.2);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #f5f5f5;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 768px) {
    .header {
        padding: 0.5rem 1rem;
        background: rgba(15, 15, 15, 0.95);
        backdrop-filter: blur(12px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .nav-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .nav-left {
        flex-direction: row;
        align-items: center;
    }

    .hamburger {
        display: block;
        margin-left: 100px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.98);
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform: translateY(-10px);
        opacity: 0;
    }

    .nav-menu.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        text-align: center;
        border-radius: 6px;
        background: rgba(139, 92, 246, 0.1);
        transition: background 0.3s ease, transform 0.2s ease;
    }

    .nav-link:hover {
        background: rgba(139, 92, 246, 0.2);
        transform: translateY(-2px);
    }

    .nav-link::after {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .nav-menu.active .nav-right {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .login-link {
        font-size: 1.2rem;
        padding: 0.75rem 2rem;
        width: 100%;
        text-align: center;
        background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
        border-radius: 6px;
    }

    .login-link:hover {
        background: linear-gradient(90deg, rgba(139, 92, 246, 0.3), rgba(168, 85, 247, 0.3));
        transform: translateY(-2px);
    }

    .logo {
        width: 28px;
        height: 28px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero-logo {
        width: 60px;
        height: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-slogan {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .learn-more-btn {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }

    .star {
        transform: scale(0.8);
    }

    .star:nth-child(1) { top: 15%; left: 20%; }
    .star:nth-child(2) { top: 25%; left: 80%; }
    .star:nth-child(3) { top: 35%; left: 35%; }
    .star:nth-child(4) { top: 45%; left: 65%; }
    .star:nth-child(5) { top: 55%; left: 25%; }
    .star:nth-child(6) { top: 65%; left: 85%; }
    .star:nth-child(7) { top: 75%; left: 45%; }
    .star:nth-child(8) { top: 85%; left: 60%; }
    .star:nth-child(9) { top: 95%; left: 30%; }
    .star:nth-child(10) { top: 20%; left: 50%; }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .subscriptions-grid {
        grid-template-columns: 1fr;
    }

    .subscription-card.featured {
        transform: scale(1);
    }

    .subscription-card.featured:hover {
        transform: translateY(-5px);
    }

    .footer-section {
        padding: 1.5rem 1rem;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-logo-container {
        margin-bottom: 0.5rem;
    }

    .footer-text {
        text-align: center;
    }

    .footer-slogan {
        font-size: 1.2rem;
    }

    .footer-copyright {
        font-size: 0.9rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-link,
    .footer-login-link {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        width: 100%;
        text-align: center;
        border-radius: 4px;
    }

    .footer-login-link {
        background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
    }

    .footer-login-link:hover {
        background: linear-gradient(90deg, rgba(139, 92, 246, 0.3), rgba(168, 85, 247, 0.3));
        transform: translateY(-2px);
    }
}