/* Styling for Dope-AR links */
.dope-ar-link {
    display: inline-block;
    color: #ff9500;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding: 0 2px;
    transition: all 0.3s ease;
}

.dope-ar-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #ff9500;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.dope-ar-link:hover {
    color: #ffac3b;
    text-shadow: 0 0 8px rgba(255, 149, 0, 0.3);
}

.dope-ar-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Special styling for footer Dope-AR link */
.footer-bottom .dope-ar-link {
    padding: 3px 8px;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.15), rgba(255, 149, 0, 0.05));
    box-shadow: 0 0 5px rgba(255, 149, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.footer-bottom .dope-ar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff9500;
    transform: scaleX(0.3);
    transition: transform 0.3s ease;
}

.footer-bottom .dope-ar-link:hover {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.2), rgba(255, 149, 0, 0.1));
    box-shadow: 0 0 10px rgba(255, 149, 0, 0.4);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.footer-bottom .dope-ar-link:hover::after {
    transform: scaleX(1);
}

/* Dope-AR badge for About page */
.dope-ar-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: linear-gradient(135deg, #222, #333);
    border-radius: 4px;
    margin: 0 3px;
    border: 1px solid rgba(255, 149, 0, 0.3);
    transition: all 0.3s ease;
    color: #ff9500;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.dope-ar-badge:hover {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border-color: rgba(255, 149, 0, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    color: #ffac3b;
}

.dope-ar-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 149, 0, 0.1), transparent);
    transform: translateX(-100%);
}

.dope-ar-badge:hover::after {
    animation: shine 1.5s infinite;
}

@keyframes shine {
    100% {
        transform: translateX(100%);
    }
}
