/* Homepage Sections Styles */

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--grad-new-start), var(--grad-new-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-header {
    margin-bottom: 4rem;
    text-align: center;
}

.about-main-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-main-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.header-content {
    text-align: center;
}

.header-accent {
    display: inline-block;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    background: linear-gradient(135deg, var(--grad-new-start), var(--grad-new-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0.75rem 0;
}

.section-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 20px rgba(0, 204, 255, 0.2);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--grad-new-start), var(--grad-new-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0 8rem;
    padding: 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--grad-new-start) 0%, var(--grad-new-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.05);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.content-grid {
    display: grid;
    gap: 3rem;
}

.story-block {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.story-block:hover {
    transform: translateY(-5px);
}

.story-block h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.story-content .lead-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 204, 255, 0.15);
    position: relative;
}


.story-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.story-block:hover .story-content p {
    color: rgba(255, 255, 255, 1);
}

.story-highlight {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(var(--grad-new-start-rgb), 0.1), rgba(var(--grad-new-end-rgb), 0.1));
    border-left: 3px solid var(--grad-new-end);
    border-radius: 8px;
}

.highlight-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
    font-weight: 600;
}

.excellence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.excellence-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.excellence-item::before {
    display: none;
}

.excellence-item::after {
    display: none;
}

.excellence-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}

.excellence-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.excellence-item h4::before {
    content: '◆';
    color: var(--grad-new-start);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.excellence-item:hover h4::before {
    transform: scale(1.1);
}

.excellence-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.excellence-item:hover p {
    color: rgba(255, 255, 255, 1);
}

.vision-block {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.vision-block:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.vision-block::after {
    display: none;
}

.vision-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    background: linear-gradient(135deg, var(--grad-new-start), var(--grad-new-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    padding: 0.75rem 0;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(0, 204, 255, 0.5));
}

.vision-content {
    position: relative;
    z-index: 1;
}

.vision-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.vision-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.story-content-static {
    max-width: 100%;
    margin: 0 auto;
}

.story-content-static p {
    font-size: 1.15rem;
    line-height: 2;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    text-align: left;
    padding: 0 1rem;
    transition: opacity 0.2s ease;
}

.story-content-static p.lead-paragraph {
    font-size: 1.25rem;
    color: #f1f5f9;
    font-weight: 600;
}

.story-content-static p:hover {
    opacity: 0.95;
}

.story-content-static strong {
    color: #ffffff;
    font-weight: 700;
}

.vision-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.values-section {
    grid-column: 1 / -1;
    margin-top: 3rem;
}

.values-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--grad-new-start), var(--grad-new-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    text-align: center;
    text-shadow: 0 2px 20px rgba(0, 204, 255, 0.2);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.value-card::after {
    display: none;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.value-header {
    position: relative;
    margin-bottom: 1.5rem;
}

.value-header::before {
    content: '◆';
    display: block;
    font-size: 2rem;
    color: var(--grad-new-start);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-header::before {
    transform: scale(1.1);
}

.value-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0;
}

.value-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.9;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.value-card:hover p {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.2);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Teams Section */
.teams-section {
    padding: 6rem 0;
}

.teams-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.teams-header {
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.teams-header-content {
    text-align: left;
}

.teams-accent {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, var(--grad-new-start), var(--grad-new-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.teams-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.teams-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.teams-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--grad-new-end);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.teams-view-all:hover {
    color: var(--grad-new-start);
    gap: 0.75rem;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--grad-new-end);
}

.team-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-content {
    padding: 1.5rem;
}

.team-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--grad-new-end);
    color: white;
    margin-bottom: 0.75rem;
}

.team-category.coming-soon {
    background: rgba(255, 255, 255, 0.2);
}

.team-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.team-status {
    font-size: 0.9rem;
    color: var(--grad-new-end);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-stats {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.team-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.feature-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.team-link {
    display: inline-block;
    color: var(--grad-new-end);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.team-link:hover {
    color: var(--grad-new-start);
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.team-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.teams-cta {
    text-align: center;
}

/* Applications Section */
.applications-section {
    padding: 6rem 0 4rem;
    position: relative;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.applications-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.applications-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.applications-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.applications-header {
    margin-bottom: 4rem;
    text-align: center;
}

.applications-accent {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, var(--grad-new-start), var(--grad-new-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.applications-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.applications-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.applications-content {
    display: block;
}

.applications-card-header {
    display: none;
}

/* Positions List for Home */
.positions-list-home {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.position-item-home {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.position-item-home:last-child {
    border-bottom: none;
}

.position-item-home:hover::before {
    opacity: 1;
}

.position-info-home {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.position-meta-home {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.position-status-home {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.position-status-home.status-open {
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.25), rgba(0, 204, 255, 0.15));
    color: #00CCFF;
    border: 1px solid rgba(0, 204, 255, 0.5);
}

.position-status-home.status-closed {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.position-info-home h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0;
    letter-spacing: 0.05em;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.position-info-home p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

.position-item-home:hover .position-info-home p {
    color: rgba(255, 255, 255, 0.85);
}

.position-actions-home {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    align-items: center;
}

.view-details-btn-home {
    padding: 0.9rem 1.75rem;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-color);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.view-details-btn-home::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.view-details-btn-home:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateX(3px);
}

.view-details-btn-home:hover::after {
    transform: translateX(3px);
}

.apply-btn-home {
    padding: 0.9rem 1.75rem;
    background: #ffffff;
    color: #000000;
    border: 1.5px solid #ffffff;
    border-radius: 2px;
    font-weight: 800;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.apply-btn-home:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.applications-footer {
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 100%);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.applications-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    /* Match hero CTA button styles for visual consistency */
    background: linear-gradient(135deg, var(--grad-dark-start) 0%, var(--grad-dark-end) 50%, var(--grad-dark-end) 50%, var(--grad-dark-start) 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.1);
}

.applications-btn:hover {
    transform: translateY(-2px);
    border-color: var(--grad-new-end);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    background-position: 100% 0%;
    gap: 1rem;
}

.applications-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.applications-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 968px) {
    .position-item-home {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .position-actions-home {
        width: 100%;
        flex-direction: column;
    }
    
    .view-details-btn-home,
    .apply-btn-home {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.applications-text h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--grad-new-start), var(--grad-new-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.applications-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.application-types {
    display: grid;
    gap: 1.5rem;
}

.app-type h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.app-type p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* News Section */
.news-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.news-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.news-header {
    margin-bottom: 4rem;
    text-align: center;
}

.news-header-content {
    text-align: center;
}

.news-accent {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, var(--grad-new-start), var(--grad-new-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.news-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.news-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--grad-new-end);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.news-view-all:hover {
    color: var(--grad-new-start);
    gap: 0.75rem;
}

.news-view-all svg {
    transition: transform 0.3s ease;
}

.news-view-all:hover svg {
    transform: translateX(3px);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.news-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 450px;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--grad-new-start), var(--grad-new-end));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
    display: none;
}

.news-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, var(--grad-new-start), transparent, var(--grad-new-end));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.news-card:hover::before {
    opacity: 0;
}

.news-card:hover::after {
    opacity: 0.15;
}

.news-article {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 450px;
}

.news-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--grad-new-start), var(--grad-new-end));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
    display: none;
}

.news-article::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, var(--grad-new-start), transparent, var(--grad-new-end));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.news-article:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.news-article:hover::before {
    opacity: 0;
}

.news-article:hover::after {
    opacity: 0.15;
}

.news-category {
    display: inline-block;
    background: rgba(0, 204, 255, 0.2);
    color: #00CCFF;
    padding: 0.35rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    border: 1px solid rgba(0, 204, 255, 0.3);
    transition: all 0.3s ease;
    margin-bottom: -0.35rem;
    width: fit-content;
}

.news-card:hover .news-category,
.news-article:hover .news-category {
    background: rgba(0, 204, 255, 0.25);
}

.news-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.15), rgba(255, 0, 128, 0.15));
}

.news-image::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.news-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.news-date::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--grad-new-start), var(--grad-new-end));
    box-shadow: 0 0 8px var(--grad-new-end);
}

.news-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover h3,
.news-article:hover h3 {
    color: var(--text-color);
}

.news-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--grad-new-end);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.news-link::after {
    content: '→';
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.news-card:hover .news-link,
.news-article:hover .news-link {
    color: var(--grad-new-start);
    gap: 0.75rem;
}

.news-link:hover::after {
    transform: translateX(4px);
}

.news-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.news-cta {
    text-align: center;
}

/* Member Content Section */
.member-content-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.member-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.member-content-header {
    margin-bottom: 4rem;
}

.member-content-header-content {
    text-align: center;
}

.member-content-accent {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, var(--grad-new-start), var(--grad-new-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.member-content-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.member-content-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.member-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.content-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 450px;
}

.content-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, var(--grad-new-start), transparent, var(--grad-new-end));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.content-card:hover::after {
    opacity: 0.15;
}

.content-video {
    position: relative;
    overflow: hidden;
    background: #000;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.content-video .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.content-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.content-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.content-info .content-category {
    display: inline-block;
    padding: 0.35rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.content-meta {
    display: flex;
    gap: 1rem;
}

.member-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-details {
    flex: 1;
    min-width: 0;
}

.member-details h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.member-name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.content-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.content-stats {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.member-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.member-info h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--grad-new-start), var(--grad-new-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.member-info .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.member-benefits {
    display: grid;
    gap: 1.5rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.member-cta {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.member-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.member-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.member-login {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.member-login a {
    color: var(--grad-new-end);
    text-decoration: none;
    font-weight: 600;
}

.member-login a:hover {
    color: var(--grad-new-start);
}

/* Sponsors Section */
.sponsors-section {
    padding: 6rem 0;
    position: relative;
}

.sponsors-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem;
    background: linear-gradient(135deg, var(--grad-new-start), var(--grad-new-end));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25rem;
    position: relative;
    overflow: hidden;
}

.sponsors-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 50%),
                radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.sponsor-item img {
    max-width: 280px;
    max-height: 120px;
    width: auto;
    height: auto;
    transition: all 0.4s ease;
}

.sponsor-item:hover img {
    filter: brightness(1.2) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .sponsors-container {
        flex-direction: column;
        gap: 3rem;
        padding: 3rem 2rem;
    }
    
    .sponsor-item img {
        max-width: 220px;
        max-height: 100px;
    }
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--grad-new-start), var(--grad-new-end));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--grad-new-end), var(--grad-new-start));
}

.cta-button.outline {
    background: transparent;
    border: 2px solid var(--grad-new-end);
    color: var(--grad-new-end);
}

.cta-button.outline:hover {
    background: var(--grad-new-end);
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .applications-content,
    .member-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .teams-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-text h2,
    .applications-text h2,
    .member-info h2 {
        font-size: 2.5rem;
    }
    
    .about-text .lead,
    .applications-text .lead,
    .member-info .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .sponsors-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}