/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #08070e;
    --bg-secondary: #17171d;
    --bg-tertiary: #202026;
    --text-primary: #f5f5f5;
    --text-secondary: #d5d5d5;
    --accent: #00ffb2;
    --accent-dark: #00ca8d;
    --border-color: rgba(95, 95, 113, 0.22);
    --border-light: rgba(255, 255, 255, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(8, 7, 14, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
}

.nav-container {
    max-width: 1184px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-family: 'DM Sans', sans-serif;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.2s ease;
    white-space: nowrap;
}

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

.nav-links a.active {
    color: var(--text-primary);
    font-weight: 500;
}

.btn-duplicate {
    background-color: #0088FF;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-duplicate:hover {
    background-color: #0066CC;
    color: #ffffff !important;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 192px 24px 48px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    background: radial-gradient(ellipse 100% 80% at 50% 45%, rgba(0, 255, 178, 0.18) 0%, rgba(171, 255, 230, 0.1) 20%, rgba(0, 255, 178, 0.05) 35%, rgba(8, 7, 14, 0.4) 60%, rgba(8, 7, 14, 0.85) 80%, rgba(8, 7, 14, 1) 100%);
}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.05;
}

.blur-1 {
    width: 930px;
    height: 930px;
    background-color: #ffffff;
    top: -490px;
    left: -395px;
    opacity: 0.01;
}

.blur-2 {
    width: 694px;
    height: 694px;
    background-color: #abffe6;
    top: -362px;
    left: -347px;
    opacity: 0.05;
}

.blur-3 {
    width: 930px;
    height: 930px;
    background-color: #ffffff;
    top: -21px;
    right: -622px;
    opacity: 0.01;
}

.blur-4 {
    width: 694px;
    height: 694px;
    background-color: #abffe6;
    top: 97px;
    right: -504px;
    opacity: 0.05;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 712px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 82px;
    font-weight: 400;
    line-height: 90px;
    letter-spacing: 0em;
    color: var(--text-primary);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2em;
}

.hero-title .word {
    display: inline-block;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.hero-title .word:nth-child(1) { animation-delay: 0.1s; }
.hero-title .word:nth-child(2) { animation-delay: 0.2s; }
.hero-title .word:nth-child(3) { animation-delay: 0.3s; }
.hero-title .word:nth-child(4) { animation-delay: 0.4s; }
.hero-title .word:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subheading {
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    color: var(--text-primary);
    max-width: 95%;
    margin: 0 auto;
    font-weight: 300;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.3em;
    text-align: center;
}

.animated-words {
    display: inline-block;
    position: relative;
    text-align: center;
    vertical-align: middle;
}

.animated-words .word-active {
    display: inline-block;
    color: var(--accent);
    font-weight: 500;
    position: relative;
}

.animated-words .cursor {
    display: inline-block;
    color: var(--accent);
    font-weight: 500;
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-description {
    font-size: 20px;
    line-height: 28px;
    color: var(--text-secondary);
    max-width: 95%;
    margin: 0 auto;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: #0088FF;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background-color: #0066CC;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 136, 255, 0.3);
}

.hero-tagline {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-secondary);
    margin-top: 24px;
    text-align: center;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.trust-rating {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 1184px;
    height: 728px;
    margin-top: 96px;
    z-index: 1;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 255, 178, 0.1) 0%, rgba(8, 7, 14, 0.8) 100%);
    border: 1px solid var(--border-color);
}

.gradient-line {
    position: absolute;
    top: 0;
    left: -70px;
    width: 64px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 255, 178, 0) 0%, var(--accent) 100%);
    border-radius: 20px;
    animation: slideIn 2s ease-out;
}

@keyframes slideIn {
    from {
        left: -100px;
        opacity: 0;
    }
    to {
        left: -70px;
        opacity: 1;
    }
}

.glow-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(24.5px);
    mix-blend-mode: lighten;
}

.glow-1 {
    width: 1059px;
    height: 29px;
    background: radial-gradient(50% 50% at 50% 50%, var(--accent) 0%, rgba(0, 202, 141, 0.4) 100%);
    opacity: 0.3;
    top: 182px;
    left: 3px;
}

.glow-2 {
    width: 679px;
    height: 17px;
    background: radial-gradient(50% 50% at 50% 50%, var(--accent) 0%, rgba(0, 202, 141, 0.4) 100%);
    opacity: 0.8;
    top: 188px;
    left: 193px;
    filter: blur(40.5px);
}

.glow-3 {
    width: 645px;
    height: 17px;
    background: radial-gradient(50% 50%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.4) 100%);
    opacity: 0.2;
    top: 189px;
    left: calc(50% - 322.5px);
    filter: blur(7px);
}

.glow-4 {
    width: 463px;
    height: 5px;
    background: radial-gradient(50% 50%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.4) 100%);
    opacity: 0.8;
    top: 195px;
    left: calc(50% - 231.5px);
    filter: blur(12px);
}

.glow-5 {
    width: 1066px;
    height: 398px;
    background-color: var(--accent);
    mix-blend-mode: lighten;
    opacity: 0.1;
    top: calc(50% - 199px);
    left: 0;
    filter: blur(135px);
}

/* Subtitle Section */
.subtitle-section {
    padding: 128px 24px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
}

/* Why Section */
.why-section {
    padding: 128px 24px;
    max-width: 1184px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    line-height: 26px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
    max-width: 100%;
    justify-items: center;
    justify-content: center;
}

.benefit-card {
    padding: 32px;
    border-radius: 2.5rem; /* 40px - high-radius, bubbly appearance */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: none;
    width: 100%;
    max-width: 400px;
    min-width: 380px;
    height: 435px;
    min-height: 420px;
    max-height: 450px;
    box-sizing: border-box;
    aspect-ratio: 4 / 5;
    overflow: visible;
    transform: scale(1) translateY(0);
    transform-origin: center center;
    will-change: transform;
    position: relative;
    z-index: 1;
}

.benefit-image {
    width: 100%;
    height: 200px;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 8px;
    flex-shrink: 0;
    background: transparent;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1.5rem;
    background: transparent;
}

.benefit-card:hover {
    transform: scale(1.08) translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.benefit-card.card-1 {
    background-color: #A8D8EA; /* Light Blue - like Flexible Gifting */
}

.benefit-card.card-2 {
    background-color: #C8A8E9; /* Light Purple - like Schedule Gifts */
}

.benefit-card.card-3 {
    background-color: #FFB3D9; /* Light Pink - like Reminders */
}

/* Card colors for "Choose your learning path" section */
.how-section .benefit-card.card-1 {
    background-color: #F587A8; /* Exact color from screenshot */
}

.how-section .benefit-card.card-2 {
    background-color: #F7DC6F; /* Exact color from screenshot */
}

.how-section .benefit-card.card-3 {
    background-color: #B9CFE1; /* Exact color from screenshot */
}

/* Card lessons and arrow for "Choose your learning path" section */
.how-section .benefit-card .card-lessons {
    position: absolute;
    bottom: 48px;
    left: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    opacity: 0.7;
}

.how-section .benefit-card .card-arrow {
    position: absolute;
    bottom: 48px;
    right: 24px;
    color: #000000;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.how-section .benefit-card .card-arrow:hover {
    opacity: 1;
}

.how-section .benefit-card .card-start-text {
    font-size: 14px;
    font-weight: 500;
}

.how-section .benefit-card .card-arrow svg {
    width: 20px;
    height: 20px;
    transform: rotate(-45deg);
}

/* Left align title and description for "Choose your learning path" section */
.how-section .benefit-card .benefit-title {
    text-align: left;
}

.how-section .benefit-card .benefit-description {
    text-align: left;
}

.benefit-card.card-4 {
    background-color: #FF6B6B; /* Red - like Shop Stores */
}

.benefit-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.benefit-description {
    font-size: 16px;
    line-height: 24px;
    color: #333333;
}

/* Stats Section */
.stats-section {
    padding: 96px 24px;
    max-width: 1184px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0;
}

.stat-label {
    font-size: 18px;
    color: var(--text-secondary);
    text-transform: lowercase;
    margin: 0;
}

/* Chains Section */
.chains-section {
    padding: 80px 24px;
    max-width: 1184px;
    margin: 0 auto;
}

.chains-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.chains-section .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0;
}

.chains-scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.chains-scroll {
    display: flex;
    gap: 48px;
    animation: scroll-chains 30s linear infinite;
    width: fit-content;
}

.chain-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    min-width: 120px;
}

.chain-logo svg,
.chain-logo img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.chain-logo img[src="images/base.png"] {
    width: 80px;
    height: 80px;
}

.chain-logo:hover svg,
.chain-logo:hover img {
    transform: scale(1.1);
}

.chain-logo span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

@keyframes scroll-chains {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Cryptos Section */
.cryptos-section {
    padding: 128px 24px;
    max-width: 1184px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
}

.cryptos-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    gap: 48px;
}

.cryptos-text {
    flex: 1;
}

.cryptos-text .section-title {
    margin-bottom: 16px;
}

.cryptos-text .section-description {
    margin: 0;
    max-width: none;
    text-align: left;
}

.crypto-list-container {
    position: relative;
    overflow: hidden;
}

.crypto-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.crypto-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.6s ease-out forwards;
}

.crypto-item:first-child {
    border-top: 1px solid var(--border-color);
}

.crypto-item:hover {
    background-color: rgba(0, 255, 178, 0.05);
}

.crypto-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent);
}

.crypto-name {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    min-width: 120px;
}

.crypto-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.currency {
    font-size: 18px;
    color: var(--text-secondary);
}

.amount {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
}

.change {
    font-size: 14px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
}

.change.positive {
    color: var(--accent);
    background-color: rgba(0, 255, 178, 0.1);
}

.change.negative {
    color: #ff4444;
    background-color: rgba(255, 68, 68, 0.1);
}

/* How It Works Section */
.how-section {
    padding: 128px 24px;
    max-width: 1184px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.how-section .section-header {
    margin-bottom: 48px;
}

.how-section .btn-primary {
    margin-bottom: 48px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.step-card {
    padding: 24px;
    background-color: rgba(32, 32, 38, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.step-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 255, 178, 0.1);
    border-radius: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.step-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
}

.step-description {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-secondary);
}

/* Testimonials Section */
.testimonials-section {
    padding: 128px 24px;
    max-width: 1184px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.testimonials-section .section-title {
    margin-bottom: 16px;
}

.testimonials-section .section-description {
    margin-bottom: 48px;
}

.testimonial-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: rgba(32, 32, 38, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 48px;
    text-align: left;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-header {
    margin-bottom: 24px;
}

.testimonial-avatar {
    position: relative;
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.avatar-bg {
    position: absolute;
    width: 64px;
    height: 64px;
    background-color: var(--accent);
    border-radius: 50%;
    opacity: 0.2;
}

.avatar-link {
    position: absolute;
    width: 64px;
    height: 64px;
    display: block;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease;
    z-index: 1;
}

.avatar-link:hover {
    transform: scale(1.1);
}

.avatar-img {
    position: absolute;
    width: 64px;
    height: 64px;
    background-color: var(--bg-tertiary);
    border-radius: 50%;
    border: 2px solid var(--accent);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

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

.author-name {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-role {
    font-size: 16px;
    color: var(--text-secondary);
}

.testimonial-counter {
    font-size: 14px;
    color: var(--text-secondary);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.testimonial-btn {
    padding: 12px 24px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* FAQ Section */
.faq-section {
    padding: 128px 24px;
    max-width: 1184px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.faq-section .section-header {
    margin-bottom: 48px;
}

.faq-section .btn-primary {
    margin-bottom: 48px;
}

.faq-list {
    max-width: 800px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-wrapper {
    margin-bottom: 0;
}

.faq-item {
    width: 100%;
    padding: 20px 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.faq-item.active {
    background-color: rgba(255, 255, 255, 0.08);
}

.faq-plus {
    flex-shrink: 0;
    font-size: 28px;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}

.faq-plus::before {
    content: '+';
    display: block;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-plus::before {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0;
    background-color: transparent;
    margin-top: 0;
}

.faq-item.active + .faq-answer {
    max-height: 500px;
    padding: 16px 24px 24px;
    margin-top: 0;
}

.faq-answer p {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-secondary);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 128px 24px;
    max-width: 1184px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -420px;
    left: 50%;
    transform: translateX(-50%);
    width: 614px;
    height: 614px;
    background-color: rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    filter: blur(79px);
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -430px;
    left: 50%;
    transform: translateX(-50%);
    width: 666px;
    height: 614px;
    background-color: rgba(0, 255, 178, 0.09);
    border-radius: 50%;
    filter: blur(79px);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1em;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.cta-description {
    font-size: 18px;
    line-height: 26px;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 64px 24px;
    max-width: 1184px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 64px;
}

.footer-main {
    flex: 1;
    max-width: 320px;
}

.footer-text {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.footer-subheading {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.3em;
}

.animated-words-footer {
    display: inline-block;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.animated-words-footer .word-active-footer {
    display: inline-block;
    color: var(--accent);
    font-weight: 500;
    position: relative;
}

.animated-words-footer .cursor-footer {
    display: inline-block;
    color: var(--accent);
    font-weight: 500;
    animation: blink 1s infinite;
    margin-left: 2px;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--text-primary);
}

.footer-attributions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-attribution {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.7;
}

.footer-attribution a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 0.7;
}

.footer-attribution a:hover {
    opacity: 1;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 128px;
}

.footer-column-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.footer-column .footer-link {
    font-size: 16px;
    line-height: 24px;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .nav-container {
        max-width: 810px;
    }
    
    .hero-title {
        font-size: 64px;
        line-height: 72px;
    }
    
    .section-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .subtitle {
        font-size: 32px;
        line-height: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cryptos-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 809px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .hero {
        padding: 160px 16px 48px;
    }
    
    .hero-title {
        font-size: 40px;
        line-height: 48px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-image-container {
        height: 220px;
        margin-top: 48px;
    }
    
    .subtitle {
        font-size: 24px;
        line-height: 32px;
    }
    
    .section-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cryptos-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-text {
        font-size: 20px;
        line-height: 28px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 48px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.blur-circle {
    animation: float 20s ease-in-out infinite;
}

.blur-2 {
    animation-delay: -5s;
}

.blur-3 {
    animation-delay: -10s;
}

.blur-4 {
    animation-delay: -15s;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background-color: var(--accent);
    color: var(--bg-primary);
}

/* Dashboard Styles */
.dashboard-body {
    background-color: #f5f5f5;
    color: #1a1a1a;
}

.dashboard-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.dashboard-sidebar {
    width: 280px;
    background-color: #1a1a1a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 100;
}

.sidebar-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0088FF;
}

.sidebar-logo .logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.sidebar-nav {
    flex: 1;
    padding: 24px 0;
    overflow-y: auto;
}

.nav-section {
    margin-bottom: 32px;
}

.nav-section-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
    padding: 0 24px;
    margin-bottom: 12px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.nav-item.active {
    background-color: rgba(0, 136, 255, 0.1);
    color: #0088FF;
    border-left: 3px solid #0088FF;
}

.nav-item svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.nav-badge {
    margin-left: auto;
    background-color: #0088FF;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

.sidebar-profile {
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 2px;
}

.profile-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Main Content */
.dashboard-main {
    flex: 1;
    margin-left: 280px;
    background-color: #f5f5f5;
    min-height: 100vh;
}

.dashboard-header {
    background-color: #ffffff;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 10;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666666;
}

.breadcrumb-separator {
    color: #999999;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f5f5f5;
    padding: 8px 16px;
    border-radius: 8px;
    width: 300px;
}

.search-bar svg {
    color: #999999;
    flex-shrink: 0;
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #1a1a1a;
    width: 100%;
}

.search-bar input::placeholder {
    color: #999999;
}

.notification-btn {
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.notification-btn:hover {
    background-color: #f5f5f5;
    color: #1a1a1a;
}

.btn-new-goal {
    background-color: #0088FF;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-new-goal:hover {
    background-color: #0070cc;
}

.dashboard-content {
    padding: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Welcome Section */
.welcome-section {
    margin-bottom: 32px;
}

.welcome-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.welcome-subtitle {
    font-size: 16px;
    color: #666666;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999999;
}

.stat-change {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.stat-change.positive {
    background-color: #e6f7f0;
    color: #00b87a;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.stat-progress {
    height: 4px;
    background-color: #f5f5f5;
    border-radius: 2px;
    overflow: hidden;
}

.stat-progress-bar {
    height: 100%;
    background-color: #0088FF;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.stat-skills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.skill-tag {
    background-color: #f5f5f5;
    color: #666666;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 6px;
}

.stat-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}

.chart-bar {
    flex: 1;
    background-color: #0088FF;
    border-radius: 4px 4px 0 0;
    min-height: 8px;
    transition: height 0.3s ease;
}

.stat-upcoming {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666666;
    font-size: 14px;
}

.stat-upcoming svg {
    color: #999999;
}

/* Course Progress Section */
.course-progress-section {
    margin-bottom: 32px;
}

.course-card {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.course-badge {
    display: inline-block;
    background-color: #e6f7f0;
    color: #00b87a;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.course-content {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.course-image {
    flex-shrink: 0;
}

.course-image-placeholder {
    width: 120px;
    height: 80px;
    background-color: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-info {
    flex: 1;
}

.course-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.course-lesson {
    font-size: 14px;
    color: #666666;
    margin-bottom: 12px;
}

.course-progress {
    display: flex;
    align-items: center;
    gap: 12px;
}

.course-progress-bar {
    flex: 1;
    height: 8px;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

.course-progress-fill {
    height: 100%;
    background-color: #0088FF;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.course-progress-text {
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    min-width: 45px;
}

.course-actions {
    display: flex;
    gap: 12px;
}

.btn-continue {
    background-color: #0088FF;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-continue:hover {
    background-color: #0070cc;
}

.btn-view-details {
    background-color: transparent;
    color: #666666;
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-view-details:hover {
    background-color: #f5f5f5;
    color: #1a1a1a;
}

/* Learning Paths Section */
.learning-paths-section {
    margin-bottom: 32px;
}

.learning-paths-section .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.path-card {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease;
}

.path-card.locked {
    opacity: 0.6;
    background-color: #fafafa;
}

.path-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.path-icon.green {
    background-color: #e6f7f0;
    color: #00b87a;
}

.path-icon.grey {
    background-color: #e5e5e5;
    color: #999999;
}

.path-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.path-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.path-progress {
    margin-bottom: 16px;
}

.path-progress-bar {
    height: 6px;
    background-color: #f5f5f5;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.path-progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.path-progress-fill.green {
    background-color: #00b87a;
}

.path-progress-text {
    font-size: 12px;
    font-weight: 500;
    color: #666666;
}

.path-lock-text {
    font-size: 12px;
    font-weight: 500;
    color: #999999;
    margin-top: 8px;
}

.path-actions {
    display: flex;
    gap: 12px;
}

.btn-path-continue {
    background-color: #0088FF;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-path-continue:hover {
    background-color: #0070cc;
}

.btn-path-details {
    background-color: transparent;
    color: #666666;
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-path-details:hover {
    background-color: #f5f5f5;
    color: #1a1a1a;
}

/* Schedule and Sync Section */
.schedule-sync-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.schedule-card,
.sync-card {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.schedule-title,
.sync-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.schedule-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.schedule-item {
    display: flex;
    gap: 16px;
}

.schedule-time {
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    min-width: 50px;
}

.schedule-content {
    flex: 1;
}

.schedule-event {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.schedule-meta {
    font-size: 12px;
    color: #999999;
}

.schedule-participants {
    margin-top: 4px;
    font-size: 12px;
    color: #0088FF;
}

.sync-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sync-channel {
    font-size: 14px;
    color: #666666;
    margin-bottom: 8px;
}

.sync-task {
    display: flex;
    gap: 16px;
}

.sync-time {
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    min-width: 50px;
}

.sync-details {
    flex: 1;
}

.sync-event {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.sync-deadline {
    font-size: 12px;
    color: #999999;
    margin-bottom: 8px;
}

.sync-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.sync-badge.deadline {
    background-color: #fee;
    color: #d00;
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .paths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .schedule-sync-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 809px) {
    .dashboard-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .dashboard-main {
        margin-left: 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .paths-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-content {
        padding: 20px;
    }
    
    .dashboard-header {
        padding: 16px 20px;
    }
    
    .search-bar {
        width: 200px;
    }
}

/* Settings Page Styles */
.settings-container {
    max-width: 800px;
}

.settings-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.settings-section {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    margin-bottom: 24px;
}

.settings-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e5e5;
}

.settings-form-group {
    margin-bottom: 24px;
}

.settings-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.settings-input,
.settings-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #1a1a1a;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.settings-input:focus,
.settings-textarea:focus {
    outline: none;
    border-color: #0088FF;
    box-shadow: 0 0 0 3px rgba(0, 136, 255, 0.1);
}

.settings-textarea {
    resize: vertical;
    min-height: 100px;
}

.settings-hint {
    font-size: 12px;
    color: #999999;
    margin-top: 6px;
}

/* PFP Container */
.pfp-container {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.pfp-preview {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e5e5e5;
    flex-shrink: 0;
}

.pfp-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pfp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.pfp-preview:hover .pfp-overlay {
    opacity: 1;
}

.pfp-change-btn {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1a1a1a;
    transition: all 0.2s ease;
}

.pfp-change-btn:hover {
    background-color: #ffffff;
    transform: scale(1.1);
}

.pfp-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.btn-pfp-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background-color: #ffffff;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-pfp-option:hover {
    background-color: #f5f5f5;
    border-color: #0088FF;
    color: #0088FF;
}

.btn-pfp-option svg {
    color: currentColor;
}

/* Social Verification */
.social-verification {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.btn-social {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background-color: #ffffff;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    justify-content: space-between;
}

.btn-social:hover {
    background-color: #f5f5f5;
    border-color: #0088FF;
}

.btn-social.connected {
    background-color: #e6f7f0;
    border-color: #00b87a;
    color: #00b87a;
}

.btn-social svg {
    color: currentColor;
}

.social-status {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    background-color: transparent;
}

.btn-social.connected .social-status {
    background-color: #00b87a;
    color: #ffffff;
}

/* Settings Actions */
.settings-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
}

.btn-save {
    background-color: #0088FF;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-save:hover {
    background-color: #0070cc;
}

.btn-save:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.btn-cancel {
    background-color: transparent;
    color: #666666;
    border: 1px solid #e5e5e5;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel:hover {
    background-color: #f5f5f5;
    color: #1a1a1a;
}

/* Success Message */
.settings-success {
    background-color: #e6f7f0;
    color: #00b87a;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 24px;
    display: none;
}

.settings-success.show {
    display: block;
}

/* Connected Wallets Styles */
.wallets-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.wallet-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background-color: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.wallet-item:hover {
    background-color: #fafafa;
    border-color: #0088FF;
}

.wallet-item.primary {
    background-color: #e6f4ff;
    border-color: #0088FF;
}

.wallet-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.wallet-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #0088FF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.wallet-details {
    flex: 1;
}

.wallet-label {
    font-size: 12px;
    font-weight: 600;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.wallet-address {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Courier New', monospace;
}

.wallet-badge {
    display: inline-block;
    background-color: #0088FF;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
}

.wallet-actions-item {
    display: flex;
    gap: 8px;
}

.btn-wallet-remove {
    background-color: transparent;
    border: 1px solid #e5e5e5;
    color: #666666;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-wallet-remove:hover {
    background-color: #fee;
    border-color: #d00;
    color: #d00;
}

.wallet-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn-wallet-primary,
.btn-wallet-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-wallet-primary {
    background-color: #0088FF;
    color: #ffffff;
}

.btn-wallet-primary:hover {
    background-color: #0070cc;
}

.btn-wallet-secondary {
    background-color: transparent;
    border: 1px solid #e5e5e5;
    color: #666666;
}

.btn-wallet-secondary:hover {
    background-color: #f5f5f5;
    border-color: #0088FF;
    color: #0088FF;
}

/* Active Sessions Styles */
.sessions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.session-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background-color: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.session-item:hover {
    background-color: #fafafa;
}

.session-item.current {
    background-color: #e6f4ff;
    border-color: #0088FF;
}

.session-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.session-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.session-icon svg {
    width: 24px;
    height: 24px;
}

.session-details {
    flex: 1;
}

.session-device {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.session-meta {
    font-size: 12px;
    color: #999999;
    display: flex;
    align-items: center;
    gap: 8px;
}

.session-location {
    display: flex;
    align-items: center;
    gap: 4px;
}

.session-badge {
    display: inline-block;
    background-color: #0088FF;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
}

.sessions-actions {
    margin-top: 8px;
}

.btn-logout-all {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #e5e5e5;
    background-color: transparent;
    color: #666666;
}

.btn-logout-all:hover {
    background-color: #fee;
    border-color: #d00;
    color: #d00;
}

/* Account Actions Styles */
.account-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-logout {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #d00;
    background-color: transparent;
    color: #d00;
    width: fit-content;
}

.btn-logout:hover {
    background-color: #fee;
    border-color: #b00;
    color: #b00;
}

.account-actions-hint {
    font-size: 12px;
    color: #999999;
    margin-top: -4px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #999999;
}

.empty-state-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    opacity: 0.5;
}

.empty-state-text {
    font-size: 14px;
    color: #999999;
}

/* Responsive Settings */
@media (max-width: 809px) {
    .pfp-container {
        flex-direction: column;
    }
    
    .settings-actions {
        flex-direction: column;
    }
    
    .btn-save,
    .btn-cancel {
        width: 100%;
    }
    
    .wallet-actions {
        flex-direction: column;
    }
    
    .btn-wallet-primary,
    .btn-wallet-secondary {
        width: 100%;
    }
    
    .wallet-item,
    .session-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .wallet-actions-item {
        width: 100%;
        justify-content: flex-end;
    }
}

/* Auth Page Styles */
.auth-body {
    background-color: #0a0a0a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 480px;
}

.auth-card {
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 32px 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    color: #ffffff;
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 14px;
    color: #999999;
    text-align: center;
    margin-bottom: 24px;
}

.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    background-color: transparent;
    border: 1px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 20px;
}

.btn-google:hover {
    background-color: #222222;
    border-color: #444444;
}

.auth-separator {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.auth-separator::before,
.auth-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #333333;
}

.auth-separator span {
    padding: 0 16px;
    font-size: 12px;
    color: #666666;
    font-weight: 500;
}

.auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    background-color: #0f0f0f;
    padding: 4px;
    border-radius: 8px;
}

.auth-tab {
    flex: 1;
    padding: 10px 20px;
    background-color: transparent;
    border: none;
    border-radius: 6px;
    color: #999999;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-tab.active {
    background-color: #1a1a1a;
    color: #ffffff;
}

.auth-tab:hover:not(.active) {
    color: #cccccc;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-form.hidden {
    display: none;
}

.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

#tabs-container {
    transition: opacity 0.2s ease;
}

#tabs-container.hidden {
    display: none !important;
}

#reset-password-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#reset-password-form.hidden {
    display: none !important;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.form-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-password {
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.forgot-password:hover {
    color: #cccccc;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background-color: #0f0f0f;
    border: 1px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #0088FF;
    background-color: #1a1a1a;
}

.form-input::placeholder {
    color: #666666;
}

.form-hint {
    font-size: 12px;
    color: #666666;
    margin-top: 4px;
}

.form-hint.error {
    color: #d00;
}

.form-hint.success {
    color: #00b87a;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 4px;
}

.btn-submit:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Reset Password Section */
.reset-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.reset-description {
    font-size: 14px;
    color: #999999;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Forgot Password Form Actions */
.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn-cancel {
    flex: 1;
    padding: 12px 24px;
    background-color: transparent;
    border: 1px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel:hover {
    background-color: #222222;
    border-color: #444444;
}

.btn-reset {
    flex: 1;
    padding: 12px 24px;
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-reset:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
}

.btn-reset:active {
    transform: translateY(0);
}

.auth-terms {
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    margin-top: 16px;
    line-height: 1.6;
}

.auth-terms a {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.auth-terms a:hover {
    opacity: 0.8;
}

/* Auth Page Responsive */
@media (max-width: 600px) {
    .auth-card {
        padding: 32px 24px;
    }
    
    .auth-title {
        font-size: 24px;
    }
}

/* ============================================
   ENHANCED DASHBOARD STYLES
   ============================================ */

/* Welcome Section with Level Ring */
.welcome-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    gap: 32px;
}

.welcome-left {
    flex: 1;
}

.welcome-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.level-ring-container {
    position: relative;
    width: 120px;
    height: 120px;
}

.level-ring {
    transform: rotate(-90deg);
}

.level-ring-bg {
    stroke: #1a1a1f;
}

.level-ring-progress {
    stroke: #00ffb2;
    transition: stroke-dashoffset 0.5s ease;
}

.level-ring-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.level-number {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.level-label {
    font-size: 12px;
    color: #999999;
    margin-top: 4px;
}

.level-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rank-name {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.xp-info {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.xp-info span:first-child {
    font-size: 24px;
    font-weight: 700;
    color: #00ffb2;
}

.xp-label {
    font-size: 14px;
    color: #999999;
}

.xp-progress-bar {
    width: 200px;
    height: 8px;
    background: #1a1a1f;
    border-radius: 4px;
    overflow: hidden;
}

.xp-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffb2, #00ca8d);
    transition: width 0.5s ease;
    border-radius: 4px;
}

.xp-to-next {
    font-size: 12px;
    color: #999999;
    margin: 0;
}

/* Progress Overview Cards */
.progress-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.progress-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s ease;
}

.progress-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.progress-card-icon {
    font-size: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 178, 0.1);
    border-radius: 10px;
}

.progress-card-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.progress-card-content p {
    font-size: 14px;
    color: #999999;
    margin: 0;
}

.streak-card .progress-card-icon {
    background: rgba(255, 87, 34, 0.1);
}

.streak-record {
    font-size: 12px;
    color: #666666;
    margin-top: 4px;
}

/* Weekly Streak Calendar */
.streak-calendar-section {
    margin-bottom: 32px;
}

.weekly-calendar {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.calendar-day {
    flex: 1;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
}

.calendar-day.active {
    border-color: #00ffb2;
    background: rgba(0, 255, 178, 0.1);
}

.calendar-day.today {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.day-name {
    font-size: 12px;
    color: #999999;
    margin-bottom: 8px;
}

.day-number {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.day-activity {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    background: #00ffb2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: #000000;
}

/* Section Header Flex */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.view-all-link {
    color: #00ffb2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.view-all-link:hover {
    opacity: 0.8;
}

/* Continue Learning Section */
.continue-learning-section {
    margin-bottom: 32px;
}

.continue-learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.continue-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s ease;
}

.continue-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.continue-badge {
    display: inline-block;
    background: rgba(0, 255, 178, 0.1);
    color: #00ffb2;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.continue-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.continue-lesson {
    font-size: 14px;
    color: #999999;
    margin-bottom: 16px;
}

.continue-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.continue-progress-bar {
    flex: 1;
    height: 6px;
    background: #1a1a1f;
    border-radius: 3px;
    overflow: hidden;
}

.continue-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffb2, #00ca8d);
    transition: width 0.3s ease;
}

.continue-progress-text {
    font-size: 12px;
    color: #999999;
    font-weight: 600;
}

.btn-continue-lesson {
    width: 100%;
    padding: 10px 20px;
    background: #00ffb2;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-continue-lesson:hover {
    background: #00ca8d;
    transform: translateY(-1px);
}

/* Achievements Section */
.achievements-section {
    margin-bottom: 32px;
}

.achievements-count {
    font-size: 14px;
    color: #999999;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.achievement-badge {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.2s ease;
}

.achievement-badge.locked {
    opacity: 0.5;
}

.achievement-badge.unlocked {
    border-color: #00ffb2;
    background: rgba(0, 255, 178, 0.05);
}

.achievement-badge:hover {
    transform: translateY(-2px);
}

.achievement-icon-badge {
    font-size: 48px;
    margin-bottom: 12px;
}

.achievement-badge h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.achievement-badge p {
    font-size: 12px;
    color: #999999;
    margin: 0 0 8px 0;
}

.achievement-xp-badge {
    display: inline-block;
    background: rgba(0, 255, 178, 0.1);
    color: #00ffb2;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

/* Quick Actions Section */
.quick-actions-section {
    margin-bottom: 32px;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.quick-action-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.quick-action-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.quick-action-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.quick-action-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.quick-action-card p {
    font-size: 14px;
    color: #999999;
    margin: 0;
}

/* Level Up & Achievement Modals */
.level-up-modal,
.achievement-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.level-up-modal.show,
.achievement-modal.show {
    opacity: 1;
}

.level-up-content,
.achievement-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.level-up-modal.show .level-up-content,
.achievement-modal.show .achievement-content {
    transform: scale(1);
}

.level-up-icon,
.achievement-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.level-up-content h2,
.achievement-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.level-up-content h3,
.achievement-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #00ffb2;
    margin: 0 0 16px 0;
}

.achievement-xp {
    font-size: 18px;
    color: #00ffb2;
    font-weight: 600;
    margin: 16px 0;
}

.btn-close-modal {
    margin-top: 24px;
    padding: 12px 24px;
    background: #00ffb2;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-close-modal:hover {
    background: #00ca8d;
}

/* ============================================
   COURSES PAGE STYLES
   ============================================ */

.courses-header {
    margin-bottom: 32px;
}

.courses-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.courses-subtitle {
    font-size: 16px;
    color: #999999;
    margin: 0;
}

/* Path Tabs */
.path-tabs-section {
    margin-bottom: 32px;
}

.path-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
}

.path-tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #999999;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.path-tab:hover {
    color: #ffffff;
}

.path-tab.active {
    color: #00ffb2;
    border-bottom-color: #00ffb2;
}

/* Path Content */
.path-overview {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
}

.path-overview h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.path-overview p {
    font-size: 16px;
    color: #999999;
    margin: 0 0 24px 0;
}

.path-stats {
    display: flex;
    gap: 32px;
}

.path-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #00ffb2;
}

.stat-label {
    font-size: 14px;
    color: #999999;
}

.path-locked-message {
    text-align: center;
    padding: 80px 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.lock-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.path-locked-message h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.path-locked-message p {
    font-size: 16px;
    color: #999999;
    margin: 0 0 24px 0;
}

/* Chapter Cards */
.chapter-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.2s ease;
}

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

.chapter-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.chapter-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.chapter-progress-ring {
    position: relative;
    width: 60px;
    height: 60px;
}

.chapter-progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.chapter-info {
    flex: 1;
}

.chapter-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.chapter-description {
    font-size: 14px;
    color: #999999;
    margin: 0 0 8px 0;
}

.chapter-meta {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: #666666;
}

.chapter-expand-icon {
    color: #999999;
    transition: transform 0.2s ease;
}

.chapter-card.expanded .chapter-expand-icon {
    transform: rotate(180deg);
}

.chapter-lessons {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.chapter-card.expanded .chapter-lessons {
    max-height: 2000px;
    padding: 0 24px 24px 24px;
}

.lesson-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lesson-item:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

.lesson-item.completed {
    background: rgba(0, 255, 178, 0.05);
    border-color: rgba(0, 255, 178, 0.3);
}

.lesson-number {
    width: 32px;
    height: 32px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.lesson-item.completed .lesson-number {
    background: #00ffb2;
    color: #000000;
}

.lesson-content {
    flex: 1;
}

.lesson-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.lesson-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.lesson-badges {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lesson-type-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

.lesson-duration,
.lesson-xp {
    font-size: 12px;
    color: #999999;
}

.lesson-status {
    color: #999999;
}

/* Challenge Item in Challenges Tab */
.challenge-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.challenge-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.challenge-icon {
    font-size: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.challenge-content {
    flex: 1;
}

.challenge-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.challenge-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.challenge-status {
    display: flex;
    align-items: center;
}

.btn-start-challenge {
    padding: 12px 24px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-start-challenge:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-start-challenge:active {
    transform: translateY(0);
}

/* ============================================
   LESSON PAGE STYLES (SavingSatoshi Inspired)
   ============================================ */

.lesson-body {
    background: #000000;
    min-height: 100vh;
    overflow-x: hidden;
}

.lesson-container {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

.lesson-split-layout {
    display: flex;
    height: 100vh;
    width: 100%;
}

.lesson-image-section {
    flex: 1;
    min-width: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Default background image - futuristic cityscape */
.lesson-image-section {
    background-image: url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?w=1600&q=90');
    background-position: center right;
}

/* Chapter-specific background images - all futuristic/cyberpunk city scenes */
.lesson-image-section.chapter-1 {
    background-image: url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?w=1600&q=90');
    background-position: center right;
}

.lesson-image-section.chapter-2 {
    background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?w=1600&q=90');
    background-position: center right;
}

.lesson-image-section.chapter-3 {
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1600&q=90');
    background-position: center right;
}

.lesson-image-section.chapter-4 {
    background-image: url('https://images.unsplash.com/photo-1639762681485-074b7f938ba0?w=1600&q=90');
    background-position: center right;
}

.lesson-image-section.chapter-5 {
    background-image: url('https://images.unsplash.com/photo-1563089145-599997674d42?w=1600&q=90');
    background-position: center right;
}

.lesson-content-section {
    flex: 1;
    min-width: 50%;
    background: #0a1929;
    overflow-y: auto;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
}

.lesson-header {
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
}

.lesson-main-title {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.1;
    display: block;
}

.lesson-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    font-family: 'DM Sans', serif;
    opacity: 0.9;
    line-height: 1.3;
    display: block;
}

.lesson-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.lesson-tab {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px 8px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lesson-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.lesson-tab.active {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.lesson-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lesson-tab-content {
    display: none;
    flex: 1;
    padding: 0;
    margin: 0;
}

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

.lesson-story-content {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    margin-bottom: 48px;
}

.story-paragraph {
    margin-bottom: 24px;
}

.story-paragraph p {
    margin-bottom: 16px;
    text-align: justify;
}

.resource-summary {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.resource-summary p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

.resource-summary p:last-child {
    margin-bottom: 0;
}

.lesson-actions {
    margin-top: 32px;
}

.btn-start-lesson {
    padding: 16px 40px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    min-width: 200px;
}

.btn-start-lesson:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Responsive styles for lesson page */
@media (max-width: 1024px) {
    .lesson-split-layout {
        flex-direction: column;
    }
    
    .lesson-image-section {
        height: 300px;
        min-height: 300px;
        flex: none;
    }
    
    .lesson-content-section {
        flex: 1;
        padding: 40px 40px;
        min-height: calc(100vh - 300px);
    }
    
    .lesson-main-title {
        font-size: 12px;
    }
    
    .lesson-subtitle {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .lesson-content-section {
        padding: 32px 24px;
    }
    
    .lesson-main-title {
        font-size: 11px;
    }
    
    .lesson-subtitle {
        font-size: 28px;
    }
    
    .lesson-story-content {
        font-size: 16px;
    }
    
    .lesson-image-section {
        height: 250px;
        min-height: 250px;
    }
}

/* Code Editor Section */
.code-editor-section {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.code-editor-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.code-tab {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.code-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.code-tab.active {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.code-editor-container {
    position: relative;
}

.code-editor {
    display: flex;
    background: #1a1a1f;
    border-radius: 8px;
    overflow: hidden;
    min-height: 300px;
}

.code-line-numbers {
    background: #0f0f14;
    padding: 16px 8px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #666666;
    text-align: right;
    user-select: none;
    line-height: 1.6;
}

.code-textarea {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #ffffff;
    resize: none;
    outline: none;
    line-height: 1.6;
}

.code-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn-run-code,
.btn-submit-code {
    padding: 10px 20px;
    background: #00ffb2;
    color: #000000;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-run-code:hover,
.btn-submit-code:hover {
    background: #00ca8d;
}

.code-output {
    margin-top: 16px;
    background: #0f0f14;
    border-radius: 8px;
    padding: 16px;
    min-height: 100px;
}

.code-output-header {
    font-size: 12px;
    color: #999999;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.code-output-content {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #ffffff;
}

.output-line {
    margin-bottom: 8px;
}

/* Terminal Section */
.terminal-section {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.terminal-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red {
    background: #ff5f56;
}

.terminal-dot.yellow {
    background: #ffbd2e;
}

.terminal-dot.green {
    background: #27c93f;
}

.terminal-content {
    background: #0f0f14;
    border-radius: 8px;
    padding: 16px;
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    margin-bottom: 12px;
}

.terminal-line {
    margin-bottom: 8px;
    color: #ffffff;
}

.terminal-prompt {
    color: #00ffb2;
    margin-right: 8px;
}

.terminal-text {
    color: #ffffff;
}

.terminal-line.output {
    color: #999999;
}

.terminal-input-container {
    display: flex;
    align-items: center;
    background: #0f0f14;
    border-radius: 8px;
    padding: 12px;
}

.terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    outline: none;
}

/* Quiz Section */
.quiz-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
}

.quiz-question {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.quiz-option {
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quiz-option:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.quiz-option.selected {
    border-color: #00ffb2;
    background: rgba(0, 255, 178, 0.2);
}

.quiz-option.correct {
    border-color: #00ffb2;
    background: rgba(0, 255, 178, 0.3);
}

.quiz-option.incorrect {
    border-color: #ff5f56;
    background: rgba(255, 95, 86, 0.3);
}

.quiz-feedback {
    padding: 16px;
    background: rgba(0, 255, 178, 0.2);
    border-radius: 8px;
    color: #ffffff;
    margin-bottom: 16px;
}

.quiz-actions {
    display: flex;
    gap: 12px;
}

.btn-submit-quiz,
.btn-next-question {
    padding: 12px 24px;
    background: #00ffb2;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-submit-quiz:hover,
.btn-next-question:hover {
    background: #00ca8d;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.success-modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    max-width: 500px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #00ffb2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #000000;
    margin: 0 auto 24px;
}

.success-modal-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px 0;
}

.success-xp {
    margin: 24px 0;
}

.success-xp-amount {
    font-size: 48px;
    font-weight: 700;
    color: #00ffb2;
    display: block;
}

.success-xp-label {
    font-size: 16px;
    color: #999999;
}

.success-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.btn-share-x {
    flex: 1;
    padding: 12px 24px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-share-x:hover {
    background: #f0f0f0;
}

.btn-continue-lesson {
    flex: 1;
    padding: 12px 24px;
    background: #00ffb2;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-continue-lesson:hover {
    background: #00ca8d;
}

/* Lesson Resources Section */
.lesson-resources {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.resources-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.resource-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.2s ease;
}

.resource-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.resource-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.resource-content {
    flex: 1;
}

.resource-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.resource-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.resource-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.resource-source {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.resource-link {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
}

.resource-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Quiz Feedback */
.feedback-correct {
    color: #00ffb2;
    font-weight: 500;
    padding: 12px;
    background: rgba(0, 255, 178, 0.1);
    border-radius: 8px;
}

.feedback-incorrect {
    color: #ff5f56;
    font-weight: 500;
    padding: 12px;
    background: rgba(255, 95, 86, 0.1);
    border-radius: 8px;
}

/* Quiz Complete Screen */
.quiz-complete {
    text-align: center;
    padding: 40px;
}

.quiz-complete-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.quiz-complete h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px 0;
}

.quiz-score {
    margin: 24px 0;
}

.score-value {
    font-size: 48px;
    font-weight: 700;
    color: #00ffb2;
    margin-bottom: 8px;
}

.score-percentage {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
}

.quiz-complete p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 24px 0;
}

.hidden {
    display: none !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .welcome-section {
        flex-direction: column;
    }

    .progress-overview-grid,
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }

    .lesson-main-title {
        font-size: 32px;
    }

    .code-editor {
        flex-direction: column;
    }
}

/* ============================================
   LESSON STORY PAGE STYLES (SavingSatoshi Inspired)
   ============================================ */

.lesson-story-body {
    background: #000000;
    min-height: 100vh;
    overflow-x: hidden;
}

.lesson-story-container {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

.story-split-layout {
    display: flex;
    height: 100vh;
    width: 100%;
}

.story-text-section {
    flex: 1;
    min-width: 50%;
    background: #2a2a2a;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    overflow-y: hidden;
    justify-content: space-between;
}

.story-header {
    margin-bottom: 40px;
}

.story-breadcrumb {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.story-title {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

.story-content {
    flex: 1;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.story-content p {
    margin-bottom: 20px;
    text-align: justify;
    letter-spacing: 0.1px;
}

.story-content .dialogue {
    font-style: normal;
    margin-left: 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.story-actions {
    margin-top: auto;
}

.btn-continue-story {
    padding: 16px 40px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    min-width: 200px;
}

.btn-continue-story:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.story-image-section {
    flex: 1;
    min-width: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Default background image */
.story-image-section {
    background-image: url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?w=1600&q=90');
}

/* Chapter-specific background images */
.story-image-section.chapter-1 {
    background-image: url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?w=1600&q=90');
    background-position: center right;
}

.story-image-section.chapter-2 {
    background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?w=1600&q=90');
    background-position: center right;
}

.story-image-section.chapter-3 {
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1600&q=90');
    background-position: center right;
}

.story-image-section.chapter-4 {
    background-image: url('https://images.unsplash.com/photo-1639762681485-074b7f938ba0?w=1600&q=90');
    background-position: center right;
}

.story-image-section.chapter-5 {
    background-image: url('https://images.unsplash.com/photo-1563089145-599997674d42?w=1600&q=90');
    background-position: center right;
}

/* Responsive styles for story page */
@media (max-width: 1024px) {
    .story-split-layout {
        flex-direction: column;
    }
    
    .story-image-section {
        height: 300px;
        min-height: 300px;
        flex: none;
    }
    
    .story-text-section {
        flex: 1;
        padding: 40px 40px;
        min-height: calc(100vh - 300px);
    }
}

@media (max-width: 768px) {
    .story-text-section {
        padding: 32px 24px;
    }
    
    .story-title {
        font-size: 24px;
    }
    
    .story-content {
        font-size: 16px;
    }
    
    .story-image-section {
        height: 250px;
        min-height: 250px;
    }
}

/* Hamburger Menu Styles */
.hamburger-menu-btn {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.hamburger-menu-btn svg {
    width: 24px;
    height: 24px;
}

/* Lessons Sidebar */
.lessons-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #1a1a1a;
    backdrop-filter: blur(20px);
    z-index: 1002;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lessons-sidebar.active {
    right: 0;
}

.lessons-sidebar-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}

.lessons-sidebar-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.lessons-sidebar-close {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lessons-sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lessons-sidebar-close svg {
    width: 20px;
    height: 20px;
}

.lessons-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.lesson-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    margin-bottom: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
}

.lesson-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.lesson-item.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.lesson-item.active .lesson-item-title {
    color: #ffffff;
    font-weight: 600;
}

.lesson-item-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.lesson-item-content {
    flex: 1;
    min-width: 0;
}

.lesson-item-title {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.lesson-item-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Responsive styles for hamburger menu */
@media (max-width: 768px) {
    .hamburger-menu-btn {
        top: 16px;
        right: 16px;
        padding: 10px;
    }

    .lessons-sidebar {
        width: 100%;
        right: -100%;
    }

    .lessons-sidebar.active {
        right: 0;
    }

    .lessons-sidebar-header {
        padding: 20px;
    }

    .lessons-sidebar-title {
        font-size: 18px;
    }

    .lessons-list {
        padding: 12px;
    }

    .lesson-item {
        padding: 14px;
    }

    .lesson-item-title {
        font-size: 15px;
    }

    .lesson-item-meta {
        font-size: 12px;
    }
}


