.anm-3d-container {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transform: perspective(1000px);
    transition: transform 0.3s ease;
}

.anm-3d-container:hover {
    transform: perspective(1000px) translateZ(20px);
}

.anm-notification-card {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.anm-notification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.anm-notification-card a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
}

.anm-date {
    display: block;
    color: #eee;
    font-size: 0.9em;
}

.anm-new-alert {
    position: fixed;
    top: 10px;
    right: 10px;
    background: #ff4444;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.anm-new-badge {
    background: #ff4444;
    color: #fff;
    padding: 5px 10px;
    border-radius: 12px;
    margin-left: 10px;
}

.anm-button {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.anm-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.anm-login-container {
    max-width: 400px;
    margin: 50px auto;
    text-align: center;
}

.anm-form input[type="text"],
.anm-form input[type="password"],
.anm-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.anm-error {
    color: #ff4444;
    margin: 10px 0;
}

.anm-toggle-password {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    margin-left: -40px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .anm-3d-container {
        padding: 10px;
    }
    
    .anm-notification-card {
        padding: 10px;
    }
    
    .anm-login-container {
        max-width: 90%;
    }
}