/* Reset and base styles */
body {
    margin: 0;
    padding: 0;
    background-color: #F8F9FA;
    font-family: 'Rajdhani', sans-serif;
    color: #212529;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Top Navigation */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: transparent;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(90deg, #A84DF2, #C168F9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a.nav-button {
    margin-left: 15px;
    padding: 8px 16px;
    border: 2px solid #A84DF2;
    border-radius: 20px;
    background-color: white;
    color: #A84DF2;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.nav-links a.nav-button:hover,
.nav-links a.nav-button.active {
    background: linear-gradient(90deg, #9C27B0, #673AB7);
    color: white;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 20px 20px;
    flex-grow: 1;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 5px;
}

.hero-lexorva {
    font-family: 'Orbitron', sans-serif;
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(90deg, #A84DF2, #C168F9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #212529;
    margin-bottom: 20px;
}

/* Cards */
.cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.card {
    background-color: #FFFFFF;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 20px;
    max-width: 320px;
    text-align: left;
}

.card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    line-height: 1.5;
}

/* Middle Section */
.middle-section {
    margin-bottom: 40px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 14px 24px;
    background: linear-gradient(90deg, #9C27B0, #673AB7);
    color: white;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
    font-size: 16px;
    font-family: 'Rajdhani', sans-serif;
}

.cta-button:hover {
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.4);
}

.upgrade-link {
    display: block;
    color: #A84DF2;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #6c757d;
}

/* Responsiveness */
@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .hero-lexorva {
        font-size: 48px;
    }

    .hero-title {
        font-size: 24px;
    }
}

/* Login Page Styles */
.login-body {
    background-color: #F5F6F8;
    font-family: 'Rajdhani', sans-serif;
    color: #212529;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.nav-links .home-link {
    color: #9C27B0;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
}

.nav-links .home-link:hover {
    text-decoration: underline;
}

/* Login Main */
.login-main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    min-height: calc(100vh - 80px);
}

.login-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 40px 20px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    margin: 0 auto;
}

.login-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(90deg, #9C27B0, #673AB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

.login-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 30px;
}

/* Inputs */
.login-input {
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    padding: 14px 16px;
    margin-bottom: 16px;
    border-radius: 8px;
    border: 1px solid #CCC;
    font-size: 16px;
    display: block;
    box-sizing: border-box;
}

.login-input:focus {
    border-color: #9C27B0;
    box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.2);
    outline: none;
}

.promo-input::placeholder {
    color: #AAA;
}

/* Terms */
.terms-wrapper {
    margin-bottom: 20px;
    text-align: left;
    font-size: 14px;
}

.terms-wrapper label {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.terms-wrapper input[type="checkbox"] {
    transform: scale(1.2);
    margin: 0;
}

.terms-wrapper a {
    color: #9C27B0;
    text-decoration: none;
}

.terms-wrapper a:hover {
    text-decoration: underline;
}

/* Error Message */
.error-message {
    margin-top: 12px;
    color: red;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
    }
}

/* Centering for Login */
.login-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

.login-card {
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
}
.card p {
  text-shadow: 0 0 8px rgba(168, 77, 242, 0.2);
  transition: text-shadow 0.3s ease;
}

