﻿



@keyframes borderGlow {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.5;
    }
}

.title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #ffffff;
}





.button {
    border: 2px solid #444;
    color: #ffffff;
    padding: 18px 32px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 8px;
    min-width: 160px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

   


.notification {
    position: fixed;
    background: #A3811F;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    padding: 24px 24px;
    width: 380px;
    height: 120px;
    z-index: 1000;
    border-radius: 8px;
    border: 2px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    pointer-events: all;
    animation: slideInFromRight 0.5s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.notificationWarning {
    position: fixed;
    background: #9096AA;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    padding: 24px 24px;
    width: 380px;
    height: 120px;
    z-index: 1000;
    border-radius: 8px;
    border: 2px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    pointer-events: all;
    animation: slideInFromRight 0.5s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
}

.notification.success::before {
    background: linear-gradient(135deg, #574922, #574922);
}

.notification.warning::before {
    background: linear-gradient(135deg, #f9ca24, #f39c12);
}

.notification.error::before {
    background: linear-gradient(135deg, #ff6b6b, #e74c3c);
}

.notification.info::before {
    background: linear-gradient(135deg, #574922, #574922);
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.notification-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #574922, #574922);
    border: 2px solid #666;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    flex-shrink: 0;
}

.notification.success .notification-icon {
    color: #E8EAEE;
    border-color: #D3D5DD;
    background: #A3811F;
}

.notification.warning .notification-icon {
    color: #f9ca24;
    border-color: #f9ca24;
    background: #9096AA;
}

.notification.error .notification-icon {
    color: #ff6b6b;
    border-color: #ff6b6b;
}

.notification.info .notification-icon {
    color: #45b7d1;
    border-color: #45b7d1;
}

.notification-title {
    font-weight: 600;
    color: #ffffff;
    font-size: 1.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 2;
}

.notification-message {
    font-weight: 450;
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 1.60rem;
}

.close-button {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #000000;
    font-size: 18px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

    .close-button:hover {
        background: rgba(255, 107, 107, 0.1);
        color: #ff6b6b;
    }


