* {
    box-sizing: border-box;
}
.main-header-topline {
    background: linear-gradient(180deg, #1c3f70 0%, #0d64c8 100%);
}

html {
    height: 100%;
    width: 100%;
}
:root {
    --header-height: 76px;
}
  
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: Helvetica, sans-serif;
    background-color:rgba(100, 149, 237, 0.25);
}

a {
    text-decoration: none;
}

h1 {
    text-align: center;
}

h2 {
    text-align: center;
    margin: 2rem 0rem;
    font-size: 4rem;
}
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 0;
    padding: 0.55rem 2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #d62828, #f77f00);
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    animation: pulse 1.6s ease-in-out infinite;
}
.live-badge::before {
    content: "";
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%;
    background: #fff;
    margin-right: 0.5rem;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
    animation: ping 1.6s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: translateY(0); box-shadow: 0 0 0 rgba(246, 110, 0, 0.4); }
    50% { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(246, 110, 0, 0.45); }
    100% { transform: translateY(0); box-shadow: 0 0 0 rgba(246, 110, 0, 0.4); }
}

@keyframes ping {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.feature-subhead {
    /* margin: -0.25rem 0 0.5rem; */
    font-size: 1.3rem;
}

ul {
    padding-inline-start: 20px;
    list-style-type: circle;
}

li {
    text-align: left;
    padding-bottom: 0.5rem;
    font-size: 2.5rem;
}

.main-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 2;
    min-height: var(--header-height);
}

.main-header-topline {
    background-color: dodgerblue;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 1.2rem;
}
.main-header-left {
    display: flex;
    align-items: center;
    /* gap: 0.8rem; */
}

.main-header-bottomline {
    padding: 0.8rem 1rem;
    text-align: center;
    vertical-align: middle;
    justify-content: center;
        /* font-variant: small-caps; */
    letter-spacing: 0.15rem;
    font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    background-color: rgb(80, 79, 79);
    color:aliceblue;
    font-weight: 600;
    font-size: 2.2rem;
}
  
.main-logo {
    flex-shrink: 1;
    width: auto;
    display: flex;
    align-items: center;
}
  
#main-title {
    display: block;
    height: auto;
    max-height: 56px;
    max-width: 100%;
    width: auto;
    cursor: pointer;
}
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease;
}
.nav-toggle:hover,
.nav-toggle:focus {
    background: rgba(255, 255, 255, 0.12);
}
.nav-toggle:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.7);
    outline-offset: 2px;
}
.nav-toggle.is-open {
    transform: translateY(1px);
}
.nav-toggle-bar {
    display: none;
}
.nav-toggle-icon {
    width: 28px;
    height: 28px;
}
.nav-toggle line {
    stroke: #fff;
    stroke-width: 2.4;
    stroke-linecap: round;
}
.nav-toggle.is-open line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
    transform-origin: 12px 7px;
}
.nav-toggle.is-open line:nth-child(2) {
    opacity: 0;
}
.nav-toggle.is-open line:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
    transform-origin: 12px 17px;
}
  
.main-nav {
    flex-shrink: 1;
    margin-bottom: 2px;
    width: auto;
    justify-content: right;
}
  
  
.main-nav__items {
    font-size: 1.8rem;
    flex-shrink: 1;
    padding-inline-start: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    list-style-type: none;
    display: block;
    text-align: right;
}

.main-nav__item {
    display: inline;
    text-align: left;
    flex-shrink: 1;
    padding: 1rem 0.5rem;
    list-style: none;
}
.main-nav__item a {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    color: #f5fbff;
    font-weight: 600;
    border-radius: 12px;
    background: transparent;
}
.main-nav__item a:hover,
.main-nav__item a:focus {
    color: #fff;
    background: transparent;
}
.main-header-topline .main-nav__items {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.mobile-nav {
    position: fixed;
    inset: 0;
    display: none;
    align-items: flex-start;
    justify-content: flex-start;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999;
    padding-top: var(--header-height);
}
.mobile-nav.open {
    display: flex;
}
.mobile-nav__panel {
    width: min(82vw, 420px);
    height: calc(100% - var(--header-height));
    background: rgb(30, 144, 255, 0.9);
    color: #fff;
    padding: 1.5rem 1.6rem 2.4rem;
    box-shadow: 8px 0 26px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.mobile-nav__items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mobile-nav__item {
    list-style: none;
    padding-bottom: 0;
}
.mobile-nav__item a {
    display: block;
    padding: 3rem 0.25rem;
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.mobile-nav__item:last-child a {
    border-bottom: none;
}
.mobile-nav__item a:hover,
.mobile-nav__item a:focus {
    color: #e6f4ff;
}
body.nav-open {
    overflow: hidden;
}

#section-analytics .analytics-launch-wrapper {
    display: grid;
    justify-content: center;
    margin-bottom: 1.5rem;
}

#section-analytics .analytics-launch {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #0d783f, #1fa36a);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(13, 120, 63, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#section-analytics .analytics-launch:hover,
#section-analytics .analytics-launch:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 120, 63, 0.35);
}

#section-analytics .analytics-icon {
    font-size: 1.2rem;
}


.container-feature {
    display: flex;
    width: 100%;
    padding: 20px;
    align-items: center;
    margin-top: 30px;
    background-color: rgb(255, 227, 194, 0.8);
}

.feature-image {
    width: 30%;
    min-width: 240px;
    display: flex;
    align-content: center;
    justify-content: center;
}
.feature-landscape-image {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.feature-image img {
    max-width: 90%;
    height: auto;
    max-height: 400px;
    border-radius: 2rem;
    border-style: solid;
    border-color: grey;
}
.feature-landscape-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 420px;
    border-radius: 1.5rem;
    border-style: solid;
    border-color: grey;
    display: block;
}

.feature-list {
    padding-left: 20px;
    width: 70%;
}
.feature-callouts {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}
#feature-live .feature-callouts {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
}
.feature-live-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.feature-live-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feature-live-subline {
    margin: 0.6rem 0 0;
    font-size: 1.8rem;
    color: #0b3852;
    text-align: center;
}

.feature-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #0e6f9a, #2092c5);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(22, 112, 151, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-cta:hover,
.feature-cta:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(22, 112, 151, 0.35);
}

.feature-cta-icon {
    font-size: 1.3rem;
}
.feature-cta-live {
    padding: 0.8rem 1.5rem;
    font-size: 2rem;
}
.feature-live-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 520px;
}
.feature-live-logo img {
    display: block;
    width: 140px;
    height: 140px;
    flex: 0 0 140px;
    object-fit: contain;
    background: transparent;
}
.feature-live-logo-name {
    font-size: 3rem;
    font-weight: 700;
    color: #0b3852;
    flex: 1 1 auto;
    text-align: left;
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .main-nav {
        display: none;
    }
    .mobile-nav__panel {
        width: 100%;
    }
    .main-header-topline {
        padding: 0.7rem 1rem;
    }
    .main-header-bottomline {
        font-size: 3rem;
    }
    #main-title {
        max-height: 46px;
    }
    #section-main h1 {
        font-size: 3rem;
    }
    #feature-live .feature-image {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.8rem 0 1.4rem;
        text-align: center;
    }
    #feature-live .feature-image .live-badge {
        font-size: 3.2rem;
    }
    .feature-live-logo {
        max-width: 100%;
    }
    .feature-live-logo img {
        width: 120px;
        height: 120px;
        flex-basis: 120px;
    }
    .feature-live-logo-name {
        font-size: 3.5rem;
    }
    .feature-subhead {
        font-size: 2.5rem;
    }
}
.feature-landscape-list {
    padding-left: 20px;
    flex: 1 0 50%;
}

footer {
    padding-bottom: 2rem;
}

#streaming-trends-list {
    list-style-type: disc;;
}

#streaming-trends-list li {
    font-size: 2rem;
    padding-top: 0.5rem;
}

.main-footer hr {
    width: 96%;
    margin-bottom: 0rem;
}
.main-footer-bottomline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3rem;
}
.main-footer-bottomline p {
    font-size: 2rem;
    color:rgb(80, 79, 79);
    margin: 1rem 2rem;
}
.main-footer-bottomline a:link,
.main-footer-bottomline a:visited {
    color:rgb(80, 79, 79);
    text-decoration: none;
}

#img-apta-tour img {
    border-style: none;
    max-width: 80%;
}


@media only screen and (orientation: portrait) {
    .container-feature {
        flex-direction: column;
        padding: 20px 5px;
    }
    .feature-image,
    .feature-landscape-image {
        padding: 0px;
        width: auto;
    }
    .feature-list,
    .feature-landscape-list {
        padding: 0px;
        width: 90%;
        text-align: center;
    }

    .feature-callouts {
        justify-content: center;
    }
}

@media only screen and (orientation: landscape) {
    h2 {
        text-align: left;
    }
}


@media only screen and (max-width: 600px) and (orientation: portrait) {
    html {
        font-size: 6px;
    }
}
  
@media only screen and (min-width: 600px) and (orientation: portrait) {
    html {
        font-size: 7px;
    }
}
  
@media only screen and (min-width: 768px) and (orientation: portrait) {
    html {
        font-size: 9px;
    }
}
  
@media only screen and (min-width: 992px) and (orientation: portrait) {
    html {
        font-size: 12px;
    }
}
  
@media only screen and (min-width: 1200px) and (orientation: portrait) {
    html {
        font-size: 16px;
    }
}
    
  
/* LANDSCAPE GROWTH */
@media only screen and (max-width: 600px) and (orientation: landscape) {
    html {
        font-size: 6px;
    }
}
  
@media only screen and (min-width: 600px) and (orientation: landscape) {
    html {
        font-size: 7px;
    }
}
  
@media only screen and (min-width: 768px) and (orientation: landscape) {
    html {
        font-size: 9px;
    }
}
  
@media only screen and (min-width: 992px) and (orientation: landscape) {
    html {
        font-size: 10px;
    }
}
  
@media only screen and (min-width: 1200px) and (orientation: landscape) {
    html {
        font-size: 11px;
    }
}
  
@media only screen and (min-width: 1500px) and (orientation: landscape) {
    html {
        font-size: 12px;
    }
}
  
@media only screen and (min-width: 1800px) and (orientation: landscape) {
    html {
        font-size: 13px;
    }
}
  
@media only screen and (min-width: 2100px) and (orientation: landscape) {
    html {
        font-size: 14px;
    }
}
  
@media only screen and (min-width: 2500px) and (orientation: landscape) {
    html {
        font-size: 15px;
    }
}
  
@media only screen and (min-width: 2800px) and (orientation: landscape) {
    html {
        font-size: 16px;
    }
}
#section-analytics .section-header-with-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.analytics-launch {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #0d783f, #1fa36a);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(13, 120, 63, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.analytics-launch:hover,
.analytics-launch:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 120, 63, 0.35);
    color: #fff;
}

.analytics-icon {
    font-size: 1.4rem;
}
