body { font-family: 'Inter', sans-serif; }
.gradient-text {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.shine {
    position: relative;
    overflow: hidden;
}
.shine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
            to right,
            rgba(255,255,255,0) 0%,
            rgba(255,255,255,0.1) 50%,
            rgba(255,255,255,0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.6s;
    opacity: 0;
}
.shine:hover::before {
    animation: shine 0.6s ease-in-out;
}
@keyframes shine {
    0% { transform: translateX(-100%) rotate(30deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) rotate(30deg); opacity: 0; }
}
.pulse-glow {
    animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}
.anchors-block {
    margin-bottom: 20px;
}
.seo-content p,
.seo-content ol,
.seo-content ul {
    margin-bottom: 15px;
}
.seo-content h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}