:root {
    --primary-red: #E71D36;
    --dark-bg: #121212;
    --card-bg: #1E1E1E;
    --text-color: #EDEDED;
    --glow-color: rgba(231, 29, 54, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #000 100%);
    pointer-events: none;
    z-index: 0;
}

.container {
    z-index: 1;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

header {
    margin-top: 2rem;
    text-align: center;
}

h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 4rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-red);
    text-shadow: 0 0 10px var(--glow-color);
    letter-spacing: 2px;
    position: relative;
    text-transform: uppercase;
}

h1::before {
    content: attr(data-text); /* Not used here directly but good for effects */
}

/* Simulate the ST title style */
.glow {
    animation: flicker 3s infinite alternate;
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 0 0 10px var(--glow-color), 0 0 20px var(--glow-color);
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

.subtitle {
    display: block;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    -webkit-text-stroke: 0;
    margin-top: 1rem;
    letter-spacing: 5px;
    text-shadow: none;
    opacity: 0.8;
}

.demo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.quote-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 100%;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transition: transform 0.2s;
}

.quote-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 40px rgba(231, 29, 54, 0.2);
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.quote-author {
    text-align: right;
    font-weight: bold;
    color: var(--primary-red);
}

button {
    background-color: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

button:hover {
    background-color: var(--primary-red);
    color: #fff;
    box-shadow: 0 0 20px var(--glow-color);
}

.usage-section {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 8px;
}

.usage-section h2 {
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.code-block {
    background-color: #000;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    font-family: monospace;
    margin: 1rem 0;
    border: 1px solid #333;
}

.endpoints {
    margin-top: 2rem;
}

.endpoints ul {
    list-style-type: none;
    margin-top: 1rem;
}

.endpoints li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    border-left: 2px solid var(--primary-red);
}

code {
    color: #aaa;
}

footer {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.footer-link {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary-red);
}

.separator {
    color: #444;
}

/* Mobile responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 3rem;
    }
}
