/* New Rant Style - Replacing Boxed Look with Flow */

.new-rant-style {
    max-width: 800px;
    margin: 4rem auto;
    text-align: left;
    color: #e2e8f0;
}

.rant-lead {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #94a3b8;
}

.rant-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--error-color);
    text-shadow: 2px 2px #500;
    margin: 3rem 0;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.new-rant-style p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.new-rant-style strong {
    color: white;
    font-weight: 700;
}

/* Code Snippet in Rant */
.code-snippet {
    background: #000;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
    font-family: var(--font-code);
    font-size: 1.2rem;
    color: var(--accent-color);
    overflow-x: auto;
}

/* Highlights */
.highlight-small {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--accent-color);
    display: inline-block;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.highlight-medium {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-align: center;
    margin: 3rem 0;
    opacity: 0.8;
}

/* Alternatives List */
.alternatives {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.alternatives h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.alternatives ul {
    list-style: none;
    padding: 0;
}

.alternatives li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #cbd5e1;
}

.alternatives li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.alternatives strong {
    color: var(--accent-color);
}

.final-word {
    font-size: 1.5rem;
    color: #fff;
    margin-top: 4rem;
    text-align: center;
}

.new-rant-style .rant-title.highlight {
    background: none;
    -webkit-text-fill-color: initial;
    background-clip: border-box;
    -webkit-background-clip: border-box;
    color: var(--error-color);
    text-align: center;
    animation: glitch-anim 2.5s infinite reverse;
}

/* Mobile Adjustments for new rant */
@media (max-width: 600px) {
    .rant-title {
        font-size: 2.5rem;
    }
    
    .new-rant-style p {
        font-size: 1.1rem;
    }
}
