* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arimo, sans-serif;
}

body {
    background-color: #0B0D17;
    color: #D1D5DC;
    line-height: 1.4;
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background-color: #1F1F1F;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00B8DB 0%, #155DFC 100%);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: white;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-text .title {
    color: white;
    font-size: 16px;
    font-weight: 400;
}

.brand-text .subtitle {
    color: #00D3F2;
    font-size: 12px;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 12px;
}

.nav-links a {
    color: #D1D5DC;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    padding: 6px 12px;
}

.nav-links a:hover {
    color: #00D3F2;
}

.page-title {
    padding: 80px 20px;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 360px;
}

.page-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(11, 13, 23, 0.04) 0%,
        rgba(11, 13, 23, 0.60) 35%,
        rgba(11, 13, 23, 0.85) 60%,
        rgba(11, 13, 23, 0.90) 100%
    );
    z-index: 0;
    pointer-events: none;
}

.page-title h1 {
    position: relative;
    z-index: 1;
    font-size: 48px;
    font-weight: bold;
    color: white;
}

.page-title p:first-of-type {
    position: relative;
    z-index: 1;
    color: #00D3F2;
    font-size: 18px;
    margin-top: 12px;
}

.page-title p:last-of-type {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 14px;
    margin-top: 12px;
}

#home-title {
    background-image: url('assets/home-bg.jpg');
}

#frontrow-title {
    background-image: url('assets/frontrow-bg.jpg');
}

#graphics-title {
    background-image: url('assets/graphics-bg.jpg');
}

#replay-title {
    background-image: url('assets/replay-bg.jpg');
}

#cameras-title {
    background-image: url('assets/cameras-bg.jpg');
}

#engineering-title {
    background-image: url('assets/engineering-bg.jpg');
}

#resources-title {
    background-image: url('assets/resources-bg.png') 
}

.content {
    padding: 40px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: #1F2937;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.card h3 {
    color: #D1D5DC;
    margin-bottom: 12px;
}

.card p {
    color: #9CA3AF;
    font-size: 14px;
    line-height: 20px;
}

footer {
    width: 100%;
    padding: 24px;
    background-color: #111827;
    color: #9CA3AF;
    text-align: center;
    font-size: 14px;
}

.text-accent {
    color: #00D3F2;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.quick-links button {
    background-color: rgba(30, 41, 57, 0.8);
    color: white;
    border: 1px solid rgba(0, 184, 218, 0.3);
    border-radius: 10px;
    padding: 12px 24px;
    font-family: Arimo, sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.quick-links button:hover {
    background-color: rgba(0, 184, 218, 0.8);
    border-color: rgba(0, 184, 218, 1);
}

.live-badge {
    width: auto;
    height: auto;
    padding-left: 16px;
    padding-right: 16px;
    background: rgba(231, 0, 11, 0.90);
    border-radius: 33554400px;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    display: inline-flex;
    position: relative;
    z-index: 1;
}

.live-badge-dot {
    width: 8px;
    height: 8px;
    position: relative;
    opacity: 0.89;
    background: white;
    border-radius: 33554400px;
}

.live-badge-content {
    flex: 1 1 0;
    height: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.live-badge-text {
    text-align: center;
    color: white;
    font-size: 14px;
    font-family: Arimo;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 20px;
    letter-spacing: 0.70px;
    word-wrap: break-word;
}

.section-header {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.section-title {
    color: white;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 16px;
}

.section-subtitle {
    color: #99A1AF;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 24px;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 768px) {
    .feature-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .feature-card {
        flex: 1 1 calc(50% - 12px);
        min-width: 300px;
    }
}

@media (min-width: 1100px) {
    .feature-card {
        flex: 1 1 calc(25% - 18px);
        min-width: 0;
    }
}

.feature-card {
    background: #1E2939;
    border-radius: 14px;
    border: 1px solid rgba(0, 184, 218, 0.30);
    padding: 25px;
    position: relative;
}

.signal-flow {
    margin-top: 24px;
}
.signal-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
}
.signal-row .feature-card {
    flex: 0 0 200px;
    min-width: 200px;
}
.signal-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D3F2;
    font-size: 24px;
    min-width: 32px;
    font-weight: 400;
}
@media (max-width: 767px) {
    .signal-row {
        flex-direction: column;
    }
    .signal-row .feature-card {
        flex: 1 1 auto;
        min-width: 0;
    }
    .signal-arrow {
        transform: rotate(90deg);
        min-height: 24px;
    }
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 40px;
    position: relative;
}

.feature-card-icon.blue {
    color: #00D3F2;
}

.feature-card-icon.orange {
    color: #FF8904;
}

.feature-card-icon.green {
    color: #05DF72;
}

.feature-card-icon.purple {
    background: linear-gradient(135deg, #AD46FF 0%, #E60076 100%);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card h3 {
    color: white;
    font-size: 20px;
    font-family: Arimo;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 24px;
}

.feature-card p {
    color: #99A1AF;
    font-size: 16px;
    font-family: Arimo;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
}

.feature-card .quote {
    color: #6A7282;
    font-size: 14px;
    font-family: Arimo;
    font-style: italic;
    font-weight: 400;
    line-height: 20px;
}

.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 4px 8px;
    background: rgba(0, 184, 219, 0.20);
    border-radius: 4px;
    color: #00D3F2;
    font-size: 12px;
    font-family: Arimo;
    font-weight: 400;
    line-height: 16px;
}

.subtitle-small {
    color: #99A1AF;
    font-size: 14px;
    margin-bottom: 12px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.feature-list-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-list-checkmark {
    min-width: 20px;
    color: #00D3F2;
    margin-top: 2px;
}

.feature-list-title {
    color: white;
    font-size: 16px;
    margin-bottom: 4px;
}

.feature-list-desc {
    color: #6A7282;
    font-size: 14px;
}

.section-spacing {
    margin-top: 48px;
}

.section-title-center {
    color: white;
    font-size: 24px;
    text-align: center;
    margin-bottom: 32px;
}

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

.slowmo-card {
    background: #101828;
    padding: 25px;
    border-radius: 10px;
}

.slowmo-card.blue {
    border: 1px solid rgba(0, 184, 218, 0.20);
}

.slowmo-card.purple {
    border: 1px solid rgba(172, 70, 255, 0.20);
}

.slowmo-label {
    font-size: 16px;
    margin-bottom: 8px;
}

.slowmo-label.blue {
    color: #00D3F2;
}

.slowmo-label.purple {
    color: #C27AFF;
}

.slowmo-fps {
    color: white;
    font-size: 30px;
    margin-bottom: 8px;
}

.slowmo-desc {
    color: #99A1AF;
    font-size: 14px;
    margin-bottom: 8px;
}

.progress-bar {
    height: 8px;
    background: #1E2939;
    border-radius: 100px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
}

.progress-fill.blue {
    width: 65%;
    background: #00B8DB;
}

.progress-fill.purple {
    width: 100%;
    background: #AD46FF;
}

.highlight-section {
    background: linear-gradient(135deg, #1E2939 0%, #101828 100%);
    padding: 32px;
    border-radius: 14px;
    border: 1px solid rgba(0, 184, 218, 0.30);
    margin-top: 48px;
}

.highlight-title {
    color: white;
    font-size: 24px;
    margin-bottom: 24px;
}

.highlight-desc {
    color: #99A1AF;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
}

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

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-item {
    text-align: center;
}

.step-badge {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: rgba(0, 184, 219, 0.20);
    border-radius: 50%;
    border: 2px solid #00B8DB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    color: #00D3F2;
    font-size: 20px;
    font-weight: 400;
}

.step-title {
    color: white;
    font-size: 16px;
    margin-bottom: 4px;
}

.step-desc {
    color: #6A7282;
    font-size: 12px;
}

