.main {
    padding-top: 72px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 102, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 24px;
    font-size: 13px;
    color: #0066FF;
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: 16px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title span {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.5);
}

.hero-btn-secondary {
    color: #0066FF;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: #0066FF;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #0066FF;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 14px;
    color: #718096;
}

.features {
    padding: 120px 0;
    background: #f8fafc;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #0066FF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
}

.section-description {
    font-size: 16px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 28px;
    color: #0066FF;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.7;
}

.routes {
    padding: 120px 0;
    background: linear-gradient(180deg, #e2e8f0 0%, #f8fafc 100%);
}

.routes-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.routes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

.routes-tabs {
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.05);
    padding: 6px;
    border-radius: 10px;
}

.routes-tab {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.routes-tab:hover {
    color: #0066FF;
}

.routes-tab.active {
    color: #ffffff;
    background: #0066FF;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.route-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.route-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.route-image {
    height: 160px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.route-image i {
    font-size: 48px;
    color: rgba(0, 102, 255, 0.3);
}

.route-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: rgba(0, 102, 255, 0.9);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
}

.route-content {
    padding: 20px;
}

.route-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 8px;
}

.route-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #718096;
    margin-bottom: 16px;
}

.route-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.route-meta i {
    font-size: 14px;
}

.route-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.route-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #94A3B8;
}

.route-author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: #ffffff;
}

.route-action {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #00D4FF;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.route-action:hover {
    background: rgba(0, 212, 255, 0.2);
}

.voice-section {
    padding: 120px 0;
    background: #0A1628;
}

.voice-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.voice-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: center;
}

.voice-info {
    max-width: 560px;
}

.voice-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.voice-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.voice-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.15);
    border-radius: 8px;
    flex-shrink: 0;
}

.voice-feature-icon i {
    font-size: 18px;
    color: #00D4FF;
}

.voice-feature-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.voice-feature-text p {
    font-size: 13px;
    color: #94A3B8;
}

.voice-panel {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.6) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
}

.voice-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.voice-panel-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.voice-channel-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #22C55E;
}

.voice-channel-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.voice-users {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.voice-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(10, 22, 40, 0.6);
    border-radius: 10px;
}

.voice-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
}

.voice-user-speaking .voice-user-avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    border: 2px solid #22C55E;
    border-radius: 50%;
    animation: speaking 1s infinite;
}

@keyframes speaking {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.voice-user-info {
    flex: 1;
}

.voice-user-name {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.voice-user-status {
    font-size: 12px;
    color: #94A3B8;
}

.voice-user-controls {
    display: flex;
    gap: 8px;
}

.voice-control-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 95, 0.8);
    border-radius: 6px;
    color: #94A3B8;
    font-size: 14px;
    transition: all 0.2s ease;
}

.voice-control-btn:hover {
    background: rgba(0, 102, 255, 0.3);
    color: #ffffff;
}

.voice-control-btn.muted {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

.voice-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.voice-main-btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EF4444;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.voice-main-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
}

.location {
    padding: 120px 0;
    background: linear-gradient(180deg, #0A1628 0%, #1E3A5F 100%);
}

.location-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.location-map {
    aspect-ratio: 16/10;
    background: rgba(10, 22, 40, 0.8);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.location-map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #1E3A5F 0%, #0A1628 100%);
}

.location-map-placeholder i {
    font-size: 64px;
    color: rgba(0, 212, 255, 0.3);
    margin-bottom: 16px;
}

.location-map-placeholder p {
    font-size: 14px;
    color: #94A3B8;
}

.location-players {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.location-player {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(10, 22, 40, 0.9);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 8px;
}

.location-player-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: #ffffff;
}

.location-player-name {
    font-size: 12px;
    color: #ffffff;
    white-space: nowrap;
}

.location-player-distance {
    font-size: 11px;
    color: #00D4FF;
}

.location-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.location-info p {
    font-size: 15px;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 24px;
}

.location-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.location-stat {
    padding: 20px;
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 12px;
}

.location-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #00D4FF;
    margin-bottom: 4px;
}

.location-stat-label {
    font-size: 12px;
    color: #94A3B8;
}

.cta {
    padding: 120px 0;
    background: #f8fafc;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.cta-content {
    padding: 64px 48px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 16px;
    color: #4a5568;
    max-width: 560px;
    margin: 0 auto 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .voice-content {
        grid-template-columns: 1fr;
    }

    .voice-panel {
        max-width: 500px;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .location-map {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 80px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .hero-stat {
        text-align: center;
    }

    .features,
    .routes,
    .voice-section,
    .location,
    .cta {
        padding: 80px 0;
    }

    .routes-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .routes-tabs {
        width: 100%;
        overflow-x: auto;
    }

    .cta-content {
        padding: 48px 24px;
    }
}

.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0A1628 0%, #1E3A5F 100%);
    text-align: center;
}

.page-header-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.page-description {
    font-size: 16px;
    color: #94A3B8;
    line-height: 1.6;
}

.routes-full,
.voice-full,
.location-full,
.about-full {
    padding: 60px 0;
    background: #0A1628;
    min-height: 60vh;
}

.routes-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.routes-search {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(30, 58, 95, 0.5);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 10px;
    flex: 1;
    max-width: 400px;
}

.routes-search i {
    font-size: 18px;
    color: #94A3B8;
}

.routes-search-input {
    flex: 1;
    font-size: 14px;
    color: #ffffff;
    background: transparent;
}

.routes-search-input::placeholder {
    color: #64748B;
}

.routes-add-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.routes-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
}

.routes-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 95, 0.5);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 8px;
    color: #94A3B8;
    font-size: 18px;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(0, 102, 255, 0.2);
    color: #ffffff;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    font-size: 14px;
    color: #94A3B8;
}

.voice-layout,
.location-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

.voice-sidebar,
.location-sidebar {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.5) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
}

.voice-sidebar-header,
.location-map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.voice-sidebar-header h3,
.location-map-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.voice-create-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.2);
    border-radius: 6px;
    color: #00D4FF;
    font-size: 18px;
    transition: all 0.3s ease;
}

.voice-create-btn:hover {
    background: rgba(0, 102, 255, 0.4);
}

.voice-channel-list {
    padding: 12px;
}

.voice-channel-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.voice-channel-item:hover,
.voice-channel-item.active {
    background: rgba(0, 102, 255, 0.15);
}

.voice-channel-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 95, 0.6);
    border-radius: 8px;
    color: #00D4FF;
    font-size: 16px;
}

.voice-channel-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.voice-channel-name {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.voice-channel-users {
    font-size: 12px;
    color: #64748B;
}

.voice-channel-online {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
}

.voice-channel-item:not(.active) .voice-channel-online {
    display: none;
}

.voice-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.voice-features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.voice-feature-card {
    padding: 24px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.5) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 12px;
    text-align: center;
}

.voice-feature-card .voice-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.15);
    border-radius: 10px;
    margin: 0 auto 16px;
    color: #00D4FF;
    font-size: 20px;
}

.voice-feature-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.voice-feature-card p {
    font-size: 13px;
    color: #94A3B8;
}

.location-map-full {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.5) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
}

.location-map-controls {
    display: flex;
    gap: 8px;
}

.location-control-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 95, 0.6);
    border-radius: 6px;
    color: #94A3B8;
    font-size: 16px;
    transition: all 0.3s ease;
}

.location-control-btn:hover,
.location-control-btn.active {
    background: rgba(0, 102, 255, 0.3);
    color: #00D4FF;
}

.location-map-area {
    height: 500px;
    position: relative;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(0, 102, 255, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, #1E3A5F 0%, #0A1628 100%);
    overflow: hidden;
}

.location-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.location-radar-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #00D4FF;
}

.location-radar-center i {
    font-size: 48px;
    opacity: 0.5;
}

.location-radar-center span {
    font-size: 12px;
    opacity: 0.7;
}

.location-player-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    animation: radar-sweep 4s linear infinite;
}

.location-marker-dot {
    width: 12px;
    height: 12px;
    background: #00D4FF;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.location-marker-label {
    font-size: 11px;
    color: #ffffff;
    background: rgba(10, 22, 40, 0.8);
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

@keyframes radar-sweep {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.location-stats-panel,
.location-players-panel {
    padding: 20px;
}

.location-stats-panel h3,
.location-players-panel h3 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.location-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.location-players-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-player-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(10, 22, 40, 0.6);
    border-radius: 10px;
}

.location-player-item .location-player-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.location-player-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.location-player-name {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
}

.location-player-info {
    font-size: 11px;
    color: #64748B;
}

.location-track-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.2);
    border-radius: 6px;
    color: #00D4FF;
    font-size: 14px;
    transition: all 0.3s ease;
}

.location-track-btn:hover {
    background: rgba(0, 102, 255, 0.4);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-intro,
.about-values,
.about-stats,
.about-contact {
    padding: 80px 0;
}

.about-intro {
    background: linear-gradient(135deg, #0A1628 0%, #1E3A5F 100%);
}

.about-intro .about-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 64px;
    align-items: center;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 15px;
    color: #94A3B8;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.5) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 20px;
}

.about-image i {
    font-size: 120px;
    color: rgba(0, 212, 255, 0.3);
}

.about-values {
    background: #0A1628;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.about-value-card {
    padding: 32px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.5) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 102, 255, 0.4);
}

.about-value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.15);
    border-radius: 12px;
    margin: 0 auto 20px;
    color: #00D4FF;
    font-size: 28px;
}

.about-value-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.about-value-card p {
    font-size: 14px;
    color: #94A3B8;
    line-height: 1.6;
}

.about-stats {
    background: linear-gradient(135deg, #1E3A5F 0%, #0A1628 100%);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.about-stat-item {
    text-align: center;
}

.about-stat-value {
    font-size: 42px;
    font-weight: 700;
    color: #00D4FF;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 14px;
    color: #94A3B8;
}

.about-contact {
    background: #0A1628;
}

.about-contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.about-contact-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.about-contact-content > p {
    font-size: 15px;
    color: #94A3B8;
    margin-bottom: 32px;
}

.about-contact-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.about-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #94A3B8;
}

.about-contact-item i {
    font-size: 18px;
    color: #00D4FF;
}

@media (max-width: 1024px) {
    .voice-layout,
    .location-layout {
        grid-template-columns: 1fr;
    }

    .voice-sidebar {
        order: 2;
    }

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

    .about-image {
        order: -1;
        height: 200px;
    }

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

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 40px;
    }

    .routes-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .routes-search {
        max-width: none;
    }

    .routes-add-btn {
        justify-content: center;
    }

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

    .location-map-area {
        height: 350px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-stat-value {
        font-size: 32px;
    }

    .about-contact-grid {
        flex-direction: column;
        gap: 16px;
    }
}

.auth-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #0A1628 0%, #1E3A5F 50%, #0A1628 100%);
    display: flex;
    align-items: center;
}

.auth-container {
    max-width: 440px;
    margin: 0 auto;
    padding: 0 24px;
}

.auth-card {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.6) 0%, rgba(10, 22, 40, 0.9) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.auth-logo i {
    font-size: 32px;
    color: #00D4FF;
}

.auth-logo span {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.auth-header h1 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.auth-header p {
    font-size: 14px;
    color: #94A3B8;
}

.auth-tabs {
    display: flex;
    background: rgba(10, 22, 40, 0.6);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 28px;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #94A3B8;
    background: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.auth-tab.active {
    color: #ffffff;
    background: rgba(0, 102, 255, 0.3);
}

.auth-field {
    margin-bottom: 20px;
}

.auth-field label {
    display: block;
    font-size: 13px;
    color: #94A3B8;
    margin-bottom: 8px;
}

.auth-input {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.auth-input:focus-within {
    border-color: #0066FF;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.auth-input i {
    font-size: 18px;
    color: #64748B;
}

.auth-input input {
    flex: 1;
    font-size: 14px;
    color: #ffffff;
    background: transparent;
}

.auth-input input::placeholder {
    color: #64748B;
}

.auth-toggle-password {
    padding: 4px;
    color: #64748B;
    font-size: 18px;
    transition: color 0.3s ease;
}

.auth-toggle-password:hover {
    color: #00D4FF;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #94A3B8;
    cursor: pointer;
}

.auth-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: #0066FF;
}

.auth-checkbox a {
    color: #00D4FF;
}

.auth-forgot {
    font-size: 13px;
    color: #00D4FF;
}

.auth-submit {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.4);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.auth-divider span {
    font-size: 13px;
    color: #64748B;
}

.auth-social {
    display: flex;
    gap: 12px;
}

.auth-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    font-size: 13px;
    color: #ffffff;
    background: rgba(30, 58, 95, 0.6);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.auth-social-btn:hover {
    background: rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.4);
}

.auth-error {
    font-size: 12px;
    color: #EF4444;
    margin-top: 6px;
}

.auth-success {
    padding: 12px;
    font-size: 14px;
    color: #22C55E;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.profile-section {
    padding: 120px 0 80px;
    background: #0A1628;
    min-height: 100vh;
}

.profile-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.5) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 20px;
    margin-bottom: 32px;
}

.profile-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.profile-avatar-text {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    border-radius: 50%;
}

.profile-avatar-edit {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0066FF;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
}

.profile-info {
    flex: 1;
}

.profile-info h1 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.profile-level {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 13px;
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    margin-bottom: 8px;
}

.profile-bio {
    font-size: 14px;
    color: #94A3B8;
}

.profile-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.profile-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.5) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 16px;
}

.profile-stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.15);
    border-radius: 10px;
    color: #00D4FF;
    font-size: 20px;
}

.profile-stat-value {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.profile-stat-label {
    font-size: 13px;
    color: #94A3B8;
}

.profile-tabs {
    display: flex;
    gap: 8px;
    padding: 4px;
    background: rgba(30, 58, 95, 0.3);
    border-radius: 10px;
    margin-bottom: 24px;
}

.profile-tab {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #94A3B8;
    background: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.profile-tab.active {
    color: #ffffff;
    background: rgba(0, 102, 255, 0.3);
}

.profile-content {
    padding: 24px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.3) 0%, rgba(10, 22, 40, 0.6) 100%);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 16px;
}

.profile-flight-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px;
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 12px;
}

.profile-flight-route {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-flight-code {
    font-size: 18px;
    font-weight: 700;
    color: #00D4FF;
}

.profile-flight-arrow {
    color: #64748B;
}

.profile-flight-info {
    flex: 1;
}

.profile-flight-name {
    display: block;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 4px;
}

.profile-flight-date {
    font-size: 12px;
    color: #64748B;
}

.profile-flight-stats {
    display: flex;
    gap: 16px;
}

.profile-flight-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #94A3B8;
}

.profile-empty {
    text-align: center;
    padding: 60px 20px;
}

.profile-empty i {
    font-size: 48px;
    color: #64748B;
    margin-bottom: 16px;
}

.profile-empty p {
    font-size: 14px;
    color: #94A3B8;
    margin-bottom: 20px;
}

.records-section {
    padding: 120px 0 80px;
    background: #0A1628;
    min-height: 100vh;
}

.records-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.records-header {
    text-align: center;
    margin-bottom: 48px;
}

.records-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.records-header p {
    font-size: 15px;
    color: #94A3B8;
}

.records-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.records-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.5) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 16px;
}

.records-stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.15);
    border-radius: 12px;
    color: #00D4FF;
    font-size: 24px;
}

.records-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.records-stat-label {
    font-size: 13px;
    color: #94A3B8;
}

.records-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.records-filter-group {
    display: flex;
    gap: 12px;
}

.records-filter-group select {
    padding: 12px 16px;
    font-size: 14px;
    color: #ffffff;
    background: rgba(30, 58, 95, 0.5);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
}

.records-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.records-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.4) 0%, rgba(10, 22, 40, 0.7) 100%);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.records-item:hover {
    border-color: rgba(0, 102, 255, 0.4);
    transform: translateY(-2px);
}

.records-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 10px;
    min-width: 70px;
}

.records-day {
    font-size: 24px;
    font-weight: 700;
    color: #00D4FF;
}

.records-month {
    font-size: 12px;
    color: #94A3B8;
}

.records-route {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.records-airport {
    text-align: center;
}

.records-code {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.records-name {
    font-size: 12px;
    color: #64748B;
}

.records-plane {
    color: #64748B;
    font-size: 20px;
}

.records-details {
    display: flex;
    gap: 20px;
}

.records-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #94A3B8;
}

.records-detail i {
    font-size: 16px;
    color: #00D4FF;
}

.records-actions {
    display: flex;
    gap: 8px;
}

.records-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.15);
    border-radius: 8px;
    color: #00D4FF;
    font-size: 16px;
    transition: all 0.3s ease;
}

.records-btn:hover {
    background: rgba(0, 102, 255, 0.3);
}

.records-empty {
    text-align: center;
    padding: 60px;
    color: #94A3B8;
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }

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

    .profile-flight-item,
    .records-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .records-details {
        flex-wrap: wrap;
        gap: 12px;
    }

    .records-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .records-filter-group {
        flex-direction: column;
    }

    .auth-card {
        padding: 24px;
    }
}
