/* ===== CONTACT FORM STYLES ===== */
.contact-section {
    min-height: 100vh;
    padding: clamp(120px, 15vh, 160px) clamp(20px, 5vw, 60px) clamp(40px, 6vh, 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 255, 228, 0.05) 0%, rgba(58, 134, 255, 0.05) 100%);
}

.contact-content {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 6vh, 60px);
}

.contact-header {
    text-align: left;
}

.contact-title {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 50%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.contact-line-accent {
    background: linear-gradient(180deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
    box-shadow: 0 0 10px rgba(6, 255, 228, 0.5);
}

.contact-form-container {
    padding: clamp(32px, 5vh, 48px);
}

.contact-form-container:hover {
    border-color: rgba(6, 255, 228, 0.3);
    box-shadow: 0 8px 32px rgba(6, 255, 228, 0.15);
}

.contact-form-container::before {
    background: linear-gradient(90deg, transparent, rgba(6, 255, 228, 0.1), transparent);
}

.contact-form {
    display: grid;
    gap: clamp(24px, 3.5vh, 32px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 24px);
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 300;
    color: var(--white);
    font-family: var(--font-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(6, 255, 228, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(6, 255, 228, 0.15);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 48px;
}

.form-select option {
    background: var(--black);
    color: var(--white);
    padding: 8px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-primary);
}

.form-submit {
    margin-top: clamp(16px, 2vh, 24px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(6, 255, 228, 0.4);
}

.form-note {
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    text-align: left;
}

.required {
    color: rgba(255, 0, 110, 0.8);
}

.back-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Form Success/Error States */
.form-message {
    padding: 16px 20px;
    border-radius: 12px;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    font-weight: 300;
    margin-bottom: 24px;
    border: 1px solid;
    backdrop-filter: blur(20px);
}

.form-message.success {
    background: rgba(6, 255, 228, 0.1);
    border-color: rgba(6, 255, 228, 0.3);
    color: var(--neon-cyan);
}

.form-message.error {
    background: rgba(255, 0, 110, 0.1);
    border-color: rgba(255, 0, 110, 0.3);
    color: var(--neon-pink);
}

/* ===== 404 ERROR PAGE STYLES ===== */
.error-section {
    min-height: 100vh;
    padding: var(--section-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.05) 0%, rgba(255, 122, 0, 0.05) 100%);
}

.error-content {
    max-width: 600px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 6vh, 60px);
}

.error-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 3vh, 30px);
}

.error-number {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 100;
    line-height: 0.9;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-orange) 50%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 50px rgba(255, 0, 110, 0.3);
}

.error-title {
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-orange) 50%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    text-align: left;
}

.error-line-accent {
    background: linear-gradient(180deg, var(--neon-pink) 0%, var(--neon-orange) 100%);
    box-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.error-suggestions {
    padding: clamp(28px, 4vh, 40px);
    text-align: left;
}

.error-suggestions:hover {
    border-color: rgba(255, 0, 110, 0.3);
    box-shadow: 0 8px 32px rgba(255, 0, 110, 0.15);
}

.error-suggestions::before {
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.1), transparent);
}

.suggestions-title {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 300;
    margin-bottom: clamp(20px, 3vh, 24px);
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.suggestion-links {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vh, 16px);
}

.suggestion-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: clamp(0.9rem, 2vw, 1rem);
    cursor: pointer;
}

.back-link {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-primary);
    width: 100%;
    justify-content: flex-start;
}

.suggestion-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 0, 110, 0.3);
    color: var(--white);
    transform: translateX(4px);
}

.link-icon {
    font-size: 1.2em;
    flex-shrink: 0;
}

.link-text {
    font-weight: 300;
}

/* ===== CONTENT INDEX STYLES ===== */
.content-archive-section {
    padding: clamp(120px, 15vh, 160px) clamp(20px, 5vw, 60px) clamp(60px, 10vh, 100px);
    min-height: 100vh;
}

.content-archive-section .section-title {
    margin-bottom: clamp(40px, 6vh, 60px);
}

.content-archive-section .section-title span {
    background: var(--gradient-three-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-grid-archive {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2.5vh, 20px);
}

.content-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.content-item-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--shimmer-cyan), transparent);
    transition: left 0.8s ease;
}

.content-item-link:hover::before {
    left: 100%;
}

.content-item-link:hover {
    transform: translateY(-3px);
    border-color: rgba(6, 255, 228, 0.3);
    box-shadow: 0 8px 32px rgba(6, 255, 228, 0.1);
}

.content-item-link .content-card {
    padding: clamp(20px, 3vw, 28px);
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(12px, 2vw, 16px);
    align-items: center;
    margin-bottom: 8px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-icon {
    width: 14px;
    height: 14px;
    fill: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.meta-text {
    font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.card-title {
    font-size: clamp(1.2rem, 2.4vw, 1.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
    margin-bottom: 10px;
    display: inline;
    
    background: var(--gradient-cyan-blue), var(--gradient-purple-pink);
    background-size: 100% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 400ms ease;
}

.content-item-link:hover .card-title {
    background-size: 0 1px, 100% 1px;
}

.card-description {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-weight: 300;
}

/* ===== CONTENT DETAIL PAGE STYLES ===== */
.content-header {
    margin-bottom: clamp(40px, 6vh, 60px);
}

.content-header .card-meta {
    margin-bottom: 16px;
    opacity: 0.6;
}

.content-header .meta-icon {
    width: 12px;
    height: 12px;
    fill: rgba(255, 255, 255, 0.4);
}

.content-header .meta-text {
    font-size: clamp(0.75rem, 1.3vw, 0.85rem);
    color: rgba(255, 255, 255, 0.5);
}

.content-header .section-title {
    margin-bottom: clamp(20px, 3vh, 30px);
}

.content-video {
    margin-bottom: clamp(60px, 8vh, 80px);
}

.content-video .glass-card {
    padding: 0;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.content-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.content-body {
    padding-bottom: clamp(40px, 6vh, 60px);
}

.content-body h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 200;
    margin-bottom: clamp(30px, 5vh, 40px);
}

.content-body h2 span {
    background: var(--gradient-three-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-body h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: clamp(16px, 2.5vh, 20px);
    margin-top: clamp(20px, 3vh, 40px);
    color: rgba(255, 255, 255, 0.95);
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
    background-size: 100% 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    padding-bottom: 4px;
}

.content-body p, li {
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: clamp(16px, 2.5vh, 24px);
}

.content-body strong {
    color: var(--white);
    font-weight: 400;
}

/* ===== RELATED CONTENT SECTION ===== */
.related-content-section {
    margin-top: clamp(20px, 3vh, 50px);
    margin-bottom: clamp(60px, 8vh, 100px);
}

.related-content-header {
    margin-bottom: clamp(20px, 3vh, 30px);
}

.related-content-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 200;
    margin: 0;
}

.related-content-title span {
    background: var(--gradient-three-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.related-content-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2.5vh, 20px);
}

/* Replace the footer section in your sub.css with these updated styles */

/* ===== FOOTER STYLES ===== */
.content-footer-dramatic {
    margin-top: clamp(80px, 10vh, 120px);
    position: relative;
}

.footer-header-section {
    max-width: var(--container-max-width);
    margin: 0 auto;
    margin-bottom: clamp(60px, 8vh, 80px);
}

.footer-main-title {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 100;
    line-height: 1.1;
    margin-bottom: clamp(24px, 4vh, 40px);
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 35%, var(--neon-purple) 70%, var(--neon-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
    letter-spacing: -0.02em;
}

.footer-description p {
    font-size: clamp(1.1rem, 2.4vw, 1.4rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-description .service-item {
    color: var(--white);
    font-weight: 400;
    text-decoration: none;
}

.footer-cta-section {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    gap: clamp(24px, 4vw, 40px);
}

/* Keep side-by-side until 480px */
@media (min-width: 481px) {
    .footer-cta-section {
        grid-template-columns: 1fr 1fr;
    }
}

.cta-box {
    position: relative;
    border-radius: 20px;
    padding: clamp(24px, 4vh, 40px) clamp(20px, 3vw, 32px);
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2.5vh, 24px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(30px);
    border: 1px solid transparent;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 20%, var(--box-glow) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, var(--box-glow-secondary) 0%, transparent 60%),
        linear-gradient(135deg, var(--box-bg) 0%, var(--box-bg-alt) 100%);
    opacity: 0.1;
    transition: opacity 0.6s ease;
    z-index: -2;
}

.cta-box::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--box-border), transparent 50%, var(--box-border-alt));
    border-radius: 21px;
    z-index: -3;
    opacity: 0.3;
    transition: opacity 0.6s ease;
}

.cta-box:hover::before {
    opacity: 0.25;
}

.cta-box:hover::after {
    opacity: 0.6;
}

.cta-box:hover {
    transform: translateY(-4px) scale(1.005);
}

/* Primary Box - Blue/Purple Theme (not cyan) */
.cta-box.primary {
    --box-bg: rgba(58, 134, 255, 0.08);
    --box-bg-alt: rgba(131, 56, 236, 0.06);
    --box-glow: rgba(58, 134, 255, 0.4);
    --box-glow-secondary: rgba(131, 56, 236, 0.3);
    --box-border: rgba(58, 134, 255, 0.4);
    --box-border-alt: rgba(131, 56, 236, 0.2);
    background: rgba(58, 134, 255, 0.04);
}

.cta-box.primary:hover {
    box-shadow: 
        0 20px 60px rgba(58, 134, 255, 0.35),        /* Increased opacity from 0.15 to 0.25 */
        0 0 40px rgba(131, 56, 236, 0.18),           /* Increased from 0.1 to 0.18 */
        0 8px 32px rgba(0, 0, 0, 0.6),               /* Added darker shadow for boundary definition */
        inset 0 1px 0 rgba(255, 255, 255, 0.15);     /* Increased inner highlight */
}

/* Secondary Box - Purple/Pink Theme */
.cta-box.secondary {
    --box-bg: rgba(131, 56, 236, 0.08);
    --box-bg-alt: rgba(255, 0, 110, 0.06);
    --box-glow: rgba(131, 56, 236, 0.4);
    --box-glow-secondary: rgba(255, 0, 110, 0.3);
    --box-border: rgba(131, 56, 236, 0.4);
    --box-border-alt: rgba(255, 0, 110, 0.2);
    background: rgba(131, 56, 236, 0.04);
}

.cta-box.secondary:hover {
    box-shadow: 
        0 20px 60px rgba(131, 56, 236, 0.35),        /* Increased opacity from 0.15 to 0.25 */
        0 0 40px rgba(255, 0, 110, 0.18),            /* Increased from 0.1 to 0.18 */
        0 8px 32px rgba(0, 0, 0, 0.4),               /* Added darker shadow for boundary definition */
        inset 0 1px 0 rgba(255, 255, 255, 0.15);     /* Increased inner highlight */
}

.cta-box h3 {
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    font-weight: 200;
    margin: 0;
    line-height: 1.3;
    position: relative;
}

/* Wrap headers in spans for more dramatic gradients */
.cta-box.primary h3 span {
    background: linear-gradient(135deg, 
        rgba(6, 255, 228, 0.95) 0%,      /* More saturated cyan with higher opacity */
        var(--neon-blue) 100%       /* Full opacity blue */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(6, 255, 228, 0.3);  /* Added subtle glow */
    font-weight: 300;  /* Slightly heavier weight */
}

.cta-box.secondary h3 span {
    background: linear-gradient(135deg, 
        rgba(131, 56, 236, 1) 0%,        /* Full opacity purple */
        rgba(255, 0, 110, 0.95) 100%     /* More saturated pink with higher opacity */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(131, 56, 236, 0.3);  /* Added subtle glow */
    font-weight: 300;  /* Slightly heavier weight */
}

.cta-box p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    flex-grow: 1;
}

.cta-button {
    padding: clamp(12px, 1.8vh, 16px) clamp(24px, 3.5vw, 36px);
    border-radius: 50px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 2;
    overflow: hidden;
    letter-spacing: 0.02em;
    align-self: flex-start;
    border: 1px solid transparent;
}

.cta-button::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(135deg, var(--btn-bg) 0%, var(--btn-bg-alt) 100%);
    border-radius: 50px;
    transition: all 0.6s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.cta-button:hover::after {
    left: 100%;
}

/* Primary Button - Blue to Purple */
.cta-button.primary {
    --btn-bg: var(--neon-blue);
    --btn-bg-alt: var(--neon-purple);
    color: var(--white);
}

.cta-button.primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(58, 134, 255, 0.4),
        0 0 30px rgba(131, 56, 236, 0.3);
}

/* Secondary Button - Purple to Pink */
.cta-button.secondary {
    --btn-bg: var(--neon-purple);
    --btn-bg-alt: var(--neon-pink);
    color: var(--white);
}

.cta-button.secondary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(131, 56, 236, 0.4),
        0 0 30px rgba(255, 0, 110, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-box {
        padding: clamp(20px, 3.5vh, 28px) clamp(16px, 2.5vw, 24px);
        gap: clamp(14px, 2vh, 18px);
    }
    
    .cta-box h3 {
        font-size: clamp(1.1rem, 2.4vw, 1.3rem);
    }
    
    .cta-box p {
        font-size: clamp(0.85rem, 1.8vw, 1rem);
    }
    
    .cta-button {
        padding: clamp(10px, 1.5vh, 14px) clamp(20px, 3vw, 28px);
        font-size: clamp(0.85rem, 1.8vw, 1rem);
    }
}

@media (max-width: 480px) {
    .footer-cta-section {
        grid-template-columns: 1fr;
        gap: clamp(20px, 3vh, 28px);
    }
    
    .cta-box {
        padding: clamp(24px, 4vh, 32px);
        gap: clamp(16px, 2.5vh, 20px);
    }
}

/* ===== PRESENTATION CONTENT STYLES ===== */

.slide-image {
    margin: clamp(32px, 5vh, 48px) 0;
    text-align: left;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: 66%;
}

.slide-image:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.slide-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.slide-image:hover img {
    transform: scale(1.02);
}

/* Quote/Paraphrase Blocks - Using Homepage Vertical Gradient Line Style */
.text-with-accent {
    position: relative;
    padding: clamp(24px, 3vw, 32px) clamp(48px, 6vw, 64px);
    margin: clamp(28px, 4.5vh, 36px) 0;
    background: rgba(0, 0, 0, .3);
}

.text-with-accent .line-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
    box-shadow: 0 0 10px rgba(255, 255, 255, .2);
}

.text-with-accent p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0px 0px clamp(16px, 2.5vh, 24px) 0px;
}

.text-with-accent p:last-child {
    margin: 0px;
}


.footnote-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 200;
    transition: color 0.2s ease;
    font-size: 60%;
    vertical-align: super;
    cursor: pointer;
    scroll-margin-top: clamp(110px, 10vh, 135px);
    outline: none;
}

.text-with-accent .footnote-link {
    display: block;
}

.footnote-link:hover {
    color: var(--neon-pink);
}

.text-with-accent ul {
    margin: clamp(16px, 2.5vh, 24px);
}

.text-with-accent li {
    list-style-type: none;
    margin-bottom: 0;
}

/* Dramatic Lists */
.dramatic-list {
    margin: clamp(32px, 5vh, 48px) 0;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: clamp(14px, 2vh, 18px) clamp(24px, 4vh, 36px);
    position: relative;
    overflow: hidden;
    max-width: 66%;
}

.list-item {
    position: relative;
    padding: clamp(12px, 2vh, 16px) 0;
    padding-left: clamp(36px, 5vw, 48px);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--neon-pink) 30%, var(--neon-purple) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    font-size: 1.4em;
}

.list-item:hover {
    color: var(--white);
    padding-left: clamp(42px, 6vw, 56px);
}

.list-item:hover::before {
    color: var(--neon-blue);
    text-shadow: 0 0 15px rgba(58, 134, 255, 0.7);
}


/* Citations Section */
.footnotes-section {
    margin-top: clamp(60px, 8vh, 80px);
    padding-top: clamp(40px, 6vh, 60px);
}

.footnote {
    margin-bottom: clamp(16px, 2.5vh, 20px);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    align-items: flex-start;
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    font-weight: 300;
}

.footnote a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
    scroll-margin-top: clamp(110px, 10vh, 135px);
    background: rgba(255, 255, 255, .05);
    padding: 5px;
    border-radius: 4px;
}

.footnote a:nth-child(1) {
    background: none;
    text-decoration: underline;
}

.footnote a:hover {
    color: var(--neon-pink);
}

.footnote a:target {
    background: var(--neon-pink);
    outline: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slide-image {
        width: 100%;
    }

    .text-with-accent {
        padding: clamp(12px, 3vw, 16px) clamp(6px, 2vw, 10px) clamp(12px, 3vw, 16px) clamp(32px, 5vw, 40px);
    }
    
    .slide-image {
        margin: clamp(24px, 4vh, 32px) 0;
    }
    
    .dramatic-list {
        padding: clamp(20px, 3vh, 28px);
        margin: clamp(24px, 4vh, 32px) 0;
        max-width: 100%;
    }
    
    .list-item {
        padding-left: clamp(32px, 4vw, 40px);
        font-size: clamp(0.95rem, 2vw, 1.1rem);
    }
    
    .footnotes-section {
        margin-top: clamp(40px, 6vh, 60px);
        padding-top: clamp(32px, 5vh, 40px);
    }

}

/* Mobile-specific adjustments */
@media (max-width: 480px) {
    
    .text-with-accent {
        padding-left: clamp(28px, 4vw, 32px);
    }
    
    .list-item {
        padding-left: clamp(28px, 4vw, 32px);
    }
}
