:root {
    --bg-0: #11111b;
    --bg-1: #181825;
    --bg-2: #1e1e2e;
    --bg-3: #313244;
    --fg-0: #cdd6f4;
    --fg-1: #a6adc8;
    --accent-purple: #b4befe;
    --accent-blue: #89b4fa;
    --accent-red: #f38ba8;
    --border-md: 8px;
    --border-lg: 12px;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--bg-1); }

/* Selection Color */
::selection { background: rgba(180, 190, 254, 0.3); color: var(--fg-0); }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-0);
    color: var(--fg-0);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 50px 160px, #ddd, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 80px 120px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 110px 10px, #ccc, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 150px 150px, #fff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: stars-move 100s linear infinite;
}

@keyframes stars-move {
    from { background-position: 0 0; }
    to { background-position: 0 1000px; }
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navbar */
nav {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    background: rgba(17, 17, 27, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--accent-purple);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    align-items: center;
}

.nav-links a:hover {
    color: var(--accent-purple);
    transform: translateY(-1px);
}

/* Hero */
header {
    text-align: center;
    padding: 5rem 0 4rem;
}

.hero-logo {
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -4px;
    background: linear-gradient(
        to right, 
        #f38ba8, #fab387, #f9e2af, #a6e3a1, #89b4fa, #b4befe, #f38ba8
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow-scroll 4s linear infinite;
    filter: drop-shadow(0 0 15px rgba(180, 190, 254, 0.1));
}

@keyframes rainbow-scroll {
    to { background-position: 200% center; }
}

header h2 {
    color: var(--fg-1);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-md);
    font-weight: 800;
    font-size: 1rem;
    outline: 2px solid var(--bg-3);
    background: var(--bg-1);
    transition: 0.2s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.btn-main {
    background-color: var(--accent-purple);
    color: var(--bg-0);
    outline: none;
    box-shadow: 0 4px 0px #949cce;
}

.btn-main:hover {
    background-color: #cba6f7;
    transform: translateY(-2px);
    box-shadow: 0 6px 0px #949cce;
}

.btn-main:active {
    transform: translateY(2px);
    box-shadow: 0 0px 0px #949cce;
}

.btn:not(.btn-main):hover {
    background-color: var(--bg-2);
    outline-color: var(--fg-1);
    transform: translateY(-2px);
}

/* Pricing Section */
.pricing-section {
    text-align: center;
    padding: 6rem 0;
    border-top: 1px solid var(--bg-3);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-section h2 {
    margin-bottom: 3rem;
    font-size: 2.25rem;
    width: 100%;
}

.pricing-card {
    background-color: var(--bg-2);
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--bg-3);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.price {
    font-size: 4.5rem;
    font-weight: 900;
    margin: 1rem 0;
    color: var(--fg-0);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li::before {
    content: "✔️";
}

/* Footer */
footer {
    padding: 5rem 0 3rem;
    border-top: 1px solid var(--bg-3);
    font-size: 0.85rem;
    color: var(--fg-1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.25rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background-color: var(--bg-2);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--bg-3);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--fg-0);
}

.feature-card p {
    color: var(--fg-1);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(180, 190, 254, 0.1) 0%, rgba(137, 180, 250, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid var(--bg-3);
    margin: 4rem 0;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--fg-1);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Pricing Page Header */
.pricing-header {
    text-align: center;
    padding: 4rem 0 3rem;
}

.pricing-header h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(
        to right, 
        #f38ba8, #fab387, #f9e2af, #a6e3a1, #89b4fa, #b4befe, #f38ba8
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-header p {
    color: var(--fg-1);
    font-size: 1.1rem;
}

/* Pricing Container */
.pricing-container {
    padding: 4rem 0;
}

/* Pricing Comparison */
.pricing-comparison {
    padding: 6rem 0;
    border-top: 1px solid var(--bg-3);
    border-bottom: 1px solid var(--bg-3);
}

.pricing-comparison h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.comparison-table {
    background-color: var(--bg-2);
    border-radius: 16px;
    border: 2px solid var(--bg-3);
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--bg-3);
    padding: 1.5rem;
    align-items: center;
    gap: 2rem;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-feature {
    font-weight: 600;
    color: var(--fg-0);
}

.comparison-cell {
    text-align: center;
    color: var(--fg-1);
}

/* FAQ Page Styles */
.faq-header {
    text-align: center;
    padding: 4rem 0 3rem;
}

.faq-header h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(
        to right, 
        #f38ba8, #fab387, #f9e2af, #a6e3a1, #89b4fa, #b4befe, #f38ba8
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow-scroll 4s linear infinite;
}

.faq-header p {
    color: var(--fg-1);
    font-size: 1.1rem;
}

.faq-section {
    padding: 4rem 0;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.faq-category {
    background-color: var(--bg-2);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--bg-3);
    transition: all 0.3s ease;
}

.faq-category:hover {
    border-color: var(--accent-purple);
}

.faq-category-title {
    font-size: 1.5rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-3);
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(180, 190, 254, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item.active {
    border-color: var(--accent-purple);
    background-color: rgba(180, 190, 254, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background-color: var(--bg-3);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--fg-0);
    transition: all 0.3s ease;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.faq-question:hover {
    background-color: rgba(180, 190, 254, 0.1);
}

.faq-item.active .faq-question {
    background-color: rgba(180, 190, 254, 0.15);
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--accent-purple);
    color: var(--bg-0);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.25rem;
    color: var(--fg-1);
    line-height: 1.6;
    margin: 0;
}

.faq-answer a {
    color: var(--accent-purple);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.faq-answer a:hover {
    color: var(--accent-blue);
}

@media (max-width: 768px) {
    .pricing-section { flex-direction: column; }
    .pricing-card { max-width: 440px; margin: 0 auto; }
}

@media (max-width: 600px) {
    .button-group { flex-direction: column; padding: 0 2rem; }
    .hero-logo { font-size: 4rem; }
    .footer-content { flex-direction: column; text-align: center; }
}

/* Videos Section */
.videos-section {
    padding: 4rem 0;
    text-align: center;
}

.videos-section h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-container {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--bg-3);
    border-radius: 16px;
}

.video-placeholder:hover {
    border-color: var(--accent-purple);
    transform: scale(1.02);
}

.play-icon {
    font-size: 3rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
}

.video-placeholder p {
    color: var(--fg-1);
    font-size: 1rem;
}

/* Explanation Section */
.explanation-section {
    padding: 4rem 0;
    text-align: center;
}

.explanation-content {
    background: linear-gradient(135deg, rgba(180, 190, 254, 0.05) 0%, rgba(137, 180, 250, 0.05) 100%);
    padding: 3.5rem;
    border-radius: 20px;
    border: 2px solid var(--bg-3);
    box-shadow: 0 8px 32px rgba(180, 190, 254, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.explanation-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(180, 190, 254, 0.1) 0%, transparent 70%);
    animation: pulse-glow 6s ease-in-out infinite;
}

.explanation-content:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 12px 40px rgba(180, 190, 254, 0.2);
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.explanation-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.explanation-content p {
    color: var(--fg-1);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.btn-large {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    position: relative;
    z-index: 1;
}

/* Modules Section */
.modules-section {
    padding: 6rem 0;
    border-top: 1px solid var(--bg-3);
    border-bottom: 1px solid var(--bg-3);
}

.modules-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
}

.modules-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.module-category {
    background-color: var(--bg-2);
    border: 2px solid var(--bg-3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.module-category.collapsed .category-items {
    display: none;
}

.module-category.collapsed .toggle-icon {
    transform: rotate(-90deg);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--bg-3);
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.category-header:hover {
    background-color: rgba(180, 190, 254, 0.1);
}

.category-header h3 {
    font-size: 1.25rem;
    color: var(--fg-0);
    margin: 0;
}

.toggle-icon {
    color: var(--accent-purple);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.category-items {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.module-item {
    background-color: rgba(49, 50, 68, 0.5);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-purple);
    transition: all 0.2s ease;
}

.module-item:hover {
    background-color: rgba(49, 50, 68, 0.8);
    transform: translateX(4px);
}

.module-name {
    font-weight: 600;
    color: var(--fg-0);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.module-settings {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(180, 190, 254, 0.1);
}

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

.setting-name {
    color: var(--fg-1);
}

.setting-value {
    color: var(--accent-purple);
    font-weight: 600;
}

/* Discord Section */
.discord-section {
    padding: 6rem 0;
    text-align: center;
}

.discord-section h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.discord-embed {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.discord-embed iframe {
    border-radius: 12px;
    border: 2px solid var(--bg-3);
}

.discord-fallback {
    color: var(--fg-1);
    font-size: 0.95rem;
    width: 100%;
    padding-top: 1rem;
}

.discord-fallback a {
    color: var(--accent-purple);
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: flex;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background-color: var(--bg-2);
    border: 2px solid var(--bg-3);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-content.modal-auth {
    max-width: 450px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--bg-3);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--fg-1);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

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

.modal-body {
    padding: 2rem;
}

.modal-info {
    color: var(--fg-1);
    margin-bottom: 1.5rem;
}

.modal-info a {
    color: var(--accent-purple);
    text-decoration: underline;
}

/* Auth Page Styles */
.auth-page-wrapper {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.auth-container {
    width: 100%;
    max-width: 520px;
    background-color: var(--bg-2);
    border: 2px solid var(--bg-3);
    border-radius: 16px;
    padding: 2.5rem 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #b4befe, #89b4fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-header p {
    color: var(--fg-1);
    font-size: 0.95rem;
}

.auth-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--bg-3);
}

.auth-tab {
    flex: 1;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    color: var(--fg-1);
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.auth-tab:hover {
    color: var(--accent-purple);
}

.auth-tab.active {
    color: var(--accent-purple);
    border-bottom-color: var(--accent-purple);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--fg-0);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--bg-3);
    border: 2px solid var(--bg-3);
    border-radius: 8px;
    color: var(--fg-0);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-purple);
    background-color: rgba(180, 190, 254, 0.05);
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--fg-1);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    padding: 0.25rem;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: var(--accent-purple);
}

.form-hint {
    display: block;
    margin-top: 0.35rem;
    color: var(--fg-1);
    font-size: 0.8rem;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-group.checkbox input {
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-top: 0.25rem;
    cursor: pointer;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
}

.form-group.checkbox a {
    color: var(--accent-purple);
    text-decoration: underline;
}

.form-divider {
    text-align: center;
    color: var(--fg-1);
    margin: 1.5rem 0;
    font-size: 0.85rem;
}

.form-divider::before,
.form-divider::after {
    content: '';
    display: inline-block;
    width: 30%;
    height: 1px;
    background-color: var(--bg-3);
    vertical-align: middle;
}

.form-divider::before {
    margin-right: 0.75rem;
}

.form-divider::after {
    margin-left: 0.75rem;
}

.auth-footer {
    color: var(--fg-1);
    font-size: 0.85rem;
    margin-top: 1.25rem;
    text-align: center;
}

.auth-footer a {
    color: var(--accent-purple);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.auth-footer a:hover {
    color: var(--accent-blue);
}

.auth-info {
    background-color: rgba(180, 190, 254, 0.1);
    border-left: 4px solid var(--accent-purple);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.auth-info p {
    margin: 0;
    color: var(--fg-1);
    font-size: 0.85rem;
    line-height: 1.5;
}

.hidden {
    display: none !important;
}

.form-status {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.form-status.hidden {
    display: none !important;
}

.form-status.error {
    background-color: rgba(243, 139, 168, 0.15);
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
}

.form-status.success {
    background-color: rgba(166, 227, 161, 0.15);
    border: 1px solid #a6e3a1;
    color: #a6e3a1;
}

.form-status.loading {
    background-color: rgba(137, 180, 250, 0.15);
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
}

.verification-notice {
    text-align: center;
}

/* Dashboard Styles */
.dashboard-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.dashboard-sidebar {
    background-color: var(--bg-2);
    border: 2px solid var(--bg-3);
    border-radius: 12px;
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-section h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-purple);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.menu-section a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--fg-1);
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.menu-section a:last-child {
    margin-bottom: 0;
}

.menu-section a:hover {
    background-color: rgba(180, 190, 254, 0.1);
    color: var(--accent-purple);
}

.menu-section a.active {
    background-color: var(--accent-purple);
    color: var(--bg-0);
}

.dashboard-content {
    display: flex;
    flex-direction: column;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--fg-1);
    font-size: 1rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.dashboard-card {
    background-color: var(--bg-2);
    border: 2px solid var(--bg-3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    border-color: var(--accent-purple);
}

.dashboard-card.danger-card {
    border-color: var(--accent-red);
}

.card-header {
    background-color: var(--bg-3);
    padding: 1.25rem;
    border-bottom: 2px solid var(--bg-3);
}

.card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--fg-0);
}

.card-body {
    padding: 1.5rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bg-3);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--fg-1);
    font-weight: 500;
}

.info-value {
    color: var(--fg-0);
    font-weight: 600;
}

.license-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(180, 190, 254, 0.2) 0%, rgba(137, 180, 250, 0.2) 100%);
    border: 2px solid var(--accent-purple);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    margin-bottom: 1rem;
}

.badge-label {
    display: block;
    color: var(--accent-purple);
    font-weight: 700;
    font-size: 0.95rem;
}

.license-info {
    color: var(--fg-1);
    font-size: 0.9rem;
    margin: 1rem 0 0 0;
}

.info-banner {
    background-color: rgba(180, 190, 254, 0.1);
    border-left: 4px solid var(--accent-purple);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.info-banner p {
    margin: 0;
    color: var(--fg-1);
}

.info-banner a {
    color: var(--accent-purple);
    text-decoration: underline;
}

.action-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--bg-3);
    border: 2px solid var(--bg-3);
    border-radius: 8px;
    color: var(--fg-0);
    transition: all 0.2s ease;
}

.action-item:hover {
    background-color: rgba(180, 190, 254, 0.1);
    border-color: var(--accent-purple);
}

.action-icon {
    font-size: 1.5rem;
    min-width: 24px;
    text-align: center;
}

.action-text {
    font-weight: 600;
}

.downloads-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background-color: var(--bg-3);
    border-radius: 8px;
    border: 2px solid var(--bg-3);
    transition: all 0.2s ease;
}

.download-item:hover {
    border-color: var(--accent-purple);
}

.download-info h4 {
    margin: 0 0 0.25rem 0;
    color: var(--fg-0);
    font-size: 1rem;
}

.version-info {
    margin: 0;
    color: var(--fg-1);
    font-size: 0.85rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--bg-3);
    border: 2px solid var(--bg-3);
    border-radius: 8px;
    color: var(--fg-0);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-purple);
    background-color: rgba(180, 190, 254, 0.05);
}

.purchases-table {
    overflow-x: auto;
}

.purchases-table table {
    width: 100%;
    border-collapse: collapse;
}

.purchases-table th {
    background-color: var(--bg-3);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--fg-0);
    border-bottom: 2px solid var(--bg-3);
}

.purchases-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--bg-3);
    color: var(--fg-1);
}

.purchases-table tr:hover {
    background-color: rgba(180, 190, 254, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .modules-section {
        padding: 4rem 0;
    }
    
    .explanation-content {
        padding: 2rem 1.5rem;
    }
    
    .discord-embed {
        flex-direction: column;
        align-items: center;
    }
    
    .dashboard-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-sidebar {
        position: static;
    }
    
    .sidebar-menu {
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .menu-section {
        display: flex;
        gap: 0.5rem;
        white-space: nowrap;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .videos-section h3 {
        font-size: 1.5rem;
    }
    
    .explanation-content h2 {
        font-size: 1.5rem;
    }
    
    .explanation-content {
        padding: 2rem 1.5rem;
    }
    
    .modules-section h2 {
        font-size: 1.75rem;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .faq-header h1 {
        font-size: 2rem;
    }
    
    .faq-category {
        padding: 1.5rem 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .auth-container {
        border-radius: 12px;
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .auth-header h1 {
        font-size: 1.5rem;
    }
    
    .auth-tabs {
        gap: 0.5rem;
    }
    
    .auth-tab {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }
}
