.tip {
    margin: 2rem 0;
    padding: 1.8rem;
    background-color: rgba(241, 249, 235, 0.1);
    border-left: 5px solid #a3d168;
    border-radius: 12px;
    color: #a3d168;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(163, 209, 104, 0.1), var(--tech-glow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    border: var(--tech-border);
}

.tip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #a3d168;
    transition: height 0.4s ease;
}

.tip::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(163, 209, 104, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.tip:hover::after {
    opacity: 1;
}

.tip:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(163, 209, 104, 0.2), var(--tech-glow-hover);
}

.tip:hover::before {
    height: 100%;
}

.tip p {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.tip p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .tip {
        font-size: 0.95rem;
        padding: 1.5rem;
        border-radius: 12px;
    }
}