/*common css*/
@font-face {
    font-family: "Noto Serif";
    src: url("/fonts/NotoSerif-Variable.ttf") format("truetype");
}
@font-face {
    font-family: "Outfit";
    src: url("/fonts/Outfit-Variable.ttf") format("truetype");
}
html {
    overflow-x: hidden;
}

body {
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    box-sizing: border-box;
    overflow-x: hidden;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

p,
a {
    font-family: "Outfit";
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 300;
}
a {
    color: #00c2ff;
    text-decoration: underline;
}

strong {
    font-weight: 700;
    letter-spacing: 0.07rem;
    color: #fff;
}

.cta-button {
    padding: 16px 32px;
    background: linear-gradient(-90deg, #00c2ff 0%, #00c2ff 100%);
    color: black;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-family: Outfit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: linear-gradient(-90deg, #ffff00 0%, #fc8704 100%);
    color: black;
    box-shadow: 0 0 40px rgba(255, 255, 0, 0.7);
}

.action-button {
    background-color: black;
    color: white;
    padding: 0.8rem 1.2rem;
    border: 2px solid #00c2ff;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.action-button:hover {
    background-color: white;
    color: black;
    border: 2px solid white;
}

.super-cta-button {
    padding: 16px 32px;
    background: linear-gradient(-90deg, #ffff00 0%, #fc8704 100%);
    color: black;
    border: none;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 700;
    font-family: Outfit;
    cursor: pointer;
    transition:
        box-shadow 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}

.super-cta-button:hover {
    background: linear-gradient(-90deg, #ff5734 0%, #4000ff 100%);
    color: white;
    box-shadow: 0 0 30px rgba(255, 255, 0, 1);
}

@media (max-width: 768px) {
    .cta-button,
    .action-button,
    .super-cta-button {
        width: 100%;
        text-align: center;
    }
}

ul {
    padding: 0;
}
li {
    font-family: "Outfit";
    color: #eaeaea;
    padding: 1rem;
    text-decoration: none;
    list-style: none;
}
h1,
h2 {
    letter-spacing: 0.1rem;
    font-family: "Outfit";
    color: #eaeaea;
}
h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-family: "Outfit";
    color: #eaeaea;
}

/* Shared Components */
.card-base {
    background: rgba(0, 194, 255, 0.1);
    border: 1px solid rgba(0, 194, 255, 0.4);
    border-radius: 16px;
    transition: all 0.1s ease;
}

.card-base:hover {
    background: rgba(0, 194, 255, 0.15);
    border-color: rgba(0, 194, 255, 0.6);
    box-shadow: 0 0px 50px rgba(0, 194, 255, 0.3);
}

.section-eyebrow {
    font-family: "Outfit", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
}
