*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

/* Disable smooth scroll on mobile for better performance */
@media (max-width: 768px) {
    html {
        scroll-behavior: auto;
    }
}


:root {
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --primary-accent: #0078d4;
    --text-primary: rgba(255, 255, 255, 0.9);
    --blur-intensity: blur(12px);
    --gold-primary: #e7ca93;
    --gold-secondary: #d4be94;
    --purple-primary: #b39ddb;
    --purple-light: #d1c4e9;
}

/* Body Styles */
body {
    background-image: linear-gradient(to right top, #5c5157, #5c4f5a, #594e5e, #554d62, #4d4d67, #48526d, #395b75, #3a6579, #406e7b, #49777c, #567f7d);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Container Styles */
.container {
    max-width: 1200px;
    width: 100%;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 0;
    padding-bottom: 1em;
    margin: 0 auto;
}

/* Header Styles */
.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 2rem 1rem 1rem;
    position: relative;
    text-align: center;
}

.index-welcome-msg {
    margin: 0.5em 0 0.4em 0;
    letter-spacing: 0.2em;
    font-size: clamp(1.2rem, 8vw, 4rem);
    font-weight: 900;
    font-family: 'Orbitron', 'Exo 2', sans-serif;
    display: inline-block;
    vertical-align: middle;
    background: linear-gradient(135deg, #e7ca93 0%, #d4be94 50%, #e7ca93 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: headerGlow 3s ease-in-out infinite;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 30px rgba(231, 202, 147, 0.4));
}

/* Reduce animations on mobile */
@media (max-width: 768px) {
    .index-welcome-msg {
        animation: none;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }
}

@keyframes headerGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(231, 202, 147, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(231, 202, 147, 0.5));
    }
}

.subheading {
    margin: 0.5em auto 1em;
    padding: 0 1rem;
    letter-spacing: 0.25em;
    font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-family: 'Orbitron', 'Exo 2', sans-serif;
    cursor: default;
    display: block;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-transform: uppercase;
    background: linear-gradient(135deg,
        #ffd700 0%,
        #ffed4e 25%,
        #ff6b9d 50%,
        #c44569 75%,
        #ffd700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.7))
            drop-shadow(0 0 20px rgba(255, 107, 157, 0.5))
            drop-shadow(0 0 40px rgba(255, 215, 0, 0.3));
    position: relative;
    animation: gradientShift 4s ease infinite;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Simplify effects on mobile */
@media (max-width: 768px) {
    .subheading {
        animation: none;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.7));
        background-position: 50% 50%;
    }
}

/* Optimize spacing for very small screens */
@media (max-width: 380px) {
    .subheading {
        margin: 0.25em auto 0.5em;
        padding: 0 0.5rem;
        font-size: clamp(0.9rem, 2vw, 1rem);
        letter-spacing: 0.15em;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.subheading::before {
    content: '⟨';
    margin-right: 0.4em;
    font-size: 1.2em;
    opacity: 0.9;
    animation: pulse 2s ease-in-out infinite;
}

.subheading::after {
    content: '⟩';
    margin-left: 0.4em;
    font-size: 1.2em;
    opacity: 0.9;
    animation: pulse 2s ease-in-out infinite;
}

.subheading:hover {
    transform: scale(1.08);
    animation-duration: 2s;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8))
            drop-shadow(0 0 30px rgba(255, 107, 157, 0.7))
            drop-shadow(0 0 50px rgba(255, 215, 0, 0.5));
}

/* Main Grid */
.main-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 24px;
    margin: 10px 0 40px 0;
}

@media (max-width: 568px) {
    .main-container {
        grid-template-columns: 1fr;
        margin: 10px 0 30px 0;
        gap: 20px;
    }
}

/* Box Container Styles */
.box-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    height: 18.125em;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
    transform: translateZ(0);
}

/* Card Logo Watermark (TV channel style) */
.card-logo {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    opacity: 0.75;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8))
            drop-shadow(0 0 4px rgba(255, 255, 255, 0.3))
            blur(0.3px);
    transition: all 0.3s ease;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 4px;
    backdrop-filter: blur(8px);
}

.box-container:hover .card-logo {
    opacity: 0.95;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.9))
            drop-shadow(0 0 8px rgba(231, 202, 147, 0.6))
            blur(0.2px);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
}

@media (max-width: 568px) {
    .card-logo {
        width: 32px;
        height: 32px;
        top: 10px;
        right: 10px;
        padding: 3px;
    }
}

.box-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.box-container:hover::before {
    opacity: 1;
}

.box-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .box-container {
        height: 15.625em;
    }
}

@media (max-width: 568px) {
    .box-container {
        height: 12.5em;
    }
}

/* Background Video Styles */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius:32px;
    will-change: transform;
    transform: translateZ(0);
}

/* Disable videos on mobile for better performance */
@media (max-width: 768px) {
    .background-video {
        display: none;
    }
}

/* Lottie Background Animation Styles */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
    display: none;
}

/* Show Lottie on mobile, hide on desktop */
@media (max-width: 768px) {
    .background-animation {
        display: block;
    }
}

/* Box Styles */
.box {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: rgba(6, 6, 6, 0.8);
    background: linear-gradient(135deg, rgba(0, 46, 60, 0.75) 0%, rgba(0, 46, 60, 0.65) 100%);
    backdrop-filter: blur(4px);
    padding: 20px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Remove backdrop-filter on mobile for better performance */
@media (max-width: 768px) {
    .box {
        backdrop-filter: none;
        background: linear-gradient(135deg, rgba(0, 46, 60, 0.88) 0%, rgba(0, 46, 60, 0.80) 100%);
    }

    .box:hover {
        backdrop-filter: none;
        background: linear-gradient(135deg, rgba(0, 46, 60, 0.92) 0%, rgba(0, 46, 60, 0.85) 100%);
    }
}

.box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(231, 202, 147, 0.15) 0%, transparent 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.box:hover::after {
    opacity: 1;
}

.box:hover {
    background: linear-gradient(135deg, rgba(0, 46, 60, 0.85) 0%, rgba(0, 46, 60, 0.75) 100%);
    backdrop-filter: blur(8px);
}

/* Primary box with pulse animation */
.box-primary {
    animation: subtlePulse 3s ease-in-out infinite;
}

/* Disable pulse animation on mobile */
@media (max-width: 768px) {
    .box-primary {
        animation: none;
    }
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(231, 202, 147, 0);
    }
    50% {
        box-shadow: 0 0 20px 4px rgba(231, 202, 147, 0.3);
    }
}

.box-text {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 4px;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.box-text-span {
    color: #e7ca93;
    font-weight: 900;
    display: block;
    font-size: clamp(1.5rem, 3vw, 3rem);
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7),
                 0 0 20px rgba(231, 202, 147, 0.4);
    transition: all 0.3s ease;
}

.box:hover .box-text-span {
    transform: scale(1.05);
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7),
                 0 0 30px rgba(231, 202, 147, 0.6);
}

/* // Instalation */
/* ====================
     Install Button Styles
     ==================== */
.floating-install {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 24px;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-intensity);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    font-weight: 600;
    z-index: 9999;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-install:hover {
    background: rgba(0, 120, 212, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 120, 212, 0.25);
    backdrop-filter: blur(16px);
}

.floating-install::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    z-index: -1;
}

/* 💫 Enhanced Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.03);
        opacity: 0.97;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ================
     Toast Styles
     ================ */
#toast {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-intensity);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    opacity: 0;
    z-index: 1001;
    transition: all 0.4s ease;
    font-family: 'Exo 2', sans-serif;
    font-weight: 500;
    transform: translateX(120%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

#toast.show {
    opacity: 1;
    transform: translateX(0);
}

#toast.hidden {
    opacity: 0;
    transform: translateX(120%);
}

/* ================
     Modal Styles
     ================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-intensity);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 90%;
    width: 400px;
    animation: modalEntrance 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes modalEntrance {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-message {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.modal-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-ok,
.modal-cancel {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.modal-ok {
    background: linear-gradient(45deg, #4CAF50cc, #45a049cc);
    color: white;
}

.modal-cancel {
    background: linear-gradient(45deg, #f44336cc, #d32f2fcc);
    color: white;
}

.modal-ok:hover,
.modal-cancel:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ================
     Noscript Warning
     ================ */
.noscript-warning {
    padding: 20px;
    text-align: center;
    background: #fff3cd;
    border-radius: 8px;
    margin: 20px;
}

.noscript-warning h3 {
    margin: 0 0 0.5rem 0;
    color: #856404;
}

.noscript-warning p {
    margin: 0;
    color: #856404;
}

/* ================
     Features Section
     ================ */
.features-section {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: clamp(2rem, 5vw, 3rem);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Simplify features section on mobile */
@media (max-width: 768px) {
    .features-section {
        backdrop-filter: blur(8px);
    }

    .features-section::before {
        display: none;
    }

    .features-section:hover {
        transform: none;
    }
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.features-section:hover::before {
    left: 100%;
}

.features-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.features-section h2 {
    color: #e7ca93;
    margin-bottom: 1.5rem;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    font-family: 'Orbitron', 'Exo 2', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    text-align: center;
    letter-spacing: 0.05em;
}

.features-section > p {
    color: #f5f5f5;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    text-align: left;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.features-section h3 {
    color: #d4be94;
    margin: 2rem 0 1.5rem;
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    font-weight: 700;
    font-family: 'Orbitron', 'Exo 2', sans-serif;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.05em;
}

.features-section ul {
    color: #f0f0f0;
    text-align: left;
    max-width: 100%;
    margin: 1rem 0;
    line-height: 2;
    list-style: none;
    padding-left: 0;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.features-section li {
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 12px;
    margin-bottom: 0.5rem;
    border-left: 2px solid transparent;
}

.features-section li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
    border-left-color: rgba(231, 202, 147, 0.5);
}

.feature-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    font-weight: bold;
    color: #e7ca93;
    text-shadow: 0 0 10px rgba(231, 202, 147, 0.6),
                 0 0 20px rgba(231, 202, 147, 0.3);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    font-family: 'Orbitron', monospace;
}

.features-section li:hover .feature-icon {
    transform: translateY(-50%) translateX(4px);
    text-shadow: 0 0 15px rgba(231, 202, 147, 0.8),
                 0 0 25px rgba(231, 202, 147, 0.5);
}

/* ================
     Site Footer
     ================ */
.site-footer {
    width: 100%;
    margin-top: 4rem;
    padding: 2.5rem 1.5rem 2rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(12px);
    text-align: center;
    border-top: 2px solid rgba(231, 202, 147, 0.2);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(231, 202, 147, 0.6), transparent);
    box-shadow: 0 0 12px rgba(231, 202, 147, 0.4);
}

.site-footer nav {
    margin-bottom: 1.5rem;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: clamp(1.2rem, 3vw, 2.5rem);
    flex-wrap: wrap;
    margin: 0;
}

.site-footer li {
    margin: 0;
}

.site-footer a {
    color: #d4be94;
    text-decoration: none;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.site-footer a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e7ca93, #d4be94);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(231, 202, 147, 0.6);
}

.site-footer a:hover {
    color: #e7ca93;
    text-shadow: 0 0 8px rgba(231, 202, 147, 0.5);
}

.site-footer a:hover::after {
    width: 100%;
}

.site-footer p {
    margin: 0;
    margin-top: 1rem;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    color: #b0b0b0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

@media (max-width: 568px) {
    .site-footer {
        padding: 2rem 1rem 1.5rem;
    }

    .site-footer ul {
        gap: 1rem;
    }
}

/* ================
     Reduced Motion Preferences
     Respect user's motion preferences
     ================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto !important;
    }
}

/* ================
     Touch Device Optimizations
     Disable hover effects on touch devices
     ================ */
@media (hover: none) and (pointer: coarse) {
    .box-container:hover {
        transform: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .box-container:hover::before {
        opacity: 0;
    }

    .box-container:hover .card-logo {
        opacity: 0.75;
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8))
                drop-shadow(0 0 4px rgba(255, 255, 255, 0.3))
                blur(0.3px);
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(8px);
    }

    .box:hover::after {
        opacity: 0;
    }

    .box:hover {
        background: linear-gradient(135deg, rgba(0, 46, 60, 0.75) 0%, rgba(0, 46, 60, 0.65) 100%);
        backdrop-filter: blur(4px);
    }

    .box:hover .box-text-span {
        transform: none;
        text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7),
                     0 0 20px rgba(231, 202, 147, 0.4);
    }

    .subheading:hover {
        transform: none;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.7));
    }

    .features-section:hover {
        transform: none;
    }

    .features-section li:hover {
        background: transparent;
        transform: none;
        border-left-color: transparent;
    }

    .features-section li:hover .feature-icon {
        transform: translateY(-50%);
        text-shadow: 0 0 10px rgba(231, 202, 147, 0.6),
                     0 0 20px rgba(231, 202, 147, 0.3);
    }

    .site-footer a:hover {
        color: #d4be94;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    }

    .site-footer a:hover::after {
        width: 0;
    }
}