* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --header-bg: #0f172a;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
}

.ad-banner-top {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    color: white;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.main-nav {
    background-color: var(--header-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo h1 {
    color: white;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.all-videos-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.all-videos-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.search-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

main {
    min-height: calc(100vh - 200px);
}

.modules-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.grid-module {
    min-height: 50vh;
    padding: 40px;
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.grid-module:nth-child(1) {
    background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
}

.grid-module:nth-child(2) {
    background: linear-gradient(135deg, #f093fb10 0%, #f5576c10 100%);
}

.grid-module:nth-child(3) {
    background: linear-gradient(135deg, #4facfe10 0%, #00f2fe10 100%);
}

.grid-module:nth-child(4) {
    background: linear-gradient(135deg, #43e97b10 0%, #38f9d710 100%);
}

.grid-module:hover {
    background-color: var(--card-bg);
}

.grid-module:nth-child(odd) {
    border-right: 1px solid var(--border-color);
}

.grid-module:nth-child(3),
.grid-module:nth-child(4) {
    border-bottom: none;
}

.module-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.see-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.see-more:hover {
    background-color: var(--primary-color);
    color: white;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    flex: 1;
}

.video-card {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
}

.card-number {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.4);
    z-index: 1;
    pointer-events: none;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.video-card:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-title {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

footer {
    background-color: var(--header-bg);
    color: white;
    padding: 48px 40px 32px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 32px;
}

.footer-column {
    text-align: left;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: white;
}

.copyright {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright p {
    color: #94a3b8;
    font-size: 13px;
    margin: 0;
}

.random-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.random-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(102, 126, 234, 0.4);
}

/* Video Player Page Styles */
.video-page-main {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.youtube-player {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.video-thumbnail-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    transition: background 0.3s ease;
}

.video-player-overlay:hover {
    background: rgba(0, 0, 0, 0.6);
}

.big-play {
    font-size: 80px;
    cursor: pointer;
    background: rgba(255, 0, 0, 0.8);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.2s, background 0.2s;
    padding-left: 8px;
}

.big-play:hover {
    transform: scale(1.1);
    background: rgba(255, 0, 0, 1);
}

.video-title-page {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.3;
}

.video-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.video-meta-item {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    white-space: nowrap;
    text-align: center;
}

.related-videos {
    margin-top: 28px;
}

.related-videos .section-header {
    margin-bottom: 28px;
}

.related-videos .section-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Search Page Styles */
.search-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.page-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-box {
    margin-bottom: 48px;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    background: var(--card-bg);
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.search-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 20px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: 14px;
    background: var(--bg-color);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.search-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.search-button:active {
    transform: translateY(0);
}

.search-results {
    margin-top: 40px;
}

.search-results h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.categories-section {
    padding: 20px 40px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-color);
}

.categories-section + .grid-module {
    border-top: 1px solid var(--border-color);
}

.categories-section .section-header {
    margin-bottom: 16px;
}

.categories-section .section-header h2 {
    font-size: 20px;
}

.categories-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.category-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow);
    min-width: 100px;
    flex-shrink: 0;
}

.category-card:hover {
    background: rgba(102, 126, 234, 0.1);
    box-shadow: var(--shadow-lg);
}

.category-thumbnail {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
}

.category-thumbnail img {
    display: none;
}

.category-overlay {
    position: relative;
    background: none;
}

.category-emoji {
    font-size: 36px;
}

.category-info {
    padding: 8px 6px;
    text-align: center;
}

.category-info h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
}

.category-info p {
    display: none;
}

.category-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 32px;
}

.category-filter {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--card-bg);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.category-filter:hover {
    border-color: var(--primary-color);
    background: rgba(102, 126, 234, 0.1);
}

.category-filter.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.load-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 20px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.load-more-btn:active {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .modules-wrapper {
        grid-template-columns: 1fr;
    }

    .grid-module {
        min-height: auto;
        border-right: none;
    }

    .grid-module:nth-child(2) {
        border-bottom: 1px solid var(--border-color);
    }

    .grid-module:nth-child(3) {
        border-bottom: 1px solid var(--border-color);
    }

    .grid-module:nth-child(4) {
        border-bottom: none;
    }

    .main-nav {
        padding: 14px 20px;
    }

    .logo h1 {
        font-size: 22px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .grid-module {
        padding: 28px 20px;
    }

    .category-filters {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    /* Header & Navigation */
    .ad-banner-top {
        padding: 6px 12px;
        font-size: 11px;
    }

    .main-nav {
        flex-direction: row;
        gap: 12px;
        padding: 10px 14px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .nav-right {
        width: auto;
        justify-content: flex-end;
        gap: 8px;
    }

    .all-videos-btn {
        display: none;
    }

    .search-btn {
        padding: 8px;
    }

    .search-btn svg {
        width: 20px;
        height: 20px;
    }

    /* Categories Section */
    .categories-section {
        padding: 14px 14px;
    }

    .categories-section .section-header {
        margin-bottom: 10px;
    }

    .categories-section .section-header h2 {
        font-size: 15px;
        margin-bottom: 0;
    }

    .categories-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 5px;
    }

    .category-card {
        min-width: auto;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .category-thumbnail {
        aspect-ratio: 1/1;
    }

    .category-emoji {
        font-size: 22px;
    }

    .category-info {
        padding: 5px 3px;
    }

    .category-info h3 {
        font-size: 9px;
        font-weight: 600;
    }

    /* Modules */
    .grid-module {
        padding: 18px 14px;
    }

    .module-content {
        padding: 0;
    }

    .section-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
    }

    .section-header h2 {
        font-size: 16px;
    }

    .see-more {
        padding: 5px 10px;
        font-size: 11px;
        white-space: nowrap;
        border-radius: 8px;
    }

    /* Video Grid & Cards */
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .video-card {
        padding: 10px;
        border-radius: 12px;
    }

    .video-thumbnail {
        aspect-ratio: 16/10;
        border-radius: 10px;
    }

    .video-thumbnail img {
        border-radius: 10px;
    }

    .card-number {
        font-size: 28px;
        top: 6px;
        left: 6px;
    }

    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .video-title {
        margin-top: 10px;
        font-size: 12px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Video Page */
    .video-page-main {
        padding: 24px 14px;
    }

    .video-container {
        border-radius: 14px;
    }

    .video-title-page {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .video-meta {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .video-meta-item {
        font-size: 13px;
        padding: 8px 12px;
    }

    .related-videos {
        margin-top: 20px;
    }

    .video-meta-item {
        font-size: 12px;
        padding: 5px 10px;
        border-radius: 8px;
    }

    .big-play {
        width: 70px;
        height: 70px;
        font-size: 50px;
    }

    /* Search Page */
    .search-page {
        padding: 24px 14px;
    }

    .page-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .search-box {
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        gap: 10px;
        margin-bottom: 28px;
        border-radius: 16px;
    }

    .search-input {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 10px;
    }

    .search-button {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        border-radius: 10px;
        font-size: 14px;
    }

    .category-filters {
        gap: 8px;
        grid-template-columns: repeat(3, 1fr);
    }

    .category-filter {
        padding: 10px 12px;
        font-size: 12px;
        border-radius: 10px;
    }

    .load-more-btn {
        margin: 30px auto 16px;
        padding: 14px 32px;
        font-size: 14px;
        border-radius: 12px;
    }

    /* Footer */
    footer {
        padding: 32px 20px 24px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 24px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-links-list li {
        margin-bottom: 10px;
    }

    .footer-links-list a {
        font-size: 13px;
    }

    .copyright p {
        font-size: 12px;
    }
}

/* Page Content Styles */
.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-section {
    background: var(--card-bg);
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 36px;
    transition: transform 0.3s ease;
}

.about-section:hover {
    transform: translateY(-4px);
}

.about-section h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-icon {
    font-size: 32px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 36px;
}

.feature-card {
    background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #667eea30;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.stat-card {
    text-align: center;
    padding: 28px 20px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 12px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.team-card {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 16px;
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Contact Form Styles */
.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    background: var(--bg-color);
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 32px;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.content-section {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.content-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: var(--text-primary);
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* No Results Message */
.no-results-message {
    color: var(--text-secondary);
    font-size: 18px;
    padding: 40px 0;
    text-align: center;
}

/* Utility Classes */
.no-decoration {
    text-decoration: none;
}

.hidden {
    display: none;
}

@media (max-width: 1024px) {
    .page-content {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .page-content {
        padding: 40px 20px;
    }

    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .about-section {
        padding: 28px 24px;
    }

    .about-section h2 {
        font-size: 24px;
    }

    .feature-card {
        padding: 28px 20px;
    }

    .feature-icon {
        font-size: 48px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .stat-number {
        font-size: 32px;
    }

    .content-section {
        padding: 24px;
    }

    .contact-form {
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .page-title {
        font-size: 32px;
    }
}
