/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00FEA4;
    --bg-dark: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #222222;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-color: #333333;
    --gradient-primary: linear-gradient(135deg, #00FEA4 0%, #00D480 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --shadow-light: 0 4px 20px rgba(0, 254, 164, 0.1);
    --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.5);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --header-height: 80px;
    --rail-height: 50px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1001;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
}

.coming-soon-app {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border-radius: 25px;
    border: 1px solid var(--primary-color);
}

.coming-soon-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.store-icons {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
}

.store-icons .fab.fa-google-play {
    background: linear-gradient(45deg, #1e88e5 0%, #8bc34a 25%, #ffeb3b 50%, #ff5722 75%, #e91e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 3px rgba(30, 136, 229, 0.3));
    animation: playStoreGlow 4s ease-in-out infinite;
}

.store-icons span {
    color: var(--primary-color);
}

@keyframes playStoreGlow {
    0%, 100% {
        filter: drop-shadow(0 0 3px rgba(30, 136, 229, 0.3));
    }
    25% {
        filter: drop-shadow(0 0 6px rgba(139, 195, 74, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 6px rgba(255, 235, 59, 0.4));
    }
    75% {
        filter: drop-shadow(0 0 6px rgba(255, 87, 34, 0.4));
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Coming Soon Rail */
.coming-soon-rail {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: var(--rail-height);
    background: var(--gradient-primary);
    overflow: hidden;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.rail-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.rail-content {
    display: flex;
    animation: scroll-left 30s linear infinite;
    height: 100%;
    align-items: center;
}

.rail-text {
    display: flex;
    align-items: center;
    gap: 3rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--bg-dark);
    white-space: nowrap;
    padding-right: 3rem;
}

.rail-text i {
    font-size: 1.2rem;
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}

@keyframes categoryEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    50% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(3, 252, 227, 0.3);
    }
}

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

@keyframes rotateText {
    0%, 20% {
        opacity: 0;
        transform: translateY(100%);
    }
    25%, 75% {
        opacity: 1;
        transform: translateY(0);
    }
    80%, 100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + var(--rail-height) + 2rem);
    padding-bottom: 2rem;
    background: radial-gradient(ellipse at center, rgba(3, 252, 227, 0.05) 0%, rgba(10, 10, 10, 1) 70%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-tagline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.tagline-india {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-animated-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.static-text {
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.rotating-text {
    position: relative;
    height: 1.2em;
    overflow: hidden;
}

.rotate-item {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary-color);
    opacity: 0;
    transform: translateY(100%);
    animation: rotateText 10s infinite;
}

.rotate-item:nth-child(1) { animation-delay: 0s; }
.rotate-item:nth-child(2) { animation-delay: 2s; }
.rotate-item:nth-child(3) { animation-delay: 4s; }
.rotate-item:nth-child(4) { animation-delay: 6s; }
.rotate-item:nth-child(5) { animation-delay: 8s; }

.coming-soon-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    animation: pulse 2s infinite;
}

.coming-soon-text {
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
    z-index: 1;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.hero-description p {
    margin-bottom: 1rem;
}

.catchline {
    color: var(--primary-color);
    font-weight: 600;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-light);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.card-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 4.5s;
}

/* Categories Section */
.categories {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(26, 26, 26, 0.95) 50%, var(--bg-dark) 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(3, 252, 227, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.categories::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="categoriesGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23333" stroke-width="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23categoriesGrid)"/></svg>') center/cover;
    opacity: 0.05;
    pointer-events: none;
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.section-title:hover {
    animation: shimmer 1s ease-in-out, titleGlow 3s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Add subtitle for categories */
.categories-container .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Categories Grid Layout */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Explore Categories in Hero Section */
.explore-categories {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

.explore-categories h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.category-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 400px;
}

.category-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 0.8rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.category-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.category-icon:hover::before {
    opacity: 1;
}

.category-icon:hover {
    transform: translateY(-5px) scale(1.05);
}

.category-icon i {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
    transition: all 0.3s ease;
}

.category-icon span {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

/* Category icon colors and themes */
.category-icon[data-category="govt-jobs"] {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(238, 82, 83, 0.1));
    border: 2px solid rgba(255, 107, 107, 0.4);
}

.category-icon[data-category="govt-jobs"]:hover {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.25), rgba(238, 82, 83, 0.2));
    border-color: #ff6b6b;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.category-icon[data-category="govt-jobs"] i {
    color: #ff6b6b;
}

.category-icon[data-category="investment"] {
    background: linear-gradient(135deg, rgba(254, 202, 87, 0.15), rgba(255, 165, 2, 0.1));
    border: 2px solid rgba(254, 202, 87, 0.4);
}

.category-icon[data-category="investment"]:hover {
    background: linear-gradient(135deg, rgba(254, 202, 87, 0.25), rgba(255, 165, 2, 0.2));
    border-color: #feca57;
    box-shadow: 0 10px 25px rgba(254, 202, 87, 0.3);
}

.category-icon[data-category="investment"] i {
    color: #feca57;
}

.category-icon[data-category="business"] {
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.15), rgba(46, 204, 113, 0.1));
    border: 2px solid rgba(0, 208, 132, 0.4);
}

.category-icon[data-category="business"]:hover {
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.25), rgba(46, 204, 113, 0.2));
    border-color: #00d084;
    box-shadow: 0 10px 25px rgba(0, 208, 132, 0.3);
}

.category-icon[data-category="business"] i {
    color: #00d084;
}

.category-icon[data-category="ai-learning"] {
    background: linear-gradient(135deg, rgba(162, 155, 254, 0.15), rgba(108, 92, 231, 0.1));
    border: 2px solid rgba(162, 155, 254, 0.4);
}

.category-icon[data-category="ai-learning"]:hover {
    background: linear-gradient(135deg, rgba(162, 155, 254, 0.25), rgba(108, 92, 231, 0.2));
    border-color: #a29bfe;
    box-shadow: 0 10px 25px rgba(162, 155, 254, 0.3);
}

.category-icon[data-category="ai-learning"] i {
    color: #a29bfe;
}

.category-icon[data-category="language-learning"] {
    background: linear-gradient(135deg, rgba(116, 185, 255, 0.15), rgba(52, 152, 219, 0.1));
    border: 2px solid rgba(116, 185, 255, 0.4);
}

.category-icon[data-category="language-learning"]:hover {
    background: linear-gradient(135deg, rgba(116, 185, 255, 0.25), rgba(52, 152, 219, 0.2));
    border-color: #74b9ff;
    box-shadow: 0 10px 25px rgba(116, 185, 255, 0.3);
}

.category-icon[data-category="language-learning"] i {
    color: #74b9ff;
}

.category-icon[data-category="become-creator"] {
    background: linear-gradient(135deg, rgba(253, 121, 168, 0.15), rgba(232, 93, 156, 0.1));
    border: 2px solid rgba(253, 121, 168, 0.4);
}

.category-icon[data-category="become-creator"]:hover {
    background: linear-gradient(135deg, rgba(253, 121, 168, 0.25), rgba(232, 93, 156, 0.2));
    border-color: #fd79a8;
    box-shadow: 0 10px 25px rgba(253, 121, 168, 0.3);
}

.category-icon[data-category="become-creator"] i {
    color: #fd79a8;
}

.category-icon[data-category="digital-marketing"] {
    background: linear-gradient(135deg, rgba(225, 112, 85, 0.15), rgba(230, 126, 34, 0.1));
    border: 2px solid rgba(225, 112, 85, 0.4);
}

.category-icon[data-category="digital-marketing"]:hover {
    background: linear-gradient(135deg, rgba(225, 112, 85, 0.25), rgba(230, 126, 34, 0.2));
    border-color: #e17055;
    box-shadow: 0 10px 25px rgba(225, 112, 85, 0.3);
}

.category-icon[data-category="digital-marketing"] i {
    color: #e17055;
}

.category-icon[data-category="tech-skills"] {
    background: linear-gradient(135deg, rgba(0, 206, 201, 0.15), rgba(26, 188, 156, 0.1));
    border: 2px solid rgba(0, 206, 201, 0.4);
}

.category-icon[data-category="tech-skills"]:hover {
    background: linear-gradient(135deg, rgba(0, 206, 201, 0.25), rgba(26, 188, 156, 0.2));
    border-color: #00cec9;
    box-shadow: 0 10px 25px rgba(0, 206, 201, 0.3);
}

.category-icon[data-category="tech-skills"] i {
    color: #00cec9;
}

.category-icon:hover i {
    transform: scale(1.1);
}

/* Category Card Styles - Updated for Split Layout */
.category-card {
    position: relative;
    width: 280px;
    aspect-ratio: 1;
    background: var(--bg-card);
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--border-color);
    z-index: 3;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
    z-index: 4;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* Government Jobs - Red Theme */
.category-card[data-category="govt-jobs"] {
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.category-card[data-category="govt-jobs"]:hover {
    border-color: #ff6b6b;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

.category-card[data-category="govt-jobs"] .category-bg {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9), rgba(238, 82, 83, 0.7)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23ff6b6b" opacity="0.1"/><rect x="20" y="30" width="60" height="40" fill="%23ffffff" opacity="0.1"/></svg>');
}

.category-card[data-category="govt-jobs"] .category-content i {
    color: #ff6b6b;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.category-card[data-category="govt-jobs"] .category-content h3 {
    color: #ff6b6b;
}

/* Investment Tips - Orange Theme */
.category-card[data-category="investment"] {
    border: 2px solid rgba(254, 202, 87, 0.3);
}

.category-card[data-category="investment"]:hover {
    border-color: #feca57;
    box-shadow: 0 20px 40px rgba(254, 202, 87, 0.3);
}

.category-card[data-category="investment"] .category-bg {
    background: linear-gradient(135deg, rgba(254, 202, 87, 0.9), rgba(255, 165, 2, 0.7)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23feca57" opacity="0.1"/><path d="M20 80 L50 30 L80 50 L90 20" stroke="%23ffffff" stroke-width="2" fill="none" opacity="0.3"/></svg>');
}

.category-card[data-category="investment"] .category-content i {
    color: #feca57;
    text-shadow: 0 0 20px rgba(254, 202, 87, 0.5);
}

.category-card[data-category="investment"] .category-content h3 {
    color: #feca57;
}

/* Business Ideas - Green Theme */
.category-card[data-category="business"] {
    border: 2px solid rgba(0, 208, 132, 0.3);
}

.category-card[data-category="business"]:hover {
    border-color: #00d084;
    box-shadow: 0 20px 40px rgba(0, 208, 132, 0.3);
}

.category-card[data-category="business"] .category-bg {
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.9), rgba(46, 204, 113, 0.7)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%2300d084" opacity="0.1"/><circle cx="50" cy="50" r="25" fill="%23ffffff" opacity="0.1"/></svg>');
}

.category-card[data-category="business"] .category-content i {
    color: #00d084;
    text-shadow: 0 0 20px rgba(0, 208, 132, 0.5);
}

.category-card[data-category="business"] .category-content h3 {
    color: #00d084;
}

/* AI Learning - Violet Theme */
.category-card[data-category="ai-learning"] {
    border: 2px solid rgba(162, 155, 254, 0.3);
}

.category-card[data-category="ai-learning"]:hover {
    border-color: #a29bfe;
    box-shadow: 0 20px 40px rgba(162, 155, 254, 0.3);
}

.category-card[data-category="ai-learning"] .category-bg {
    background: linear-gradient(135deg, rgba(162, 155, 254, 0.9), rgba(108, 92, 231, 0.7)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23a29bfe" opacity="0.1"/><circle cx="30" cy="30" r="3" fill="%23ffffff" opacity="0.3"/><circle cx="70" cy="30" r="3" fill="%23ffffff" opacity="0.3"/><circle cx="50" cy="50" r="4" fill="%23ffffff" opacity="0.3"/><circle cx="30" cy="70" r="3" fill="%23ffffff" opacity="0.3"/><circle cx="70" cy="70" r="3" fill="%23ffffff" opacity="0.3"/><line x1="30" y1="30" x2="50" y2="50" stroke="%23ffffff" stroke-width="1" opacity="0.2"/><line x1="70" y1="30" x2="50" y2="50" stroke="%23ffffff" stroke-width="1" opacity="0.2"/><line x1="50" y1="50" x2="30" y2="70" stroke="%23ffffff" stroke-width="1" opacity="0.2"/><line x1="50" y1="50" x2="70" y2="70" stroke="%23ffffff" stroke-width="1" opacity="0.2"/></svg>');
}

.category-card[data-category="ai-learning"] .category-content i {
    color: #a29bfe;
    text-shadow: 0 0 20px rgba(162, 155, 254, 0.5);
}

.category-card[data-category="ai-learning"] .category-content h3 {
    color: #a29bfe;
}

/* Language Learning - Blue Theme */
.category-card[data-category="language-learning"] {
    border: 2px solid rgba(116, 185, 255, 0.3);
}

.category-card[data-category="language-learning"]:hover {
    border-color: #74b9ff;
    box-shadow: 0 20px 40px rgba(116, 185, 255, 0.3);
}

.category-card[data-category="language-learning"] .category-bg {
    background: linear-gradient(135deg, rgba(116, 185, 255, 0.9), rgba(52, 152, 219, 0.7)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%2374b9ff" opacity="0.1"/><circle cx="25" cy="25" r="15" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="10" fill="%23ffffff" opacity="0.1"/></svg>');
}

.category-card[data-category="language-learning"] .category-content i {
    color: #74b9ff;
    text-shadow: 0 0 20px rgba(116, 185, 255, 0.5);
}

.category-card[data-category="language-learning"] .category-content h3 {
    color: #74b9ff;
}

/* Become Creator - Pink Theme */
.category-card[data-category="become-creator"] {
    border: 2px solid rgba(253, 121, 168, 0.3);
}

.category-card[data-category="become-creator"]:hover {
    border-color: #fd79a8;
    box-shadow: 0 20px 40px rgba(253, 121, 168, 0.3);
}

.category-card[data-category="become-creator"] .category-bg {
    background: linear-gradient(135deg, rgba(253, 121, 168, 0.9), rgba(232, 93, 156, 0.7)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23fd79a8" opacity="0.1"/><rect x="30" y="30" width="40" height="25" rx="5" fill="%23ffffff" opacity="0.2"/><circle cx="50" cy="60" r="8" fill="%23ffffff" opacity="0.1"/></svg>');
}

.category-card[data-category="become-creator"] .category-content i {
    color: #fd79a8;
    text-shadow: 0 0 20px rgba(253, 121, 168, 0.5);
}

.category-card[data-category="become-creator"] .category-content h3 {
    color: #fd79a8;
}

/* Digital Marketing - Orange Theme */
.category-card[data-category="digital-marketing"] {
    border: 2px solid rgba(225, 112, 85, 0.3);
}

.category-card[data-category="digital-marketing"]:hover {
    border-color: #e17055;
    box-shadow: 0 20px 40px rgba(225, 112, 85, 0.3);
}

.category-card[data-category="digital-marketing"] .category-bg {
    background: linear-gradient(135deg, rgba(225, 112, 85, 0.9), rgba(230, 126, 34, 0.7)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23e17055" opacity="0.1"/><circle cx="30" cy="30" r="12" fill="%23ffffff" opacity="0.1"/><circle cx="70" cy="70" r="8" fill="%23ffffff" opacity="0.1"/><path d="M20 50 Q50 20 80 50" stroke="%23ffffff" stroke-width="2" fill="none" opacity="0.2"/></svg>');
}

.category-card[data-category="digital-marketing"] .category-content i {
    color: #e17055;
    text-shadow: 0 0 20px rgba(225, 112, 85, 0.5);
}

.category-card[data-category="digital-marketing"] .category-content h3 {
    color: #e17055;
}

/* Tech Skills - Teal Theme */
.category-card[data-category="tech-skills"] {
    border: 2px solid rgba(0, 206, 201, 0.3);
}

.category-card[data-category="tech-skills"]:hover {
    border-color: #00cec9;
    box-shadow: 0 20px 40px rgba(0, 206, 201, 0.3);
}

.category-card[data-category="tech-skills"] .category-bg {
    background: linear-gradient(135deg, rgba(0, 206, 201, 0.9), rgba(26, 188, 156, 0.7)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%2300cec9" opacity="0.1"/><rect x="20" y="35" width="60" height="30" rx="5" fill="%23ffffff" opacity="0.1"/><circle cx="25" cy="45" r="2" fill="%23ffffff" opacity="0.3"/><circle cx="35" cy="45" r="2" fill="%23ffffff" opacity="0.3"/><line x1="45" y1="40" x2="75" y2="40" stroke="%23ffffff" stroke-width="1" opacity="0.2"/><line x1="45" y1="50" x2="65" y2="50" stroke="%23ffffff" stroke-width="1" opacity="0.2"/><line x1="45" y1="60" x2="70" y2="60" stroke="%23ffffff" stroke-width="1" opacity="0.2"/></svg>');
}

.category-card[data-category="tech-skills"] .category-content i {
    color: #00cec9;
    text-shadow: 0 0 20px rgba(0, 206, 201, 0.5);
}

.category-card[data-category="tech-skills"] .category-content h3 {
    color: #00cec9;
}

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

.category-content i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-content i {
    transform: scale(1.1);
}

.category-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.category-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Page Content Styles */
.page-content {
    min-height: 100vh;
    padding: calc(var(--header-height) + 40px) 0 4rem;
    background: var(--bg-dark);
    position: relative;
    z-index: 1;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Steps Grid (How it Works) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-dark);
}

.step-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

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

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.blog-date {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.blog-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
}

/* About Page Styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-section,
.vision-section,
.team-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.mission-section ul,
.vision-section ul,
.team-section ul {
    list-style: disc;
    padding-left: 2rem;
}


.values-section {
    margin-bottom: 3rem;
}

.values-section h2 {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

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

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.about-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Coming Soon Message */
.coming-soon-message {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    margin-top: 2rem;
}

.coming-soon-message h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.coming-soon-message p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Error Page Styles */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    background: var(--bg-dark);
    position: relative;
    z-index: 1;
}

.error-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.error-content {
    text-align: center;
    background: var(--bg-card);
    padding: 4rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.error-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.error-title {
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.error-subtitle {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.error-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-section h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 8px;
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Facebook - Blue */
.social-links .facebook-link .fab.fa-facebook {
    color: #1877F2;
    font-size: 1.2rem;
}

.social-links .facebook-link:hover .fab.fa-facebook {
    color: #ffffff;
}

.social-links .facebook-link:hover {
    background: #1877F2;
    border-color: #1877F2;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

/* Twitter/X - Blue */
.social-links .twitter-link .fab.fa-twitter {
    color: #1DA1F2;
    font-size: 1.2rem;
}

.social-links .twitter-link:hover .fab.fa-twitter {
    color: #ffffff;
}

.social-links .twitter-link:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

/* LinkedIn - Blue */
.social-links .linkedin-link .fab.fa-linkedin {
    color: #0A66C2;
    font-size: 1.2rem;
}

.social-links .linkedin-link:hover .fab.fa-linkedin {
    color: #ffffff;
}

.social-links .linkedin-link:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 102, 194, 0.4);
}

/* Instagram - Gradient */
.social-links .instagram-link .fab.fa-instagram {
    background: linear-gradient(45deg, #E4405F 0%, #F56040 25%, #FFAD40 75%, #FFDC80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
}

.social-links .instagram-link:hover .fab.fa-instagram {
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links .instagram-link:hover {
    background: linear-gradient(45deg, #E4405F 0%, #F56040 25%, #FFAD40 75%, #FFDC80 100%);
    border-color: #E4405F;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(228, 64, 95, 0.4);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info p strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: block;
}

.contact-info p:first-child {
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 16px;
}

.app-downloads h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.download-btn .fab.fa-google-play {
    background: linear-gradient(45deg, #1e88e5 0%, #8bc34a 25%, #ffeb3b 50%, #ff5722 75%, #e91e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 2px rgba(30, 136, 229, 0.3));
}

.download-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.download-btn:hover .fab.fa-google-play {
    filter: drop-shadow(0 0 4px rgba(139, 195, 74, 0.6));
}

.download-btn .fab.fa-apple {
    color: #000000;
    font-size: 1.1rem;
}

.download-btn:hover .fab.fa-apple {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Mobile optimizations for Android devices */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --rail-height: 40px;
    }
    
    /* Android Chrome address bar handling */
    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for modern browsers */
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-right {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-tagline {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-animated-text {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .category-icons {
        grid-template-columns: repeat(4, 1fr);
        max-width: 320px;
        gap: 1rem;
    }
    
    .category-icon {
        padding: 1rem 0.6rem;
        /* Better touch targets for Android */
        min-height: 80px;
        min-width: 70px;
    }
    
    .category-icon i {
        font-size: 1.6rem;
    }
    
    .category-icon span {
        font-size: 0.75rem;
    }
    
    /* Improve touch interactions */
    .category-card {
        min-height: 280px;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(3, 252, 227, 0.2);
        tap-highlight-color: rgba(3, 252, 227, 0.2);
    }
    
    .category-card:active {
        transform: translateY(-5px) scale(0.98);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero, .categories {
        padding: 4rem 0;
    }
    
    .hero-container, .categories-container {
        padding: 0 1rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .steps-grid,
    .features-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .error-title {
        font-size: 4rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .rail-text {
        font-size: 0.9rem;
        gap: 2rem;
    }
    
    .rail-text i {
        font-size: 1rem;
    }
}

/* Android phone specific optimizations */
@media (max-width: 480px) {
    :root {
        --header-height: 60px;
        --rail-height: 35px;
    }
    
    /* Better spacing for small Android screens */
    .hero-tagline {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-animated-text {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-icons {
        grid-template-columns: repeat(2, 1fr);
        max-width: 200px;
        gap: 0.8rem;
    }
    
    .category-icon {
        padding: 0.8rem 0.4rem;
        min-height: 70px;
        border-radius: 12px;
    }
    
    .category-icon i {
        font-size: 1.4rem;
    }
    
    .category-icon span {
        font-size: 0.7rem;
    }
    
    /* Better mobile popup */
    .popup-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
        margin: 0.5rem;
    }
    
    .popup-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .popup-btn-primary, .popup-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .download-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .error-title {
        font-size: 3rem;
    }
    
    .error-subtitle {
        font-size: 1.5rem;
    }
    
    .rail-text {
        font-size: 0.8rem;
        gap: 1.5rem;
    }
    
    /* Android keyboard handling */
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Ensure proper scrolling on Android */
    .coming-soon-popup {
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }
}

/* High DPI Android devices */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img, .footer-logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Android Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* Already optimized for dark theme */
}

/* Landscape orientation optimizations for Android */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: calc(var(--header-height) + var(--rail-height) + 1rem);
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 2rem;
    }
    
    .category-icons {
        grid-template-columns: repeat(4, 1fr);
        max-width: 300px;
    }
}

/* Unlock All Videos Section */
.unlock-videos {
    background: var(--bg-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.unlock-videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(3, 252, 227, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(3, 252, 227, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.unlock-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.unlock-header {
    text-align: center;
    margin-bottom: 60px;
}

.unlock-small-title {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.unlock-big-title {
    color: #FFE375;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to bottom, #FFE375 0%, #D7940F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.unlock-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.unlock-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    background: var(--bg-secondary);
    border-color: rgba(3, 252, 227, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--bg-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-title {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.unlock-cta {
    text-align: center;
}

.cta-button {
    background: var(--primary-color);
    color: #000;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(3, 252, 227, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(3, 252, 227, 0.4);
    background: #00d4ff;
}

.cta-subtext {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 15px;
}

/* Responsive Design for Unlock Section */
@media (max-width: 768px) {
    .unlock-videos {
        padding: 60px 0;
    }
    
    .unlock-container {
        padding: 0 1.5rem;
    }
    
    .unlock-big-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .unlock-subtitle {
        font-size: 1.1rem;
    }
    
    .unlock-features {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .feature-icon img {
        width: 40px;
        height: 40px;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 16px 32px;
    }
}

@media (max-width: 480px) {
    .unlock-videos {
        padding: 50px 0;
    }
    
    .unlock-header {
        margin-bottom: 40px;
    }
    
    .unlock-big-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .unlock-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon img {
        width: 35px;
        height: 35px;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 14px 28px;
    }
} 