.glow-violet:hover {
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.4);
}

.glass-card {
    background: rgba(26, 16, 46, 0.4);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-mask {
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.asymmetric-rule {
    height: 1px;
    background: linear-gradient(90deg, rgba(188, 19, 254, 0.5) 0%, transparent 100%);
}

/* Service Tile Hover Effects */
.service-tile {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-tile:hover {
    border-color: rgba(188, 19, 254, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(188, 19, 254, 0.15);
}

.service-tile:hover .service-bg {
    transform: scale(1.1);
    opacity: 0.8 !important;
}

.service-tile:hover .service-content {
    transform: translateY(-8px);
}

.service-tile:hover .service-line {
    width: 6rem !important;
    /* Expands from w-12 (3rem) */
    background-color: #fe003c;
    /* Accents to the red color */
}