## File: styles/main.css

- Offset: 0
- Length: 20000
- Total Length: 20203

### Content:

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2d3561 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(64, 224, 255, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: #40e0ff;
    text-shadow: 0 0 10px rgba(64, 224, 255, 0.5);
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #40e0ff;
    text-shadow: 0 0 5px rgba(64, 224, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #40e0ff, #00bfff);
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: #40e0ff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2d3561 100%);
}

.electric-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(64, 224, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.electric-text {
    background: linear-gradient(45deg, #40e0ff, #00bfff, #1e90ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: electric-glow 2s ease-in-out infinite alternate;
}

@keyframes electric-glow {
    from { filter: drop-shadow(0 0 10px rgba(64, 224, 255, 0.8)); }
    to { filter: drop-shadow(0 0 20px rgba(64, 224, 255, 1)); }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #b0c4de;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(45deg, #40e0ff, #1e90ff);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(64, 224, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(64, 224, 255, 0.5);
    background: linear-gradient(45deg, #1e90ff, #40e0ff);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #40e0ff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(64, 224, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

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

.modal-header h2 {
    font-family: 'Orbitron', monospace;
    color: #40e0ff;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.modal-header p {
    color: #b0c4de;
    font-size: 1rem;
}

.question-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(64, 224, 255, 0.2);
}

.question-counter {
    text-align: right;
    font-size: 0.9rem;
    color: #40e0ff;
    margin-bottom: 1rem;
}

.question-card h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.4;
}

.answer-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.answer-option {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(64, 224, 255, 0.3);
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    text-align: left;
}

.answer-option:hover {
    background: rgba(64, 224, 255, 0.1);
    border-color: #40e0ff;
    transform: translateX(5px);
}

.answer-option.selected {
    background: rgba(64, 224, 255, 0.2);
    border-color: #40e0ff;
    box-shadow: 0 0 10px rgba(64, 224, 255, 0.3);
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #40e0ff, #1e90ff);
    border-radius: 3px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Features Grid */
.features-grid {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(64, 224, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(64, 224, 255, 0.2);
    border-color: #40e0ff;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #40e0ff, #1e90ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(64, 224, 255, 0.4);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #40e0ff;
    font-family: 'Orbitron', monospace;
}

.feature-card p {
    color: #b0c4de;
    line-height: 1.6;
}

.card-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 224, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover .card-hover-effect {
    left: 100%;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #40e0ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(64, 224, 255, 0.3);
}

.section-header p {
    font-size: 1.2rem;
    color: #b0c4de;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Learning Section */
.learn-section {
    background: rgba(255, 255, 255, 0.02);
}

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

.learning-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(64, 224, 255, 0.2);
    transition: all 0.3s ease;
}

.learning-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(64, 224, 255, 0.2);
}

.learning-card h3 {
    color: #40e0ff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.learning-card p {
    color: #b0c4de;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.learning-btn {
    background: linear-gradient(45deg, #40e0ff, #1e90ff);
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.learning-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(64, 224, 255, 0.4);
}

/* Entertainment Section */
.entertainment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.entertainment-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(64, 224, 255, 0.2);
    transition: all 0.3s ease;
}

.entertainment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(64, 224, 255, 0.2);
}

.entertainment-image {
    height: 200px;
    background: linear-gradient(45deg, #40e0ff, #1e90ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
}

.entertainment-content {
    padding: 1.5rem;
}

.entertainment-content h3 {
    color: #40e0ff;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.entertainment-content .genre {
    color: #00bfff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.entertainment-content p {
    color: #b0c4de;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.watch-btn {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
}

.watch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Courses Section */
.courses-section {
    background: rgba(255, 255, 255, 0.02);
}

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

.course-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(64, 224, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(64, 224, 255, 0.2);
    border-color: #40e0ff;
}

.course-image {
    height: 150px;
    background: linear-gradient(45deg, #40e0ff, #1e90ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
    position: relative;
}

.course-content {
    padding: 2rem;
}

.course-content h3 {
    color: #40e0ff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: 'Orbitron', monospace;
}

.course-content > p {
    color: #b0c4de;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.course-features {
    margin-bottom: 2rem;
}

.course-features span {
    display: block;
    color: #b0c4de;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.course-features i {
    color: #40e0ff;
    position: absolute;
    left: 0;
    top: 2px;
}

.course-btn {
    background: linear-gradient(45deg, #40e0ff, #1e90ff);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.course-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(64, 224, 255, 0.4);
}

.course-btn.premium {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1f3a;
    font-weight: 700;
}

.course-btn.premium:hover {
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(64, 224, 255, 0.2);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(64, 224, 255, 0.2);
}

.news-image {
    height: 150px;
    background: linear-gradient(45deg, #40e0ff, #1e90ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
}

.news-content {
    padding: 1.5rem;
}

.news-category {
    background: rgba(64, 224, 255, 0.2);
    color: #40e0ff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content h3 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.news-content p {
    color: #b0c4de;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #40e0ff;
}

.news-load-more {
    text-align: center;
}

.secondary-btn {
    background: transparent;
    color: #40e0ff;
    border: 2px solid #40e0ff;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.secondary-btn:hover {
    background: #40e0ff;
    color: #1a1f3a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(64, 224, 255, 0.3);
}

/* Community Section */
.community-section {
    background: rgba(255, 255, 255, 0.02);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(64, 224, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(64, 224, 255, 0.2);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #40e0ff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(64, 224, 255, 0.5);
}

.stat-label {
    color: #b0c4de;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.community-feature {
    text-align: center;
    padding: 2rem;
}

.community-feature i {
    font-size: 3rem;
    color: #40e0ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(64, 224, 255, 0.5);
}

.community-feature h3 {
    color: #40e0ff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: 'Orbitron', monospace;
}

.community-feature p {
    color: #b0c4de;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(64, 224, 255, 0.3);
}

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

.footer-section h4 {
    color: #40e0ff;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
}

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

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

.footer-section ul li a {
    color: #b0c4de;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #40e0ff;
}

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

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-logo span {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.3rem;
    color: #40e0ff;
}

.footer-section p {
    color: #b0c4de;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(64, 224, 255, 0.1);
    border: 1px solid rgba(64, 224, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #40e0ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #40e0ff;
    color: #1a1f3a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(64, 224, 255, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(64, 224, 255, 0.2);
    color: #b0c4de;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid .container {
        grid-template-columns: 1fr;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .community-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

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

    .community-stats {
        grid-template-columns: 1fr;
    }

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

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1f3a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #40e0ff, #1e90ff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #1e90ff, #40e0ff);
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    
```## File: styles/main.css

- Start Line: 500
- Total Lines: 1047
- Content Length: 10283
- Total File Length: 20203

### Content:

```

.entertainment-image {
    height: 200px;
    background: linear-gradient(45deg, #40e0ff, #1e90ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
}

.entertainment-content {
    padding: 1.5rem;
}

.entertainment-content h3 {
    color: #40e0ff;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.entertainment-content .genre {
    color: #00bfff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.entertainment-content p {
    color: #b0c4de;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.watch-btn {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
}

.watch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Courses Section */
.courses-section {
    background: rgba(255, 255, 255, 0.02);
}

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

.course-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(64, 224, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(64, 224, 255, 0.2);
    border-color: #40e0ff;
}

.course-image {
    height: 150px;
    background: linear-gradient(45deg, #40e0ff, #1e90ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
    position: relative;
}

.course-content {
    padding: 2rem;
}

.course-content h3 {
    color: #40e0ff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: 'Orbitron', monospace;
}

.course-content > p {
    color: #b0c4de;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.course-features {
    margin-bottom: 2rem;
}

.course-features span {
    display: block;
    color: #b0c4de;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.course-features i {
    color: #40e0ff;
    position: absolute;
    left: 0;
    top: 2px;
}

.course-btn {
    background: linear-gradient(45deg, #40e0ff, #1e90ff);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.course-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(64, 224, 255, 0.4);
}

.course-btn.premium {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1f3a;
    font-weight: 700;
}

.course-btn.premium:hover {
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(64, 224, 255, 0.2);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(64, 224, 255, 0.2);
}

.news-image {
    height: 150px;
    background: linear-gradient(45deg, #40e0ff, #1e90ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
}

.news-content {
    padding: 1.5rem;
}

.news-category {
    background: rgba(64, 224, 255, 0.2);
    color: #40e0ff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content h3 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.news-content p {
    color: #b0c4de;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #40e0ff;
}

.news-load-more {
    text-align: center;
}

.secondary-btn {
    background: transparent;
    color: #40e0ff;
    border: 2px solid #40e0ff;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.secondary-btn:hover {
    background: #40e0ff;
    color: #1a1f3a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(64, 224, 255, 0.3);
}

/* Community Section */
.community-section {
    background: rgba(255, 255, 255, 0.02);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(64, 224, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(64, 224, 255, 0.2);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #40e0ff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(64, 224, 255, 0.5);
}

.stat-label {
    color: #b0c4de;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.community-feature {
    text-align: center;
    padding: 2rem;
}

.community-feature i {
    font-size: 3rem;
    color: #40e0ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(64, 224, 255, 0.5);
}

.community-feature h3 {
    color: #40e0ff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: 'Orbitron', monospace;
}

.community-feature p {
    color: #b0c4de;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(64, 224, 255, 0.3);
}

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

.footer-section h4 {
    color: #40e0ff;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
}

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

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

.footer-section ul li a {
    color: #b0c4de;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #40e0ff;
}

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

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-logo span {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.3rem;
    color: #40e0ff;
}

.footer-section p {
    color: #b0c4de;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(64, 224, 255, 0.1);
    border: 1px solid rgba(64, 224, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #40e0ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #40e0ff;
    color: #1a1f3a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(64, 224, 255, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(64, 224, 255, 0.2);
    color: #b0c4de;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid .container {
        grid-template-columns: 1fr;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .community-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

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

    .community-stats {
        grid-template-columns: 1fr;
    }

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

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1f3a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #40e0ff, #1e90ff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #1e90ff, #40e0ff);
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(64, 224, 255, 0.3);
    border-radius: 50%;
    border-top-color: #40e0ff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
```
