* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    padding-top: 0; /* Removed - handled by spa-page padding */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    scroll-behavior: smooth;
}

/* Screen Reader Only - SEO and Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

body.login-page-active {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* SPA Pages */
#mainContent {
    position: relative;
    width: 100%;
    margin-top: 70px; /* Space for fixed navbar */
    top: 0;
    left: 0;
    z-index: 1;
}

.spa-page {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    min-height: calc(100vh - 70px);
    margin-top: -70px; /* Offset navbar height to start at top */
    padding-top: 70px; /* Content starts below navbar */
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.spa-page.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    margin-top: -70px;
    padding-top: 70px;
}

.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px 30px;
    position: relative;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0 15px;
}

.page-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.page-subtitle {
    font-size: 18px;
    color: #0099ff;
    font-weight: 500;
}

.page-content {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Page Styles */
.about-hero-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
}

.about-hero-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.about-hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.about-hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px;
}

.about-values-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.value-nav-item {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-nav-item:hover {
    color: #ffffff;
}

.value-nav-item.active {
    color: #ffffff;
}

.value-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #c8102e;
}

.about-content-section {
    background-color: #0a0a0a;
    padding: 60px 0;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-value-block {
    padding: 35px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-value-block:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.value-block-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.value-block-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.about-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #333;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-placeholder i {
    font-size: 80px;
    color: #0099ff;
    margin-bottom: 20px;
    opacity: 0.5;
}

.about-placeholder p {
    color: #666;
    font-size: 16px;
}

/* Careers Page Styles */
.careers-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
}

.careers-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.careers-hero-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(1px);
}

.careers-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.careers-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
}

.careers-hero-title {
    font-size: 96px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-transform: uppercase;
}

.careers-hero-btn {
    background-color: #c8102e;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.careers-hero-btn:hover {
    background-color: #a00d26;
}

.careers-mission-section {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
}

.careers-mission-text {
    font-size: 22px;
    line-height: 1.8;
    color: #1a1a1a;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.2px;
    text-align: center;
}

.careers-content-section {
    background-color: #0a0a0a;
    padding: 80px 0;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.career-card-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.career-card-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.career-card-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.career-card-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.career-card-image:hover .career-card-placeholder {
    transform: scale(1.1);
}

.career-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 2;
}

.career-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 3;
    color: #ffffff;
}

.career-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.career-card-link {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-block;
}

.career-card-link:hover {
    color: #0099ff;
}

.career-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.career-card:hover {
    transform: translateY(-8px);
    border-color: #0099ff;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.career-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #0099ff 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
}

.career-card h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
}

.career-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}


/* News Page Styles */
.news-filter-header {
    background-color: #2a2a2a;
    padding: 16px 0;
    margin-top: -70px;
    padding-top: 86px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-filter-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
}

.news-filter-dropdown:hover {
    color: #0099ff;
}

.news-filter-dropdown i {
    font-size: 12px;
    transition: transform 0.3s;
}

.news-filter-dropdown.active i {
    transform: rotate(180deg);
}

.news-filter-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 1001;
    overflow: hidden;
}

.news-filter-dropdown.active .news-filter-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.news-filter-option {
    padding: 12px 20px;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14px;
}

.news-filter-option:hover {
    background-color: #2a2a2a;
}

.news-filter-option.active {
    background-color: #0099ff;
    color: #000000;
    font-weight: 600;
}

.news-filter-option:first-child {
    border-radius: 8px 8px 0 0;
}

.news-filter-option:last-child {
    border-radius: 0 0 8px 8px;
}

.news-page-content {
    background-color: #f5f5f5;
    padding: 60px 0;
    min-height: calc(100vh - 156px);
}

.news-layout-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-featured {
    margin-bottom: 60px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-featured-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.news-featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-featured-content {
    display: flex;
    padding: 40px;
    gap: 40px;
}

.news-date-vertical {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    min-width: 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.news-date-text {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
    letter-spacing: 1px;
}

.news-content-main {
    flex: 1;
}

.news-label {
    display: inline-block;
    background-color: #c8102e;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-featured-title {
    font-size: 36px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.2;
}

.news-featured-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
}

.news-secondary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.news-secondary-item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-secondary-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.news-secondary-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.news-secondary-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-secondary-content {
    display: flex;
    padding: 30px;
    gap: 30px;
}

.news-secondary-date {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    min-width: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.news-secondary-date-text {
    font-size: 13px;
    color: #666666;
    font-weight: 500;
    letter-spacing: 1px;
}

.news-secondary-main {
    flex: 1;
}

.news-secondary-label {
    display: inline-block;
    background-color: #c8102e;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-secondary-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-secondary-description {
    font-size: 15px;
    line-height: 1.5;
    color: #333333;
}

/* News Detail Page Styles */
.news-detail-content {
    background-color: #f5f5f5;
    padding: 60px 0;
    min-height: calc(100vh - 156px);
}

.news-detail-layout {
    display: grid;
    grid-template-columns: 900px 1fr;
    gap: 60px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    justify-content: center;
}

.news-detail-main {
    background: #ffffff;
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 900px;
    max-width: 100%;
    box-sizing: border-box;
}

.news-detail-header {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.news-detail-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 40px;
}

.social-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-share-btn:hover {
    background-color: #0099ff;
    color: #ffffff;
    transform: translateY(-2px);
}

.news-detail-header-content {
    flex: 1;
}

.news-detail-title {
    font-size: 42px;
    font-weight: 900;
    color: #000000;
    margin: 16px 0 12px;
    line-height: 1.2;
}

.news-detail-date {
    font-size: 16px;
    color: #666666;
    font-weight: 500;
}

.news-detail-featured-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.news-detail-featured-image img,
.news-detail-featured-image iframe {
    width: 100%;
    display: block;
}

.news-detail-featured-image img {
    height: auto;
    object-fit: cover;
}

.news-detail-featured-image iframe {
    height: 500px;
    border: none;
}

.news-detail-body {
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
}

.news-detail-body p {
    margin-bottom: 24px;
}

.news-detail-body h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin: 32px 0 16px;
}

.news-detail-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 28px 0 14px;
}

.news-detail-body ul,
.news-detail-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.news-detail-body li {
    margin-bottom: 12px;
}

.news-detail-body a {
    color: #0099ff;
    text-decoration: none;
}

.news-detail-body a:hover {
    text-decoration: underline;
}

.news-detail-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

.news-detail-body figure {
    margin: 30px 0;
    text-align: center;
}

.news-detail-body figure img {
    margin: 0 auto;
}

.news-detail-body figure figcaption {
    margin-top: 10px;
    font-size: 14px;
    color: #666666;
    font-style: italic;
}

.news-detail-body iframe {
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 400px;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
}

.news-detail-body video {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
}

/* News Sidebar */
.news-detail-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.news-sidebar-title {
    font-size: 32px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.2;
}

.news-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-sidebar-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.news-sidebar-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-sidebar-thumbnail {
    width: 100px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.news-sidebar-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-sidebar-content {
    flex: 1;
    min-width: 0;
}

.news-sidebar-item-label {
    display: inline-block;
    background-color: #c8102e;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-sidebar-item-date {
    font-size: 12px;
    color: #666666;
    margin-bottom: 6px;
}

.news-sidebar-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .about-hero-title {
        font-size: 48px;
    }
    
    .about-values-grid {
        gap: 30px;
    }
    
    .careers-hero-title {
        font-size: 64px;
    }
    
    .careers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-secondary-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .news-featured-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .news-date-vertical {
        writing-mode: horizontal-tb;
        min-width: auto;
    }
    
    .news-secondary-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .news-secondary-date {
        writing-mode: horizontal-tb;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .page-container {
        padding: 20px 15px;
    }
    
    .page-header {
        margin-bottom: 30px;
        padding: 20px 0 12px;
    }
    
    .about-hero-section {
        min-height: 60vh;
    }
    
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-hero-description {
        font-size: 16px;
    }
    
    .about-values-nav {
        gap: 20px;
        font-size: 12px;
    }
    
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-value-block {
        padding: 30px;
    }
    
    .value-block-title {
        font-size: 20px;
    }
    
    .value-block-text {
        font-size: 14px;
    }
    
    .careers-hero-section {
        min-height: 60vh;
    }
    
    .careers-hero-title {
        font-size: 48px;
    }
    
    .careers-hero-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .careers-mission-section {
        padding: 40px 0;
    }
    
    .careers-mission-text {
        font-size: 18px;
        font-weight: 700;
    }
    
    .careers-content-section {
        padding: 60px 0;
    }
    
    .careers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .career-card-content {
        padding: 20px;
    }
    
    .career-card-title {
        font-size: 18px;
    }
    
    .career-card-link {
        font-size: 13px;
    }
}

/* Navigation Bar */
.navbar {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-left .linedef-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
}

.mobile-menu-btn:hover {
    color: #0099ff;
}

.nav-center {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-link {
    position: relative;
}

.nav-link:hover {
    color: #0099ff;
}

.nav-link.active {
    color: #0099ff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #0099ff;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icon {
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-icon:hover {
    color: #0099ff;
}

.language-selector {
    position: relative;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 1001;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14px;
}

.language-option:hover {
    background-color: #2a2a2a;
}

.language-option:first-child {
    border-radius: 8px 8px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 8px 8px;
}

.language-option.active {
    background-color: #0099ff;
    color: #000000;
}

.language-option .flag {
    font-size: 20px;
}

.search-container {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 8px 12px;
    gap: 8px;
}

.search-container i {
    color: #ffffff;
}

.search-input {
    background: transparent;
    border: none;
    color: #ffffff;
    outline: none;
    width: 120px;
    font-size: 14px;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Search Page Styles */
.search-page {
    margin-top: -70px;
    padding-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
}

.search-page-top {
    background: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(40, 40, 40, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 30, 30, 0.6) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(25, 25, 25, 0.4) 0%, transparent 60%);
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.search-results-banner {
    margin-bottom: 30px;
}

.search-results-count {
    display: inline-block;
    background-color: #c8102e;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-query-display {
    margin-top: 20px;
}

.search-query-text {
    font-size: 120px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -4px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.search-page-bottom {
    background-color: #f5f5f5;
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-page-message {
    margin-bottom: 40px;
    text-align: center;
}

.search-message-text {
    font-size: 18px;
    color: #333333;
    font-style: italic;
}

.search-page-searchbar {
    width: 100%;
    max-width: 600px;
    margin-bottom: 40px;
}

.search-page-input-container {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.search-page-input-container:focus-within {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.search-page-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333333;
    background: transparent;
    padding: 0 12px;
}

.search-page-input::placeholder {
    color: #999999;
}

.search-page-submit {
    background: transparent;
    border: none;
    color: #666666;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-page-submit:hover {
    color: #0099ff;
}

.search-results-container {
    width: 100%;
    max-width: 1200px;
    margin-top: 40px;
}

.search-result-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-result-label {
    display: inline-block;
    background-color: #c8102e;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.search-result-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.search-result-content {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.search-result-date {
    font-size: 14px;
    color: #999999;
}

.user-menu-container {
    position: relative;
}

.login-btn {
    background-color: #c8102e;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-btn:hover {
    background-color: #a00d26;
}

.login-btn::after {
    content: '';
    display: none;
}

.user-menu-container:has(.user-dropdown.active) .login-btn::after {
    content: '▼';
    display: inline-block;
    font-size: 10px;
    margin-left: 4px;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 1001;
    overflow: hidden;
    display: none;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    padding: 16px 20px;
    background-color: rgba(0, 153, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.user-name {
    color: #0099ff;
    font-weight: 600;
    font-size: 14px;
    display: block;
}

.user-points {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.15) 0%, rgba(0, 102, 204, 0.1) 100%);
    border-radius: 8px;
    border: 1px solid rgba(0, 153, 255, 0.3);
}

.user-points i {
    color: #0099ff;
    font-size: 16px;
}

.points-amount {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #0099ff 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.points-label {
    font-size: 12px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: auto;
}

.user-dropdown-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14px;
}

.user-dropdown-item:hover {
    background-color: #2a2a2a;
}

.user-dropdown-item i {
    width: 18px;
    text-align: center;
    color: #0099ff;
}

.user-dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

/* Hero Banner */
.hero-banner {
    margin-top: -70px; /* Offset navbar to start at top */
    padding-top: 70px; /* Content below navbar */
    position: relative;
}

.hero-banner .carousel-container {
    height: 700px;
    overflow: hidden;
    position: relative;
}

.carousel-slide {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.carousel-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    max-width: 1400px;
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    position: relative;
    z-index: 2;
}

.banner-text {
    flex: 1;
    z-index: 3;
    max-width: 650px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.2) 0%, rgba(0, 102, 204, 0.2) 100%);
    border: 1px solid rgba(0, 153, 255, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.banner-title {
    font-size: 72px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.banner-title-main {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
}

.banner-title-accent {
    background: linear-gradient(135deg, #0099ff 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.banner-title-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0099ff 0%, #00ccff 100%);
    border-radius: 2px;
    opacity: 0.6;
}

.banner-subtitle {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.banner-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.banner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.banner-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.banner-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 153, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 153, 255, 0.2);
}

.banner-feature-item i {
    color: #00ccff;
    font-size: 16px;
}

.play-btn {
    background: linear-gradient(135deg, #0099ff 0%, #0066cc 100%);
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3),
                0 2px 8px rgba(0, 153, 255, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    min-width: 180px;
}

.play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.play-btn:hover::before {
    left: 100%;
}

.play-btn:hover {
    background: linear-gradient(135deg, #00aaff 0%, #0077dd 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.4),
                0 4px 12px rgba(0, 153, 255, 0.3);
}

.play-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 153, 255, 0.3);
}

.play-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.play-btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

.play-btn span {
    position: relative;
    z-index: 1;
}

/* Check-in Button States */
.play-btn.available {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4),
                0 2px 8px rgba(76, 175, 80, 0.3);
    animation: pulseAvailable 2s ease-in-out infinite;
}

@keyframes pulseAvailable {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4),
                    0 2px 8px rgba(76, 175, 80, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6),
                    0 4px 12px rgba(76, 175, 80, 0.5);
    }
}

.play-btn.available:hover {
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5),
                0 4px 12px rgba(76, 175, 80, 0.4);
}

.play-btn.claimed {
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: default;
}

.play-btn.claimed:hover {
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.15);
}

.play-btn.claimed i {
    color: #4caf50;
}

/* Check-in Claim Button States */
.checkin-claim-btn.available {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.checkin-claim-btn.available:hover:not(:disabled) {
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.checkin-claim-btn.claimed {
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: not-allowed;
}

.checkin-claim-btn.claimed:hover:not(:disabled) {
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}


.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #c8102e;
}

/* News Section */
.news-section {
    background-color: #0a0a0a;
    padding: 60px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
}

.view-all-btn {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #333;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.view-all-btn:hover {
    background-color: #1a1a1a;
}

.news-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    overflow: visible;
    position: relative;
}

.main-news {
    display: flex;
    flex-direction: column;
}

.news-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
}

.main-news-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #87ceeb 0%, #4a90e2 50%, #357abd 100%);
    position: relative;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 0, 0.2) 0%, transparent 50%);
}

.news-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 50%, rgba(0, 0, 0, 0.7) 100%);
    padding: 40px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.overlay-content {
    position: relative;
}

.overlay-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(200, 155, 60, 0.1) 10px,
        rgba(200, 155, 60, 0.1) 20px
    );
    z-index: -1;
}

.overlay-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0099ff;
    font-weight: 700;
    line-height: 1.3;
}

.overlay-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 5px 0;
    font-weight: 500;
}

.valorant-logo {
    width: 50px;
    height: 50px;
    background: #c8102e;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(200, 16, 46, 0.5);
}

.news-title {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.news-category {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 8px;
    position: relative;
    z-index: 1;
}

.news-list::-webkit-scrollbar {
    width: 6px;
}

.news-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.news-list::-webkit-scrollbar-thumb {
    background: rgba(200, 155, 60, 0.5);
    border-radius: 3px;
}

.news-list::-webkit-scrollbar-thumb:hover {
    background: rgba(200, 155, 60, 0.7);
}

.news-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: visible;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    height: fit-content;
}

.news-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-color: rgba(200, 155, 60, 0.5);
    background: rgba(255, 255, 255, 0.05);
    z-index: 10;
}

.news-thumbnail {
    width: 100%;
    height: 90px;
    border-radius: 0;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.news-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.news-item.has-video .news-thumbnail::before {
    content: '\f04b';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: rgba(200, 155, 60, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #000000;
    z-index: 2;
    transition: all 0.3s;
    opacity: 0;
}

.news-item.has-video:hover .news-thumbnail::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.news-item-content {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.news-item-title {
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 6px;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-loading,
.news-error {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #999999;
    font-size: 14px;
}

.news-error {
    color: #ff4444;
}

.thumbnail-1 {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.thumbnail-2 {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.thumbnail-3 {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
}

.thumbnail-4 {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
}

.news-item-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 10px;
}

.news-item-description {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* News Modal */
.news-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.news-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.news-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.news-modal-content {
    position: relative;
    background: #1a1a1a;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 4001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 4002;
}

.news-modal-close:hover {
    background-color: rgba(200, 155, 60, 0.8);
    transform: rotate(90deg);
}

.news-modal-body {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.news-modal-iframe-container {
    width: 100%;
    height: 500px;
    position: relative;
    background: #000000;
}

.news-modal-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.news-modal-info {
    padding: 24px;
    background: #1a1a1a;
}

.news-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-modal-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 16px;
}

.news-modal-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(200, 155, 60, 0.2);
    border: 1px solid rgba(200, 155, 60, 0.4);
    border-radius: 6px;
    color: #0099ff;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .news-list {
        grid-template-columns: 1fr;
        gap: 10px;
        max-height: 400px;
    }
    
    .news-thumbnail {
        height: 80px;
    }
    
    .news-item-content {
        padding: 8px;
    }
    
    .news-item-title {
        font-size: 12px;
    }
    
    .news-item-description {
        font-size: 10px;
    }
    
    .news-item-meta {
        font-size: 9px;
        padding-top: 4px;
    }
    
    .news-featured-image-wrapper {
        height: 300px;
    }
    
    .news-featured-content {
        padding: 30px 20px;
    }
    
    .news-featured-title {
        font-size: 28px;
    }
    
    .news-featured-description {
        font-size: 14px;
    }
    
    .news-secondary-image-wrapper {
        height: 200px;
    }
    
    .news-secondary-content {
        padding: 24px 20px;
    }
    
    .news-secondary-title {
        font-size: 20px;
    }
    
    .news-secondary-description {
        font-size: 14px;
    }
    
    .search-query-text {
        font-size: 80px;
    }
    
    .search-page-top {
        min-height: 40vh;
    }
    
    .search-page-bottom {
        padding: 40px 20px;
    }
    
    .search-message-text {
        font-size: 16px;
    }
    
    .search-page-input-container {
        padding: 10px 16px;
    }
    
    .search-result-title {
        font-size: 20px;
    }
    
    .search-result-content {
        font-size: 14px;
    }
    
    .news-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .news-detail-main {
        width: 100%;
        max-width: 100%;
        padding: 30px 20px;
        box-sizing: border-box;
    }
    
    .news-detail-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .news-detail-social {
        flex-direction: row;
    }
    
    .news-detail-title {
        font-size: 32px;
    }
    
    .news-detail-featured-image iframe {
        height: 300px;
    }
    
    .news-detail-body {
        font-size: 16px;
    }
    
    .news-detail-body img {
        margin: 20px auto;
        border-radius: 6px;
    }
    
    .news-detail-body figure {
        margin: 20px 0;
    }
    
    .news-detail-body iframe {
        min-height: 300px;
        margin: 20px auto;
    }
    
    .news-detail-sidebar {
        position: static;
    }
    
    .news-sidebar-title {
        font-size: 28px;
    }
    
    .news-modal-content {
        max-width: 95%;
        border-radius: 16px;
    }
    
    .news-modal-iframe-container {
        height: 300px;
    }
    
    .news-modal-title {
        font-size: 20px;
    }
}

/* Projects Section */
.projects-section {
    background-color: #0a0a0a;
    padding: 60px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.projects-section .section-header {
    margin-bottom: 30px;
}

.projects-container {
    position: relative;
    overflow: hidden;
}

.projects-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
}

.projects-carousel::-webkit-scrollbar {
    display: none;
}

.project-card {
    flex: 0 0 280px;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    scroll-snap-align: start;
    position: relative;
    height: 400px;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.project-poster {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
}

.project-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-poster-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.project-info {
    padding: 20px;
    background: #1a1a1a;
}

.project-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-platforms {
    display: flex;
    gap: 8px;
    align-items: center;
}

.platform-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
}

.platform-icon.pc {
    background: #0078d4;
}

.platform-icon.mobile {
    background: #34c759;
}

.platform-icon.apple {
    background: #000000;
}

.platform-icon.playstation {
    background: #003087;
}

.platform-icon.xbox {
    background: #107c10;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.projects-loading {
    width: 100%;
    text-align: center;
    padding: 60px 20px;
    color: #999999;
    font-size: 16px;
}

@media (max-width: 768px) {
    .project-card {
        flex: 0 0 240px;
        height: 360px;
    }
    
    .project-poster {
        height: 280px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

/* Recruitment Section */
.recruitment-section {
    background-color: #f5f5f5;
    padding: 70px 30px;
}

.recruitment-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.recruitment-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.recruitment-title {
    font-size: 42px;
    font-weight: 900;
    color: #000000;
    text-align: center;
}

.recruitment-subtitle {
    font-size: 16px;
    color: #666666;
    text-align: center;
    line-height: 1.5;
}

.stats-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.stat-box {
    background-color: #e8e8e8;
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666666;
}

.explore-jobs-btn {
    background-color: #c8102e;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    align-self: center;
    transition: background-color 0.3s;
}

.explore-jobs-btn:hover {
    background-color: #a00d26;
}

.recruitment-image {
    height: 500px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

.recruitment-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

/* Settings Page */
.settings-container {
    display: flex;
    min-height: calc(100vh - 70px);
    background-color: #0a0a0a;
}

.settings-sidebar {
    width: 280px;
    background-color: #1a1a1a;
    border-right: 1px solid #333;
    padding: 40px 0;
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.settings-sidebar-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    padding: 0 30px;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.settings-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 20px;
}

.settings-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s;
    position: relative;
}

.settings-nav-item i {
    width: 20px;
    text-align: center;
    font-size: 16px;
    color: #666;
    transition: color 0.3s;
}

.settings-nav-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.settings-nav-item:hover i {
    color: #0099ff;
}

.settings-nav-item.active {
    background-color: rgba(0, 153, 255, 0.1);
    color: #0099ff;
}

.settings-nav-item.active i {
    color: #0099ff;
}

.settings-main {
    flex: 1;
    padding: 40px 60px;
    max-width: calc(100% - 280px);
}

.settings-alert {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #ffffff;
    border-left: 4px solid #ffd700;
    padding: 20px 24px;
    margin-bottom: 40px;
    border-radius: 4px;
    position: relative;
}

.settings-alert-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    flex-shrink: 0;
}

.settings-alert-content {
    flex: 1;
}

.settings-alert-title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.settings-alert-text {
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
}

.settings-alert-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.settings-alert-btn {
    background-color: #333333;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.settings-alert-btn:hover {
    background-color: #1a1a1a;
}

.settings-alert-close {
    background: none;
    border: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s;
}

.settings-alert-close:hover {
    color: #000000;
}

.settings-section {
    display: none;
    animation: fadeInUp 0.4s ease-out;
}

.settings-section.active {
    display: block;
}

.settings-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.settings-section-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.6;
}

.settings-form {
    max-width: 600px;
}

.settings-form-group {
    margin-bottom: 24px;
}

.settings-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.settings-input {
    width: 100%;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 14px;
    color: #ffffff;
    transition: border-color 0.3s;
}

.settings-input:focus {
    outline: none;
    border-color: #0099ff;
}

.settings-input:read-only {
    opacity: 0.6;
    cursor: not-allowed;
}

textarea.settings-input {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    line-height: 1.5;
}

.settings-save-btn,
.settings-action-btn {
    background-color: #333333;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 8px;
}

.settings-save-btn:hover,
.settings-action-btn:hover {
    background-color: #1a1a1a;
}

.linked-account-item,
.login-session-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    margin-bottom: 12px;
}

.linked-account-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 14px;
}

.linked-account-info i {
    font-size: 20px;
    color: #0099ff;
}

.settings-unlink-btn,
.settings-logout-btn {
    background-color: #c8102e;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.settings-unlink-btn:hover,
.settings-logout-btn:hover {
    background-color: #a00d26;
}

.mfa-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
}

.mfa-status-text {
    color: #ffffff;
    font-size: 14px;
}

.settings-toggle-btn {
    background-color: #333333;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.settings-toggle-btn:hover {
    background-color: #1a1a1a;
}

.login-session-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.login-session-device {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.login-session-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.settings-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.settings-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
}

.settings-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0099ff;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 60px 40px 30px;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 40px;
}

.footer-left {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
}

.footer-logo-container {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.footer-links-row-secondary {
    margin-top: 8px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-right {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s;
    text-decoration: none;
    opacity: 0.8;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-icons i {
    font-size: 16px;
    color: #ffffff;
    transition: color 0.3s;
}

/* Ensure all social icons are visible */
.social-icons i {
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands";
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.footer-divider {
    max-width: 1400px;
    margin: 0 auto 30px;
    height: 1px;
    background-color: #333333;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #cccccc;
    font-size: 13px;
}

.cookie-link {
    color: #0099ff;
    text-decoration: none;
}

.separator {
    color: #666666;
}

.copyright {
    color: #cccccc;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
}

.back-to-top {
    color: #cccccc;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.back-to-top:hover {
    color: #ffffff;
}

.back-to-top:hover {
    color: #ffffff;
}

/* Login Reminder Popup */
.login-reminder-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-reminder-popup.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.login-reminder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.login-reminder-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px 28px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2501;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.login-reminder-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(0, 0, 0, 0.05);
    border: none;
    color: #666666;
    font-size: 16px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 2502;
}

.login-reminder-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: #000000;
    transform: rotate(90deg);
}

.login-reminder-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0099ff 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(200, 155, 60, 0.3);
}

.login-reminder-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.login-reminder-message {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 28px;
}

.login-reminder-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-reminder-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.3px;
}

.login-reminder-primary {
    background: linear-gradient(135deg, #c8102e 0%, #a00d26 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.login-reminder-primary:hover {
    background: linear-gradient(135deg, #a00d26 0%, #8b0b20 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(200, 16, 46, 0.4);
}

.login-reminder-primary:active {
    transform: translateY(0);
}

.login-reminder-secondary {
    background: #f5f5f5;
    color: #666666;
    border: 1px solid #e0e0e0;
}

.login-reminder-secondary:hover {
    background: #e8e8e8;
    border-color: #d0d0d0;
    color: #000000;
}

@media (max-width: 480px) {
    .login-reminder-content {
        max-width: 90%;
        padding: 28px 24px 24px;
    }
    
    .login-reminder-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .login-reminder-title {
        font-size: 20px;
    }
    
    .login-reminder-message {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .login-reminder-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Cookie Banner */
/* Social Notification Popup */
.social-notification-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #0099ff;
    color: #ffffff;
    padding: 20px 40px;
    border-radius: 8px;
    z-index: 10000;
    display: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease-out;
}

.social-notification-popup.show {
    display: block;
}

.social-notification-content {
    text-align: center;
}

.social-notification-content p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Email Confirmation Modal */
.email-confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.email-confirm-modal.active {
    display: flex;
}

.email-confirm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.email-confirm-content {
    position: relative;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.email-confirm-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.email-confirm-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #0099ff 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
}

.email-confirm-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

.email-confirm-body {
    padding: 24px 30px;
}

.email-confirm-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    line-height: 1.6;
    text-align: center;
}

.email-confirm-display {
    background-color: rgba(0, 153, 255, 0.1);
    border: 2px solid rgba(0, 153, 255, 0.3);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #0099ff;
}

.email-confirm-display i {
    font-size: 18px;
    opacity: 0.8;
}

.email-confirm-warning {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    padding: 16px;
    background-color: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #ffc107;
    border-radius: 4px;
}

.email-confirm-actions {
    padding: 20px 30px 30px;
    display: flex;
    gap: 12px;
    border-top: 1px solid #333;
}

.email-confirm-btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.email-confirm-cancel {
    background-color: #333333;
    color: #ffffff;
}

.email-confirm-cancel:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.email-confirm-ok {
    background: linear-gradient(135deg, #0099ff 0%, #0066cc 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
}

.email-confirm-ok:hover {
    background: linear-gradient(135deg, #00aaff 0%, #0077dd 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.4);
}

.email-confirm-btn i {
    font-size: 16px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    padding: 15px 20px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    margin-bottom: 0;
    flex: 1;
}

.cookie-text p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.privacy-link {
    color: #0099ff;
    text-decoration: none;
}

.cookie-controls {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.storage-preferences h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
}

.toggle-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.toggle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.toggle-item label:first-child {
    color: #cccccc;
    font-size: 14px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: 0.4s;
    border-radius: 26px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #8b5cf6;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-close {
    background-color: transparent;
    border: none;
    color: #cccccc;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.cookie-close:hover {
    background-color: #333;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    background-color: #0099ff;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.cookie-btn:hover {
    background-color: #0088ee;
}


/* Login/Register Page */
.login-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: none;
    background-color: #ffffff;
    overflow-y: auto;
    overflow-x: hidden;
}

.login-page.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.login-container {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Left Side: Login Form */
.login-form-section {
    flex: 1;
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow-y: auto;
}

.login-page-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.05);
    border: none;
    color: #666666;
    font-size: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10;
}

.login-page-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: #000000;
    transform: rotate(90deg);
}

.login-form-wrapper {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Login and Register Page Styles */
#login-page .login-form-wrapper,
#register-page .login-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

#login-page .page-content,
#register-page .page-content {
    padding: 20px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#login-page .linedef-logo,
#register-page .linedef-logo {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#login-page .linedef-logo-img,
#register-page .linedef-logo-img {
    max-width: 60px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
}

#login-page .linedef-text,
#register-page .linedef-text {
    font-size: 32px;
    font-weight: 900;
    color: #0099ff;
    letter-spacing: 2px;
}

.linedef-logo {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.linedef-logo-img {
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.linedef-text {
    font-size: 32px;
    font-weight: 900;
    color: #0099ff;
    letter-spacing: 2px;
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

#login-page .auth-tabs,
#register-page .auth-tabs {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.auth-tab {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    padding: 12px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    padding-bottom: 12px;
}

#login-page .auth-tab,
#register-page .auth-tab {
    color: rgba(255, 255, 255, 0.5);
}

.auth-tab.active {
    color: #0099ff;
}

#login-page .auth-tab.active,
#register-page .auth-tab.active {
    color: #0099ff;
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #0099ff;
}

#login-page .auth-tab.active::after,
#register-page .auth-tab.active::after {
    background-color: #0099ff;
}

.auth-tab:hover {
    color: rgba(255, 255, 255, 0.8);
}

#login-page .auth-tab:hover,
#register-page .auth-tab:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Auth Forms */
.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #333333;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#login-page .form-group label,
#register-page .form-group label {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
    background: #ffffff;
    color: #000000;
}

#login-page .form-group input,
#register-page .form-group input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.form-group input:focus {
    outline: none;
    border-color: #000000;
}

#login-page .form-group input:focus,
#register-page .form-group input:focus {
    border-color: #0099ff;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder {
    color: #999999;
}

#login-page .form-group input::placeholder,
#register-page .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-options {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #666666;
    user-select: none;
}

#login-page .checkbox-label,
#register-page .checkbox-label {
    color: rgba(255, 255, 255, 0.7);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #000000;
}

#login-page .checkbox-label input[type="checkbox"],
#register-page .checkbox-label input[type="checkbox"] {
    accent-color: #0099ff;
}

/* Social Login Buttons */
.social-login {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 10px 0;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.social-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-btn.facebook {
    background-color: #1877f2;
    color: #ffffff;
}

.social-btn.google {
    background-color: #ffffff;
    color: #4285f4;
    border: 2px solid #e0e0e0;
    font-weight: 700;
    font-size: 20px;
}

.social-btn.apple {
    background-color: #000000;
    color: #ffffff;
}

.social-btn.xbox {
    background-color: #107c10;
    color: #ffffff;
}

.social-btn.playstation {
    background-color: #003087;
    color: #ffffff;
}

.google-icon {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
}

/* Submit Button */
.submit-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #666666;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.submit-btn:hover {
    background-color: #000000;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.submit-btn:active {
    transform: scale(0.95);
}

/* Login and Register Page Submit Button */
#login-page .submit-btn,
#register-page .submit-btn {
    background-color: #0099ff;
    transition: all 0.3s ease;
}

#login-page .submit-btn:hover,
#register-page .submit-btn:hover {
    background-color: #0088ee;
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 153, 255, 0.4);
}

#login-page .submit-btn:active,
#register-page .submit-btn:active {
    transform: scale(0.95);
}

/* Login Footer */
.login-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 12px;
    color: #999999;
}

#login-page .login-footer,
#register-page .login-footer {
    color: rgba(255, 255, 255, 0.5);
}

.forgot-link {
    color: #0099ff;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.forgot-link:hover {
    color: #0088ee;
    text-decoration: underline;
}

#login-page .forgot-link:hover,
#register-page .forgot-link:hover {
    color: #00aaff;
}

.version-info {
    margin: 10px 0;
    color: #cccccc;
    font-size: 11px;
}

#login-page .version-info,
#register-page .version-info {
    color: rgba(255, 255, 255, 0.4);
}

.captcha-notice {
    font-size: 10px;
    line-height: 1.4;
    color: #999999;
    margin-top: 10px;
}


/* Check-in Success Poster Popup */
.checkin-poster-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkin-poster-popup.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.checkin-poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.checkin-poster-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 24px;
    padding: 0;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 4001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUpScale 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes slideUpScale {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.checkin-poster-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 4002;
}

.checkin-poster-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.checkin-poster-icon {
    padding: 50px 32px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
}

.checkin-poster-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0099ff 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 153, 255, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 153, 255, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.3);
    }
}

.checkin-poster-icon-wrapper i {
    font-size: 60px;
    color: #ffffff;
    animation: iconCheck 0.6s ease-out;
}

@keyframes iconCheck {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.checkin-poster-message {
    padding: 30px 32px 40px;
    text-align: center;
    background: transparent;
}

.poster-title {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #0099ff 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.poster-subtitle {
    font-size: 16px;
    color: #cccccc;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
}

.poster-reward-info {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.15) 0%, rgba(0, 102, 204, 0.1) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 153, 255, 0.3);
}

.poster-reward-amount {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #0099ff 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.poster-reward-label {
    font-size: 14px;
    color: #999999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.poster-actions {
    margin-top: 30px;
}

.poster-continue-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #0099ff 0%, #0066cc 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
}

.poster-continue-btn:hover {
    background: linear-gradient(135deg, #00aaff 0%, #0077dd 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.4);
}

.poster-continue-btn:active {
    transform: translateY(0);
}

/* Check-in Popup - Korean League of Legends Style */
.checkin-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkin-popup.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.checkin-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

.checkin-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 24px;
    padding: 0;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 3001;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.checkin-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3002;
}

.checkin-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: rotate(90deg);
}

.checkin-header {
    padding: 40px 32px 30px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.checkin-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0099ff 0%, #00ccff 50%, #0099ff 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.checkin-header-icon {
    margin-bottom: 20px;
}

.checkin-header-icon i {
    font-size: 48px;
    color: #0099ff;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.checkin-title {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #0099ff 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.checkin-subtitle {
    font-size: 15px;
    color: #cccccc;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.checkin-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    padding: 32px;
    background: transparent;
}

.checkin-day {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.checkin-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0099ff, #0066cc);
    opacity: 0;
    transition: opacity 0.3s;
}

.checkin-day:hover::before {
    opacity: 1;
}

.checkin-day:hover {
    border-color: #0099ff;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 153, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.15) 0%, rgba(0, 102, 204, 0.1) 100%);
}

.checkin-day.claimed {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.1) 100%);
    border-color: #4caf50;
}

.checkin-day.claimed::before {
    background: linear-gradient(90deg, #4caf50, #66bb6a);
    opacity: 1;
}

.checkin-day.claimed .day-status {
    color: #4caf50;
}

.checkin-day.today {
    border-color: #0099ff;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.2) 0%, rgba(0, 102, 204, 0.15) 100%);
    box-shadow: 0 0 0 2px rgba(0, 153, 255, 0.3), 0 8px 24px rgba(0, 153, 255, 0.3);
}

.checkin-day.today::before {
    opacity: 1;
    height: 4px;
}

.checkin-day.today.claimed {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.25) 0%, rgba(76, 175, 80, 0.15) 100%);
}

.checkin-day.special {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    position: relative;
}

.checkin-day.special::after {
    content: '⭐';
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 18px;
    opacity: 0.6;
}

.checkin-day.special.today {
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3), 0 8px 24px rgba(255, 215, 0, 0.3);
}

.checkin-day.special::before {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.checkin-day.locked {
    opacity: 0.3;
    cursor: not-allowed;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.checkin-day.locked:hover {
    transform: none;
    border-color: #e9ecef;
    box-shadow: none;
}

.checkin-day.locked::before {
    display: none;
}

.day-number {
    font-size: 13px;
    font-weight: 600;
    color: #999999;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.checkin-day.today .day-number {
    color: #0099ff;
    font-weight: 700;
}

.checkin-day.special .day-number {
    color: #ffd700;
    font-weight: 700;
}

.day-reward {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.reward-amount {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #0099ff 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1;
}

.checkin-day.special .reward-amount {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reward-unit {
    font-size: 11px;
    font-weight: 500;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.day-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.checkin-day.today .reward-amount {
    font-size: 26px;
}

.checkin-day.special .reward-amount {
    font-size: 28px;
}

.checkin-day.claimed .reward-amount {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.day-status {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    margin-top: auto;
}

.checkin-day.claimed .day-status {
    color: #4caf50;
    transform: scale(1.1);
}

.checkin-day.today:not(.claimed) .day-status {
    color: #0099ff;
    opacity: 0.5;
}

.checkin-footer {
    padding: 24px 32px 32px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.checkin-info {
    text-align: center;
    margin-bottom: 20px;
}

.checkin-info p {
    color: #cccccc;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.checkin-claim-btn {
    width: 100%;
    background: linear-gradient(135deg, #0099ff 0%, #0066cc 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.checkin-claim-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.checkin-claim-btn:hover:not(:disabled)::before {
    left: 100%;
}

.checkin-claim-btn:hover:not(:disabled) {
        background: linear-gradient(135deg, #00aaff 0%, #0077dd 100%);
    transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 153, 255, 0.4);
    }

/* Responsive for Check-in Popup */
@media (max-width: 768px) {
    .checkin-content {
        max-width: 95%;
        border-radius: 20px;
    }
    
    .checkin-header {
        padding: 30px 20px 24px;
    }
    
    .checkin-header-icon i {
        font-size: 40px;
    }
    
    .checkin-title {
        font-size: 26px;
    }
    
    .checkin-subtitle {
        font-size: 14px;
    }
    
    .checkin-days {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 24px 20px;
    }
    
    .checkin-day {
        min-height: 120px;
        padding: 16px 10px;
    }
    
    .checkin-day:nth-child(5),
    .checkin-day:nth-child(6),
    .checkin-day:nth-child(7) {
        grid-column: span 1;
    }
    
    .checkin-day:nth-child(7) {
        grid-column: 2 / 4;
    }
    
    .reward-amount {
        font-size: 20px;
    }
    
    .checkin-day.today .reward-amount {
        font-size: 22px;
    }
    
    .checkin-day.special .reward-amount {
        font-size: 24px;
    }
    
    .checkin-footer {
        padding: 20px;
    }
    
    .checkin-info p {
        font-size: 14px;
    }
    
    .checkin-claim-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    /* Check-in Poster Popup Mobile */
    .checkin-poster-content {
        max-width: 90%;
        border-radius: 20px;
    }
    
    .checkin-poster-icon {
        padding: 40px 24px 24px;
    }
    
    .checkin-poster-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .checkin-poster-icon-wrapper i {
        font-size: 50px;
    }
    
    .checkin-poster-message {
        padding: 24px 24px 32px;
    }
    
    .poster-title {
        font-size: 26px;
    }
    
    .poster-subtitle {
        font-size: 14px;
    }
    
    .poster-reward-info {
        margin: 24px 0;
        padding: 20px;
    }
    
    .poster-reward-amount {
        font-size: 40px;
    }
    
    .poster-reward-label {
        font-size: 12px;
    }
    
    .poster-continue-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .checkin-content {
        max-width: 100%;
        border-radius: 16px;
        max-height: 95vh;
    }
    
    .checkin-header {
        padding: 24px 16px 20px;
    }
    
    .checkin-header-icon i {
        font-size: 36px;
    }
    
    .checkin-title {
        font-size: 22px;
    }
    
    .checkin-subtitle {
        font-size: 13px;
    }
    
    .checkin-days {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 20px 16px;
    }
    
    .checkin-day {
        min-height: 110px;
        padding: 14px 8px;
    }
    
    .checkin-day:nth-child(7) {
        grid-column: 1 / 3;
    }
    
    .day-number {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .reward-amount {
        font-size: 18px;
    }
    
    .reward-unit {
        font-size: 10px;
    }
    
    .checkin-day.today .reward-amount {
        font-size: 20px;
    }
    
    .checkin-day.special .reward-amount {
        font-size: 22px;
    }
    
    .day-status {
        font-size: 20px;
    }
    
    .checkin-footer {
        padding: 16px;
    }
    
    .checkin-info p {
        font-size: 13px;
    }
    
    .checkin-claim-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    /* Check-in Poster Popup Mobile Small */
    .checkin-poster-content {
        max-width: 95%;
        border-radius: 16px;
    }
    
    .checkin-poster-icon {
        padding: 30px 20px 20px;
    }
    
    .checkin-poster-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .checkin-poster-icon-wrapper i {
        font-size: 40px;
    }
    
    .checkin-poster-message {
        padding: 20px 20px 28px;
    }
    
    .poster-title {
        font-size: 22px;
    }
    
    .poster-subtitle {
        font-size: 13px;
    }
    
    .poster-reward-info {
        margin: 20px 0;
        padding: 16px;
    }
    
    .poster-reward-amount {
        font-size: 36px;
    }
    
    .poster-reward-label {
        font-size: 11px;
    }
    
    .poster-continue-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}

.checkin-claim-btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.checkin-claim-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #e0e0e0;
    color: #999999;
}

.checkin-claim-btn i {
    font-size: 16px;
    transition: transform 0.3s;
}

.checkin-claim-btn:hover:not(:disabled) i {
    transform: translateX(4px);
}

/* Responsive Design */

/* Tablet and smaller desktop (1024px and below) */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-center {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .login-container {
        flex-direction: column;
    }
    
    .login-form-section {
        flex: 1;
        min-width: 100%;
    }
    
    .page-container {
        padding: 0 20px 30px;
    }
    
    .news-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .news-detail-sidebar {
        order: -1;
    }
    
    .search-results-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1200px) {
    .banner-title {
        font-size: 56px;
    }
    
    .banner-subtitle {
        font-size: 28px;
    }
    
    .banner-description {
        font-size: 16px;
    }
    
    .banner-features {
        gap: 12px;
    }
    
    .banner-feature-item {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .news-container {
        grid-template-columns: 1fr;
    }
    
    .recruitment-container {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .nav-right {
        gap: 15px;
    }
    
    .search-container {
        width: 150px;
    }
    
    .search-input {
        font-size: 12px;
    }
    
    .login-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Mobile and small tablets (768px and below) */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }
    
    .nav-container {
        padding: 0 15px;
        flex-wrap: wrap;
    }
    
    .nav-left .linedef-logo {
        font-size: 12px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-center {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        z-index: 1001;
    }
    
    .nav-center.active {
        display: flex;
    }
    
    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: left;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-right {
        gap: 10px;
        margin-left: auto;
    }
    
    .search-container {
        width: 120px;
    }
    
    .search-input {
        padding: 6px 8px;
        font-size: 11px;
    }
    
    .login-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .user-dropdown {
        min-width: 180px;
        right: 0;
    }
    
    .user-dropdown-item {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .user-dropdown-header {
        padding: 12px 16px;
    }
    
    .user-name {
        font-size: 13px;
    }
    
    .carousel-slide {
        background-size: cover;
        background-position: center center;
    }
    
    .play-btn {
        padding: 14px 28px;
        font-size: 14px;
        min-width: 160px;
        gap: 10px;
    }
    
    .play-btn i {
        font-size: 16px;
    }
    
    .play-btn {
        padding: 14px 28px;
        font-size: 14px;
        min-width: 160px;
        gap: 10px;
    }
    
    .play-btn i {
        font-size: 16px;
    }
    
    .banner-text {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .banner-title {
        font-size: 36px;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    
    .banner-subtitle {
        font-size: 20px;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .banner-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .banner-badge {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 12px;
    }
    
    .banner-features {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .banner-feature-item {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .banner-content {
        flex-direction: column;
        padding: 20px;
    }
    
    .play-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .cookie-controls {
        flex-direction: column;
    }
    
    .cookie-text p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .checkin-days {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 24px;
    }
    
    .checkin-header {
        padding: 24px 24px 20px;
    }
    
    .checkin-footer {
        padding: 20px 24px 24px;
    }
    
    .news-filter-header {
        padding: 15px 20px;
    }
    
    .news-filter-dropdown {
        font-size: 14px;
    }
    
    .news-layout-container {
        gap: 20px;
    }
    
    .news-featured {
        min-height: 400px;
    }
    
    .news-featured-title {
        font-size: 24px;
    }
    
    .news-featured-description {
        font-size: 14px;
    }
    
    .news-secondary-item {
        flex-direction: column;
    }
    
    .news-secondary-image-wrapper {
        width: 100%;
        height: 200px;
    }
    
    .search-hero-section {
        min-height: 300px;
        padding: 40px 20px;
    }
    
    .search-hero-content h1 {
        font-size: 32px;
    }
    
    .search-page-input-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-page-input {
        width: 100%;
    }
    
    .search-page-submit {
        width: 100%;
    }
    
    .search-results-container {
        grid-template-columns: 1fr;
    }
    
    .about-hero-content {
        padding: 40px 20px;
    }
    
    .careers-hero-content {
        padding: 40px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Small mobile devices (480px and below) */
@media (max-width: 480px) {
    .carousel-slide {
        background-size: cover;
        background-position: center center;
    }
    
    .hero-banner .carousel-container {
        height: 500px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-left .linedef-logo {
        font-size: 11px;
    }
    
    .nav-right {
        gap: 8px;
    }
    
    .search-container {
        width: 100px;
    }
    
    .search-input {
        padding: 5px 6px;
        font-size: 10px;
    }
    
    .login-btn {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .user-dropdown {
        min-width: 160px;
        right: 0;
    }
    
    .user-dropdown-item {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .user-dropdown-header {
        padding: 10px 14px;
    }
    
    .user-name {
        font-size: 12px;
    }
    
    /* Settings Page Mobile */
    .settings-container {
        flex-direction: column;
    }
    
    .settings-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        height: auto;
        padding: 20px 0;
        border-right: none;
        border-bottom: 1px solid #333;
    }
    
    .settings-sidebar-title {
        font-size: 20px;
        padding: 0 20px;
        margin-bottom: 20px;
    }
    
    .settings-nav {
        padding: 0 15px;
        overflow-x: auto;
        flex-direction: row;
        gap: 8px;
    }
    
    .settings-nav-item {
        white-space: nowrap;
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .settings-nav-item span {
        display: none;
    }
    
    .settings-main {
        max-width: 100%;
        padding: 20px 15px;
    }
    
    .settings-alert {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    
    .settings-alert-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .settings-alert-btn {
        flex: 1;
    }
    
    .settings-section-title {
        font-size: 24px;
    }
    
    .settings-section-description {
        font-size: 14px;
    }
    
    .settings-form {
        max-width: 100%;
    }
    
    .linked-account-item,
    .login-session-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .settings-unlink-btn,
    .settings-logout-btn {
        width: 100%;
    }
    
    .page-container {
        padding: 15px 10px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .about-hero-title {
        font-size: 32px;
    }
    
    .about-hero-description {
        font-size: 14px;
    }
    
    .about-values-nav {
        gap: 15px;
        font-size: 11px;
    }
    
    .careers-hero-title {
        font-size: 36px;
    }
    
    .news-featured-title {
        font-size: 20px;
    }
    
    .news-featured-description {
        font-size: 13px;
    }
    
    .news-secondary-title {
        font-size: 16px;
    }
    
    .news-secondary-description {
        font-size: 13px;
    }
    
    .news-detail-title {
        font-size: 24px;
    }
    
    .search-hero-content h1 {
        font-size: 28px;
    }
    
    .checkin-days {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 20px 16px;
    }
    
    .checkin-header {
        padding: 24px 20px 16px;
    }
    
    .checkin-title {
        font-size: 22px;
    }
    
    .checkin-subtitle {
        font-size: 13px;
    }
    
    .checkin-day {
        min-height: 120px;
        padding: 16px 8px;
    }
    
    .day-reward {
        font-size: 16px;
    }
    
    .checkin-day.today .day-reward {
        font-size: 18px;
    }
    
    .checkin-day.special .day-reward {
        font-size: 19px;
    }
    
    .checkin-footer {
        padding: 16px 20px 20px;
    }
    
    .checkin-claim-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .login-container {
        flex-direction: column;
    }
    
    .login-form-section {
        flex: 1;
        min-width: 100%;
        padding: 30px 20px;
    }
    
    .login-text-title {
        font-size: 36px;
    }
    
    .login-text-subtitle {
        font-size: 18px;
    }
    
    .login-form-wrapper {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    #login-page .login-form-wrapper,
    #register-page .login-form-wrapper {
        padding: 30px 20px;
    }
    
    .linedef-logo-img {
        max-width: 120px;
    }
    
    #login-page .linedef-logo-img,
    #register-page .linedef-logo-img {
        max-width: 60px;
    }
    
    .linedef-text {
        font-size: 28px;
    }
    
    #login-page .linedef-text,
    #register-page .linedef-text {
        font-size: 24px;
    }
    
    .social-login {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .submit-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .auth-tabs {
        gap: 15px;
    }
    
    .auth-tab {
        font-size: 18px;
    }
    
    #login-page .auth-tab,
    #register-page .auth-tab {
        font-size: 16px;
        padding: 10px 0;
    }
    
    #login-page .page-title,
    #register-page .page-title {
        font-size: 32px;
    }
    
    #login-page .page-subtitle,
    #register-page .page-subtitle {
        font-size: 16px;
    }
    
    .checkin-poster-content {
        max-width: 95%;
        border-radius: 16px;
    }
    
    .checkin-poster-image {
        max-height: 400px;
    }
    
    .checkin-poster-message {
        padding: 20px 24px 24px;
    }
    
    .poster-title {
        font-size: 24px;
    }
    
    .poster-subtitle {
        font-size: 14px;
    }
    
    .footer {
        padding: 40px 20px 20px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-left {
        width: 100%;
    }
    
    .footer-center {
        width: 100%;
    }
    
    .footer-links-row {
        gap: 16px;
        font-size: 12px;
    }
    
    .footer-right {
        align-items: flex-start;
        width: 100%;
    }
    
    .social-icons {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    /* News Section Mobile */
    .news-section {
        padding: 40px 15px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .view-all-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    .news-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-image-wrapper {
        height: 250px;
    }
    
    .news-title {
        font-size: 18px;
    }
    
    /* Projects Section Mobile */
    .projects-section {
        padding: 40px 15px;
    }
    
    .projects-container {
        padding: 0;
    }
    
    .project-card {
        min-width: 280px;
    }
    
    /* Recruitment Section Mobile */
    .recruitment-container {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }
    
    .recruitment-content {
        text-align: center;
    }
    
    .recruitment-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .recruitment-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .stats-container {
        justify-content: center;
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .stat-box {
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .explore-jobs-btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Search Page Mobile */
    .search-page-top {
        padding: 20px 15px;
    }
    
    .search-results-count {
        font-size: 14px;
    }
    
    .search-query-text {
        font-size: 20px;
    }
    
    .search-page-bottom {
        padding: 20px 15px;
    }
    
    .search-page-message {
        margin-bottom: 20px;
    }
    
    .search-message-text {
        font-size: 14px;
    }
    
    .search-page-input-container {
        margin-bottom: 20px;
    }
    
    .search-result-item {
        padding: 16px;
    }
    
    .search-result-title {
        font-size: 18px;
    }
    
    .search-result-content {
        font-size: 14px;
    }
    
    /* About Page Mobile */
    .about-hero-section {
        min-height: 50vh;
        padding: 40px 20px;
    }
    
    .about-hero-title {
        font-size: 28px;
    }
    
    .about-hero-description {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .about-values-nav {
        flex-direction: column;
        gap: 12px;
        font-size: 10px;
        padding: 0 10px;
    }
    
    .about-content-section {
        padding: 40px 15px;
    }
    
    .about-value-block {
        padding: 20px;
    }
    
    /* Careers Page Mobile */
    .careers-hero-section {
        min-height: 50vh;
        padding: 40px 20px;
    }
    
    .careers-hero-title {
        font-size: 36px;
    }
    
    .careers-mission-section {
        padding: 30px 15px;
    }
    
    .careers-mission-text {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .careers-content-section {
        padding: 40px 15px;
    }
    
    .careers-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .career-card-content {
        padding: 16px;
    }
    
    .career-card-title {
        font-size: 16px;
    }
    
    /* Footer Mobile */
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .footer-bottom-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .footer-bottom .separator {
        display: none;
    }
    
    .cookie-banner {
        padding: 12px 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .cookie-actions {
        justify-content: space-between;
        width: 100%;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .storage-preferences h4 {
        font-size: 14px;
    }
    
    .toggle-item label {
        font-size: 12px;
    }
}

