/* Base Theme */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1b1b1b;
    margin: 0;
    padding: 0;
    color: #f0f0f0;
}

a {
    color: #66ccff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #99eaff;
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-color: #1b1b1b;
    padding: 5px 5px 5px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.logo-large {
    width: 350px;
    height: auto;
    transition: all 0.3s ease;
}

.hero.shrink .logo-large {
    width: 100px;
}

.hero {
    transition: all 0.3s ease;
}

.page-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    /* border-bottom: 2px solid #555; */
    padding-bottom: 0.5rem;
}

.hero-title {
    font-size: 2.6em;
    font-weight: bold;
    background: linear-gradient(to right, #ff6ec4, #7873f5, #00ffd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

/* Content */
.content {
    padding: 30px 40px;
}

/* Sections */
.section {
    margin-bottom: 40px;
}

.section-title {
    margin-bottom: 12px;
    font-weight: bold;
}

.section-title.primary {
    font-size: 1.5em;
    color: #b639ff;
}

.section-title.secondary {
    font-size: 1.2em;
    color: #ffaa99;
}

.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-list li {
    margin: 10px 0;
}

/* Footer */
footer {
    text-align: center;
    font-size: 0.9em;
    color: #777;
    margin-top: 60px;
}

/* Big Red Button Styling */
#apiCallButton {
    background-color: #e60023;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 0, 50, 0.3);
    transition: all 0.2s ease;
    margin-top: 20px;
}

#apiCallButton:hover {
    background-color: #ff0033;
    box-shadow: 0 6px 16px rgba(255, 0, 50, 0.4);
    transform: scale(1.03);
}

#apiCallButton:active {
    transform: scale(0.98);
    background-color: #cc001f;
}

.logo-large {
    transition: transform 0.6s ease;
    transform-origin: center;
}

.logo-flipped {
    transform: rotateY(180deg);
}

/*

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5em;
    background: linear-gradient(90deg, #ff00cc, #00ffff, #ff00cc);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShine 6s linear infinite;
    margin: 0;
    text-shadow: 0 0 10px #ff00cc, 0 0 20px #00ffff;
}

@keyframes gradientShine {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}
 */