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

html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

nav {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    z-index: 1001;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover::after {
    width: 100%;
}

.hamburger {
    display: none !important; /* Hidden on desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    border: 2px solid #667eea;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger:hover {
    background: rgba(102, 126, 234, 0.3);
    transform: scale(1.05);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 12px;
    font-size: 0.95rem;
    border-radius: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

nav a:hover {
    color: #ffffff;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

nav a:hover::after {
    width: 80%;
}

nav a.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.15);
}

nav a.active::after {
    width: 80%;
}

nav button {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid #667eea;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

nav button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

nav button:hover::before {
    width: 300px;
    height: 300px;
}

nav button:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

nav button:active {
    transform: translateY(0) scale(0.98);
}

.subscribe-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 10px !important;
    font-weight: bold;
    border: none !important;
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.4) !important;
    position: relative;
    animation: pulse 2s infinite;
    white-space: nowrap;
}

.subscribe-btn:hover {
    box-shadow: 0 8px 30px rgba(245, 87, 108, 0.6) !important;
    transform: translateY(-3px) scale(1.05) !important;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(245, 87, 108, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(245, 87, 108, 0.6);
    }
}

.subscribe-btn span {
    margin-left: 0;
}

/* Alert styles */
.alert {
    padding: 18px 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInUp 0.5s ease-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.alert-info {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-left: 5px solid #2196f3;
    color: #0d47a1;
}

.alert-success {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-left: 5px solid #4caf50;
    color: #1b5e20;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subscription Modal */
.subscription-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.subscription-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2d2d2d;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90%;
    animation: slideDown 0.3s ease;
    color: #f0f0f0;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #333;
}

.subscription-plan {
    background: #303030;
    border: 1px solid #3a3a3a;
    border-radius: 4px;
    padding: 20px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.subscription-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.plan-price {
    font-size: 22px;
    font-weight: bold;
    color: #e6e6e6;
    margin: 10px 0 20px;
}

.subscription-plan ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.subscription-plan li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.subscribe-now-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.subscribe-now-btn:hover {
    background-color: #2980b9;
}

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Welcome Section Styling */
.welcome-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    padding: 2.5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.welcome-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-shadow: none;
}

.welcome-title span {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* ===== HERO BANNER SECTION ===== */
.hero-banner {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.hero-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    z-index: 1;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: white;
    text-align: center;
}

.hero-logo {
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
}

.hero-logo-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin: 0 0 1rem 0;
    letter-spacing: 3px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-slogan {
    font-size: 1.6rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 2.5rem 0;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.25rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.stat-text {
    text-align: left;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.container h1 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 0.6s ease-out;
}

.container hr {
    border: none;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, transparent);
    margin: 1.5rem 0;
    border-radius: 2px;
}

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

/* Card styles */
.card {
    background: linear-gradient(145deg, #1e293b, #334155);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.card h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card p {
    color: #cccccc;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Badge styles */
.badge, .badge-outline {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.badge-outline {
    border: 2px solid #667eea;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.badge-outline:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: scale(1.05);
}

/* Progress bar styles */
.progress {
    background-color: rgba(51, 51, 51, 0.3);
    border-radius: 10px;
    height: 8px;
    margin: 15px 0;
    overflow: hidden;
    position: relative;
}

.progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-bar {
    background: linear-gradient(90deg, #667eea, #764ba2);
    height: 100%;
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 1.5s infinite;
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

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

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

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

.btn:active {
    transform: translateY(-1px) scale(1.02);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #4CAF50;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 100%;
    right: 0;
    background: #2d2d2d;  /* Dark dropdown background */
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    z-index: 1000;
    transform-origin: top right;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Update text colors for better contrast */
h1, h2, h3 {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: #e8e8e8;
    font-weight: 500;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    nav ul {
        gap: 1rem;
    }
    
    nav a {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    nav button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .welcome-title {
        font-size: 2rem;
    }

    .welcome-subtitle {
        font-size: 1rem;
    }

    /* Hero Banner Mobile */
    .hero-banner {
        height: 160px;
        min-height: 160px;
    }

    .hero-banner-image {
        object-fit: cover;
        object-position: center;
    }

    .hero-banner-content {
        padding: 0.6rem;
    }

    .hero-logo-img {
        width: 35px;
        height: 35px;
        margin-bottom: 0.2rem;
    }

    .hero-title {
        font-size: 0.95rem;
        letter-spacing: 0.2px;
        padding: 0;
        margin-bottom: 0.2rem;
        line-height: 1;
    }

    .hero-slogan {
        font-size: 0.55rem;
        margin-bottom: 0.3rem;
        padding: 0;
        line-height: 1.1;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.25rem;
        padding: 0;
    }

    .stat-item {
        padding: 0.3rem;
        flex-direction: column;
        text-align: center;
    }

    .stat-icon {
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 0.65rem;
    }

    .stat-label {
        font-size: 0.48rem;
    }

    .stat-text {
        text-align: center;
    }

    .hamburger {
        display: flex !important; /* Show on mobile only */
        background: linear-gradient(135deg, #667eea, #764ba2);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    }
    
    .hamburger:active {
        transform: scale(0.95);
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }

    nav ul.active {
        right: 0;
    }

    /* Custom Scrollbar for Mobile Navigation - More Visible */
    nav ul::-webkit-scrollbar {
        width: 10px;
    }

    nav ul::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    nav ul::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 10px;
        border: 2px solid rgba(255, 255, 255, 0.1);
    }

    nav ul::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #764ba2, #667eea);
    }

    /* Firefox Scrollbar */
    nav ul {
        scrollbar-width: thin;
        scrollbar-color: #667eea rgba(255, 255, 255, 0.1);
    }

    nav ul li {
        width: 100%;
        margin: 8px 0;
    }

    nav a {
        display: block;
        width: 100%;
        padding: 14px 20px;
        border-radius: 10px;
        font-size: 1rem;
    }

    nav button {
        width: 100%;
        margin: 8px 0;
        padding: 14px 20px;
    }

    .subscribe-btn {
        margin-top: 20px !important;
    }

    /* Overlay when menu is open */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 998;
        backdrop-filter: blur(5px);
        animation: fadeIn 0.3s ease;
    }

    .menu-overlay.active {
        display: block;
    }
    
    .container {
        padding: 1.5rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Responsive button sizing for mobile */
    .btn {
        font-size: 12px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 100px;
        min-height: 100px;
        border-radius: 12px;
    }

    .hero-banner-image {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }

    .hero-banner-content {
        padding: 0.4rem;
    }

    .hero-logo-img {
        width: 22px;
        height: 22px;
        margin-bottom: 0.1rem;
    }

    .hero-title {
        font-size: 0.6rem;
        padding: 0;
        margin-bottom: 0.1rem;
        line-height: 0.9;
        letter-spacing: 0.1px;
    }

    .hero-slogan {
        font-size: 0.38rem;
        padding: 0;
        margin-bottom: 0.2rem;
        line-height: 1;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.15rem;
        padding: 0;
    }

    .stat-item {
        padding: 0.2rem;
    }

    .stat-icon {
        font-size: 0.55rem;
    }

    .stat-number {
        font-size: 0.45rem;
    }

    .stat-label {
        font-size: 0.35rem;
    }

    .container {
        padding: 1rem;
    }

    .welcome-title {
        font-size: 1.6rem;
    }

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

    /* Even smaller buttons for very small screens */
    .btn {
        font-size: 11px;
        padding: 8px 16px;
    }
}

.subscription-plan ul {
    list-style: none;
    margin: 1rem 0;
}

.subscription-plan ul li {
    margin: 0.5rem 0;
    color: #cccccc;
}

.subscription-plan ul li:before {
    content: "✓";
    color: #4CAF50;
    margin-right: 0.5rem;
}

/* Video preview styles */
.video-preview {
    position: relative;
    cursor: pointer;
    background: #2d2d2d;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.play-button {
    position: absolute;
    font-size: 48px;
    color: white;
    background: rgba(76, 175, 80, 0.8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-preview:hover .play-button {
    transform: scale(1.1);
    background: rgba(76, 175, 80, 1);
}

/* ===== LEARN TO CODE SECTION WITH DISCLAIMER ===== */
.learn-to-code-section {
    margin: 2.5rem 0;
    padding: 0;
}

.coding-disclaimer-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(102, 126, 234, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.coding-disclaimer-card:hover {
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.4);
}

.coding-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

.coding-icon {
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.coding-header h2 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.coding-content {
    padding: 2.5rem;
    color: #1f2937;
}

.coding-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 2rem;
    font-weight: 500;
}

.coding-redirect-notice {
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    border-left: 4px solid #0ea5e9;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.notice-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.coding-redirect-notice p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #0c4a6e;
    font-weight: 500;
}

.coding-disclaimer {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.coding-disclaimer h3 {
    color: #92400e;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coding-disclaimer p {
    color: #78350f;
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.coding-disclaimer p:last-child {
    margin-bottom: 0;
}

.coding-disclaimer strong {
    color: #92400e;
    font-weight: 700;
}

.disclaimer-final {
    font-weight: 600;
    color: #92400e;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(245, 158, 11, 0.3);
}

.coding-button-container {
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    border-top: 2px solid rgba(102, 126, 234, 0.1);
    display: flex;
    justify-content: center;
}

.learn-to-code-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 3rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 153, 255, 0.4);
    font-family: 'Inter', sans-serif;
}

.learn-to-code-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.learn-to-code-btn:hover::before {
    left: 100%;
}

.learn-to-code-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 153, 255, 0.6);
    background: linear-gradient(135deg, #0099ff 0%, #0066cc 100%);
}

.learn-to-code-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.learn-to-code-btn .btn-icon {
    font-size: 1.8rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.learn-to-code-btn .btn-text {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.learn-to-code-btn .btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.learn-to-code-btn:hover .btn-arrow {
    transform: translateX(8px);
}

/* ===== DISCLAIMER MODAL ===== */
.disclaimer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
    justify-content: center;
    align-items: center;
}

.disclaimer-modal.active {
    display: flex;
}

.disclaimer-content {
    background: linear-gradient(145deg, #1e293b, #334155);
    border-radius: 24px;
    max-width: 550px;
    width: 90%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(102, 126, 234, 0.3);
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.disclaimer-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-header h2 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.close-disclaimer-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-disclaimer-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.disclaimer-body {
    padding: 2rem;
    color: #e8e8e8;
}

.disclaimer-body p {
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.disclaimer-body strong {
    color: #667eea;
    font-weight: 700;
}

.external-link-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(102, 126, 234, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    margin: 1.5rem 0;
}

.link-icon {
    font-size: 1.8rem;
}

.link-url {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00d4ff;
    font-family: 'Courier New', monospace;
}

.disclaimer-note {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-style: italic;
    margin-top: 1.5rem;
}

.disclaimer-footer {
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.disclaimer-btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.disclaimer-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.disclaimer-btn-proceed {
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.4);
}

.disclaimer-btn-proceed:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 153, 255, 0.6);
}

.disclaimer-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .learn-to-code-section {
        margin: 1.5rem 0;
    }
    
    .coding-header {
        padding: 1.5rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .coding-icon {
        font-size: 2.5rem;
    }
    
    .coding-header h2 {
        font-size: 1.5rem;
    }
    
    .coding-content {
        padding: 1.5rem;
    }
    
    .coding-intro {
        font-size: 1rem;
    }
    
    .coding-redirect-notice {
        padding: 1.2rem;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .coding-redirect-notice p {
        font-size: 0.95rem;
    }
    
    .coding-disclaimer {
        padding: 1.5rem;
    }
    
    .coding-disclaimer h3 {
        font-size: 1.1rem;
    }
    
    .coding-disclaimer p {
        font-size: 0.9rem;
    }
    
    .coding-button-container {
        padding: 1.5rem;
    }
    
    .learn-to-code-btn {
        padding: 1.1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
    
    .learn-to-code-btn .btn-icon {
        font-size: 1.5rem;
    }
    
    .learn-to-code-btn .btn-text {
        font-size: 1.1rem;
    }
    
    .disclaimer-content {
        width: 95%;
        margin: 1rem;
    }
    
    .disclaimer-header h2 {
        font-size: 1.2rem;
    }
    
    .disclaimer-body {
        padding: 1.5rem;
    }
    
    .disclaimer-footer {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .disclaimer-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .coding-header {
        padding: 1.2rem 1rem;
    }
    
    .coding-icon {
        font-size: 2rem;
    }
    
    .coding-header h2 {
        font-size: 1.3rem;
    }
    
    .coding-content {
        padding: 1.2rem;
    }
    
    .coding-intro {
        font-size: 0.95rem;
    }
    
    .coding-redirect-notice {
        padding: 1rem;
    }
    
    .notice-icon {
        font-size: 1.5rem;
    }
    
    .coding-redirect-notice p {
        font-size: 0.9rem;
    }
    
    .coding-disclaimer {
        padding: 1.2rem;
    }
    
    .coding-disclaimer h3 {
        font-size: 1rem;
    }
    
    .coding-disclaimer p {
        font-size: 0.85rem;
    }
    
    .coding-button-container {
        padding: 1.2rem;
    }
    
    .learn-to-code-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        gap: 0.8rem;
    }
    
    .learn-to-code-btn .btn-icon {
        font-size: 1.3rem;
    }
    
    .learn-to-code-btn .btn-text {
        font-size: 1rem;
    }
    
    .learn-to-code-btn .btn-arrow {
        font-size: 1.2rem;
    }
}