/* Enhanced Feature Graphics Styles */

/* Device Mockup */
.device-mockup {
    position: relative;
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    background: linear-gradient(145deg, #111133, #0e0b30);
    padding: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.device-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.15);
}

.device-frame {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.device-screen {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: var(--dark);
    position: relative;
}

.screen-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-illustration {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 15px;
}

.device-reflection {
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    height: 20%;
    background: linear-gradient(to bottom, 
                rgba(255,255,255,0.15), 
                rgba(255,255,255,0));
    transform: skewY(-5deg);
    pointer-events: none;
}

/* Website Builder Illustration */
.website-builder-demo {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 10px;
    background-color: rgba(20, 20, 50, 0.8);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.builder-sidebar {
    background-color: rgba(110, 0, 255, 0.2);
    border-radius: 8px 0 0 8px;
    position: relative;
}

.builder-sidebar::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(110, 0, 255, 0.4);
}

.builder-sidebar::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 120px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
}

.builder-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 5px;
}

.builder-section {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.header {
    height: 30px;
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.header::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 80px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.hero {
    height: 80px;
    display: flex;
    padding: 8px;
    gap: 8px;
}

.hero-text {
    flex: 1;
    background-color: rgba(110, 0, 255, 0.15);
    border-radius: 4px;
    position: relative;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 60%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.hero-text::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 10px;
    width: 40%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

.hero-image {
    width: 60px;
    background-color: rgba(0, 209, 255, 0.15);
    border-radius: 4px;
}

.features {
    flex: 1;
    display: flex;
    gap: 6px;
    padding: 8px;
}

.feature-box {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    position: relative;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 50%;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.feature-box::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 8px;
    width: 70%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

/* CRM & Automation Illustration */
.crm-dashboard {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 8px;
    background-color: rgba(20, 20, 50, 0.8);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.crm-sidebar {
    background-color: rgba(140, 70, 255, 0.15);
    border-radius: 8px 0 0 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.crm-menu-item {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
}

.crm-menu-item.active {
    background-color: rgba(110, 0, 255, 0.4);
}

.crm-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
}

.crm-header {
    height: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.crm-search {
    width: 120px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.crm-actions {
    width: 70px;
    height: 16px;
    background-color: rgba(110, 0, 255, 0.2);
    border-radius: 8px;
}

.crm-stats {
    display: flex;
    gap: 8px;
}

.crm-stat-card {
    flex: 1;
    height: 50px;
    background-color: rgba(110, 0, 255, 0.1);
    border-radius: 6px;
    position: relative;
}

.crm-stat-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.crm-stat-card::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 10px;
    width: 60%;
    height: 10px;
    background-color: rgba(110, 0, 255, 0.3);
    border-radius: 5px;
}

.crm-table {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    padding: 6px;
    gap: 6px;
}

.crm-row {
    height: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.crm-row.header {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Chatbot Illustration */
.chatbot-interface {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgba(20, 20, 50, 0.8);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.chatbot-header {
    height: 40px;
    background-color: rgba(110, 0, 255, 0.3);
    position: relative;
}

.chatbot-header::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 15px;
    width: 16px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

.chatbot-header::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 40px;
    width: 100px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.chatbot-messages {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}

.message {
    max-width: 70%;
    height: 20px;
    border-radius: 12px;
    position: relative;
}

.message.bot {
    align-self: flex-start;
    background-color: rgba(110, 0, 255, 0.2);
}

.message.user {
    align-self: flex-end;
    background-color: rgba(0, 209, 255, 0.2);
}

.message.bot.typing {
    width: 60px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    animation: typing-animation 1.5s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) {
    animation-delay: 0s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-animation {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-4px);
    }
}

.chatbot-input {
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    position: relative;
}

.chatbot-input::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 15px;
    right: 50px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.chatbot-input::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 15px;
    width: 16px;
    height: 16px;
    background-color: rgba(110, 0, 255, 0.4);
    border-radius: 50%;
}

/* Analytics Illustration */
.analytics-dashboard {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: rgba(20, 20, 50, 0.8);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.analytics-header {
    height: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    position: relative;
}

.analytics-header::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
    width: 80px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.analytics-charts {
    display: flex;
    gap: 8px;
    height: 80px;
}

.chart {
    flex: 2;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.line-chart::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(90deg, 
                rgba(110, 0, 255, 0.1) 0%, 
                rgba(110, 0, 255, 0.4) 50%,
                rgba(0, 209, 255, 0.6) 100%);
    clip-path: polygon(0 100%, 10% 70%, 20% 80%, 30% 40%, 40% 30%, 50% 60%, 60% 50%, 70% 20%, 80% 40%, 90% 10%, 100% 30%, 100% 100%);
}

.chart-metrics {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric {
    flex: 1;
    background-color: rgba(0, 209, 255, 0.1);
    border-radius: 6px;
    position: relative;
}

.metric::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 50%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.metric:first-child {
    background-color: rgba(110, 0, 255, 0.1);
}

.analytics-funnel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.funnel-stage {
    height: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
    border-radius: 4px;
}

.stage-1 {
    width: 100%;
    background-color: rgba(110, 0, 255, 0.4);
}

.stage-2 {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(140, 70, 255, 0.4);
}

.stage-3 {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(0, 209, 255, 0.4);
}

.stage-4 {
    width: 30%;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(0, 233, 135, 0.4);
}

/* Community Tools Illustration */
.community-interface {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgba(20, 20, 50,.8);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.community-header {
    height: 40px;
    background-color: rgba(255, 61, 112, 0.2);
    position: relative;
}

.community-header::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 15px;
    width: 100px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.community-content {
    flex: 1;
    display: flex;
    gap: 1px;
}

.community-sidebar {
    width: 70px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.community-group {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
}

.community-group.active {
    background-color: rgba(255, 61, 112, 0.3);
}

.community-posts {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}

.post {
    display: flex;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
}

.post-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 61, 112, 0.2);
}

.post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.post-header {
    height: 10px;
    width: 60%;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.post-text {
    height: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.post-actions {
    height: 20px;
    width: 80px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    position: relative;
}

.post-actions::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 10px;
    width: 60px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Health Tracker Illustration */
.health-tracker-interface {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: rgba(20, 20, 50, 0.8);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.health-header {
    height: 40px;
    background-color: rgba(255, 61, 112, 0.2);
    border-radius: 6px;
    position: relative;
}

.health-header::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 15px;
    width: 100px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.health-metrics {
    display: flex;
    gap: 10px;
}

.health-metric-card {
    flex: 1;
    height: 90px;
    background-color: rgba(255, 61, 112, 0.1);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.metric-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 61, 112, 0.3);
}

.metric-value {
    width: 60%;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.metric-label {
    width: 70%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.health-chart {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.health-chart::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, 
                rgba(255, 61, 112, 0.1) 0%, 
                rgba(255, 61, 112, 0.3) 50%,
                rgba(255, 132, 0, 0.2) 100%);
    clip-path: polygon(0 80%, 10% 40%, 20% 60%, 30% 30%, 40% 70%, 50% 20%, 60% 40%, 70% 10%, 80% 50%, 90% 30%, 100% 60%, 100% 100%, 0 100%);
    animation: pulse 3s infinite alternate;
}

.health-insights {
    height: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
    position: relative;
}

.health-insights::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 70%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.health-insights::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 15px;
    width: 50%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

/* Web3 Interface */
.web3-interface {
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 50, 0.8);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 10px;
    position: relative;
}

.web3-wallet {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wallet-header {
    height: 40px;
    background-color: rgba(0, 233, 135, 0.15);
    border-radius: 8px;
    position: relative;
}

.wallet-header::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 15px;
    width: 16px;
    height: 16px;
    background-color: rgba(0, 233, 135, 0.5);
    border-radius: 50%;
}

.wallet-header::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 40px;
    width: 100px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.wallet-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wallet-balance {
    height: 60px;
    background-color: rgba(0, 233, 135, 0.1);
    border-radius: 8px;
    position: relative;
    padding: 10px;
}

.wallet-balance::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 233, 135, 0.3);
    border-radius: 50%;
}

.wallet-balance::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 55px;
    width: 80px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.wallet-tokens {
    display: flex;
    gap: 8px;
    padding: 5px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
}

.token {
    flex: 1;
    height: 40px;
    border-radius: 6px;
    background-color: rgba(255, 132, 0, 0.15);
    position: relative;
}

.token:nth-child(2) {
    background-color: rgba(255, 61, 112, 0.15);
}

.token:nth-child(3) {
    background-color: rgba(0, 209, 255, 0.15);
}

.token::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
}

.wallet-nfts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 5px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
}

.nft {
    aspect-ratio: 1;
    border-radius: 6px;
    background-color: rgba(110, 0, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.nft:nth-child(2) {
    background-color: rgba(255, 61, 112, 0.1);
}

.nft:nth-child(3) {
    background-color: rgba(0, 233, 135, 0.1);
}

.nft:nth-child(4) {
    background-color: rgba(255, 132, 0, 0.1);
}

.nft::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    border-radius: 4px;
}

.wallet-actions {
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
}

.wallet-actions::before {
    content: '';
    width: 80px;
    height: 24px;
    background-color: rgba(0, 233, 135, 0.3);
    border-radius: 12px;
}

.wallet-actions::after {
    content: '';
    width: 80px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

/* Enhanced animations */
.feature-content.active .feature-illustration {
    animation: appear 0.6s ease-out forwards;
}

@keyframes appear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Special glowing effect for health tracker */
.health-illustration::after {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    width: 80%;
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, 
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 61, 112, 0.7) 30%,
                rgba(255, 61, 112, 0.7) 70%,
                rgba(255, 255, 255, 0) 100%);
    clip-path: polygon(0 0, 10% 50%, 20% 0, 30% 100%, 40% 0, 50% 50%, 60% 0, 70% 100%, 80% 0, 90% 50%, 100% 0);
    animation: heartbeat 2s infinite ease-in-out;
}

@keyframes heartbeat {
    0%, 100% {
        height: 2px;
        top: 40%;
    }
    50% {
        height: 8px;
        top: 37%;
    }
}

/* Special web3 geometric animations */
.web3-illustration::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 233, 135, 0.1);
    border-radius: 16px;
    animation: rotate 20s linear infinite;
}

.web3-illustration::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: rgba(255, 132, 0, 0.2);
    border-radius: 16px;
    animation: counter-rotate 15s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes counter-rotate {
    from {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(-315deg);
    }
}

/* Active hover states */
.feature-illustration .device-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateZ(20px);
    box-shadow: 20px 20px 40px -20px rgba(0, 0, 0, 0.5);
}

/* Screen content glow on hover */
.device-mockup:hover .screen-content {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(110, 0, 255, 0.3);
}