/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23FFD700" opacity="0.8"/><circle cx="80" cy="40" r="0.5" fill="%23FFD700" opacity="0.6"/><circle cx="40" cy="80" r="1.5" fill="%23FFD700" opacity="0.9"/><circle cx="90" cy="10" r="0.8" fill="%23FFD700" opacity="0.7"/><circle cx="10" cy="90" r="1.2" fill="%23FFD700" opacity="0.8"/></svg>') repeat;
    animation: twinkle 20s linear infinite;
    z-index: -2;
}

.twinkling {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    z-index: -1;
}

/* Floating particles */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFD700;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; animation-duration: 16s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; animation-duration: 24s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; animation-duration: 19s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; animation-duration: 21s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; animation-duration: 17s; }
.particle:nth-child(9) { left: 90%; animation-delay: 16s; animation-duration: 23s; }

/* Golden waves */
.golden-waves {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    animation: wave 8s ease-in-out infinite;
    z-index: -1;
}

.golden-waves::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, transparent 30%, rgba(255, 215, 0, 0.08) 50%, transparent 70%);
    animation: wave 6s ease-in-out infinite reverse;
}

.golden-waves::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 30%, rgba(255, 215, 0, 0.06) 50%, transparent 70%);
    animation: wave 10s ease-in-out infinite;
}

@keyframes twinkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: glow 4s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.birthday-number {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
    position: relative;
}

/* Krug je uklonjen za čistiji izgled */

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* Rotacija kruga je uklonjena */

/* Responsive adjustments for birthday number */
@media (max-width: 768px) {
    .birthday-number {
        font-size: 6rem;
    }
}

@media (max-width: 480px) {
    .birthday-number {
        font-size: 4.5rem;
    }
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    animation: slideInUp 1s ease-out;
}

.celebration-text {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 600;
    animation: slideInUp 1s ease-out 0.2s both;
}

.date-time, .location {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #FFD700;
    animation: slideInUp 1s ease-out 0.4s both;
}

.date-time i, .location i {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.location {
    position: relative;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
    padding: 8px 15px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid #FFD700;
    border-radius: 20px;
    color: #FFD700;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.map-link:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.map-link i {
    font-size: 0.8rem;
    animation: none;
}

/* Dress Code Section */
.dress-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

.dress-code i {
    font-size: 1.5rem;
    color: #FFD700;
}

.dress-code span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.info-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.info-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #FFA500, #FFD700);
}

.info-btn i {
    font-size: 1rem;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
section {
    margin: 80px 0;
    padding: 60px 40px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #FFD700;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s;
}

section:hover::before {
    left: 100%;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* RSVP Form */
.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #333;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Dropdown opcije */
.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px;
}

.form-group select option:hover {
    background: #FFD700;
    color: #000000;
}

/* Hover efekat na dropdown opcijama */
.form-group select option:focus {
    background: #FFD700;
    color: #000000;
}

/* Bolje stilove za dropdown */
.form-group select {
    cursor: pointer;
}

.form-group select:focus option:checked {
    background: #FFD700;
    color: #000000;
}

.form-group select option:checked {
    background: #333;
    color: #FFD700;
}

/* Selected opcija */
.form-group select option:selected {
    background: #FFD700;
    color: #000000;
}

/* Placeholder opcija */
.form-group select option[value=""] {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Disabled opcija */
.form-group select option:disabled {
    color: rgba(255, 255, 255, 0.4);
    background: #333;
}

/* Required dropdown */
.form-group select:required:invalid {
    color: rgba(255, 255, 255, 0.6);
}

/* Valid dropdown */
.form-group select:valid {
    color: #ffffff;
}

/* Invalid dropdown */
.form-group select:invalid {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

/* Posebni stilovi za dropdown focus */
.form-group select:focus {
    background: rgba(255, 255, 255, 0.2);
}

/* Hover efekat na dropdown */
.form-group select:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFD700;
}

/* Dropdown ikonica */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

/* Firefox stilovi */
@-moz-document url-prefix() {
    .form-group select {
        background-image: none;
        padding-right: 15px;
    }
}

/* Internet Explorer stilovi */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .form-group select {
        background-image: none;
        padding-right: 15px;
    }
}

/* Edge browser stilovi */
@supports (-ms-ime-align: auto) {
    .form-group select {
        background-image: none;
        padding-right: 15px;
    }
}

/* Safari browser stilovi */
@media not all and (min-resolution:.001dpcm) { 
    @supports (-webkit-appearance:none) {
        .form-group select {
            background-image: none;
            padding-right: 15px;
        }
    }
}

/* Chrome browser stilovi */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .form-group select {
        background-image: none;
        padding-right: 15px;
    }
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    border-radius: 50px;
    color: #000000;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Guests Section */
.guests-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid #FFD700;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.8;
}

.guests-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

.guest-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border-left: 4px solid #FFD700;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.guest-info {
    display: flex;
    flex-direction: column;
}

.guest-name {
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 5px;
}

.guest-message {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.guest-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-coming {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.status-not-coming {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid #F44336;
}

/* Share Section */
.share-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
}

.share-btn.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.share-btn.email {
    background: linear-gradient(45deg, #EA4335, #C62828);
}

.share-btn.copy {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000000;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Admin Section */
.admin-section {
    background: rgba(0, 0, 0, 0.9) !important;
    border: 3px solid #FFD700 !important;
}

.admin-controls {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid #FFD700;
}

.admin-controls h3 {
    color: #FFD700;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.admin-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.admin-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
}

.admin-btn.share {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000000;
}

.admin-btn.save {
    background: linear-gradient(45deg, #4CAF50, #45a049);
}

.admin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Save Section (Hidden) */
.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
}

.download-btn.da {
    background: linear-gradient(45deg, #4CAF50, #45a049);
}

.download-btn.ne {
    background: linear-gradient(45deg, #f44336, #da190b);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    margin: 15% auto;
    padding: 0;
    border: 2px solid #FFD700;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: #FFD700;
    font-size: 1.8rem;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #FFD700;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.modal-body p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #ffffff;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 80px;
    border-top: 1px solid #333;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .birthday-number {
        font-size: 5rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .celebration-text {
        font-size: 1.2rem;
    }
    
    .date-time, .location {
        flex-direction: column;
        gap: 10px;
    }
    
    .map-link {
        margin-left: 0;
        margin-top: 10px;
        justify-content: center;
        width: 100%;
        max-width: 250px;
    }
    
    .dress-code {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px;
    }
    
    section {
        padding: 40px 20px;
        margin: 60px 0;
    }
    
    .guests-stats {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .admin-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .admin-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFA500;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    border-top-color: #FFD700;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Notification types */
.notification.success {
    background: #4CAF50;
}

.notification.error {
    background: #f44336;
}

.notification.info {
    background: #2196F3;
}

/* Notification animations */
.notification {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Notification icons */
.notification span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Success pulse animation */
@keyframes successPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Success notification special effects */
.notification.success {
    border: 2px solid #45a049;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

/* Error notification special effects */
.notification.error {
    border: 2px solid #da190b;
    box-shadow: 0 0 20px rgba(244, 67, 54, 0.3);
}

/* Info notification special effects */
.notification.info {
    border: 2px solid #1976d2;
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.3);
}

/* Notification hover effects */
.notification:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Bounce animation for notifications */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Rotation animation for notifications */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(2deg);
    }
    75% {
        transform: rotate(-2deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Scale animation for notifications */
@keyframes scale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Brightness animation for notifications */
@keyframes brightness {
    0% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
    100% {
        filter: brightness(1);
    }
}

/* Gradient background for notifications */
.notification.success {
    background: linear-gradient(45deg, #4CAF50, #45a049);
}

.notification.error {
    background: linear-gradient(45deg, #f44336, #da190b);
}

.notification.info {
    background: linear-gradient(45deg, #2196F3, #1976d2);
}

/* Border styles for notifications */
.notification.success {
    border: 2px solid #45a049;
}

.notification.error {
    border: 2px solid #da190b;
}

.notification.info {
    border: 2px solid #1976d2;
}

/* Shadow styles for notifications */
.notification.success {
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.5);
}

.notification.error {
    box-shadow: 0 0 30px rgba(244, 67, 54, 0.5);
}

.notification.info {
    box-shadow: 0 0 30px rgba(33, 150, 243, 0.5);
}

/* Text color styles for notifications */
.notification.success {
    color: #ffffff;
}

.notification.error {
    color: #ffffff;
}

.notification.info {
    color: #ffffff;
}

/* Font weight styles for notifications */
.notification.success {
    font-weight: bold;
}

.notification.error {
    font-weight: bold;
}

.notification.info {
    font-weight: bold;
}

/* Font size styles for notifications */
.notification.success {
    font-size: 1.1rem;
}

.notification.error {
    font-size: 1.1rem;
}

.notification.info {
    font-size: 1.1rem;
}

/* Letter spacing styles for notifications */
.notification.success {
    letter-spacing: 0.5px;
}

.notification.error {
    letter-spacing: 0.5px;
}

.notification.info {
    letter-spacing: 0.5px;
}

/* Text shadow styles for notifications */
.notification.success {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.notification.error {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.notification.info {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Backdrop filter styles for notifications */
.notification.success {
    backdrop-filter: blur(10px);
}

.notification.error {
    backdrop-filter: blur(10px);
}

.notification.info {
    backdrop-filter: blur(10px);
}

/* Border radius styles for notifications */
.notification.success {
    border-radius: 15px;
}

.notification.error {
    border-radius: 15px;
}

.notification.info {
    border-radius: 15px;
}

/* Padding styles for notifications */
.notification.success {
    padding: 20px 25px;
}

.notification.error {
    padding: 20px 25px;
}

.notification.info {
    padding: 20px 25px;
}

/* Margin styles for notifications */
.notification.success {
    margin: 20px;
}

.notification.error {
    margin: 20px;
}

.notification.info {
    margin: 20px;
}

/* Z-index styles for notifications */
.notification.success {
    z-index: 10001;
}

.notification.error {
    z-index: 10001;
}

.notification.info {
    z-index: 10001;
}

/* Position styles for notifications */
.notification.success {
    position: fixed;
}

.notification.error {
    position: fixed;
}

.notification.info {
    position: fixed;
}

/* Top styles for notifications */
.notification.success {
    top: 20px;
}

.notification.error {
    top: 20px;
}

.notification.info {
    top: 20px;
}

/* Right styles for notifications */
.notification.success {
    right: 20px;
}

.notification.error {
    right: 20px;
}

.notification.info {
    right: 20px;
}

/* Width styles for notifications */
.notification.success {
    width: auto;
}

.notification.error {
    width: auto;
}

.notification.info {
    width: auto;
}

/* Height styles for notifications */
.notification.success {
    height: auto;
}

.notification.error {
    height: auto;
}

.notification.info {
    height: auto;
}

/* Overflow styles for notifications */
.notification.success {
    overflow: hidden;
}

.notification.error {
    overflow: hidden;
}

.notification.info {
    overflow: hidden;
}

/* White space styles for notifications */
.notification.success {
    white-space: nowrap;
}

.notification.error {
    white-space: nowrap;
}

.notification.info {
    white-space: nowrap;
}

/* Text overflow styles for notifications */
.notification.success {
    text-overflow: ellipsis;
}

.notification.error {
    text-overflow: ellipsis;
}

.notification.info {
    text-overflow: ellipsis;
}

/* Cursor styles for notifications */
.notification.success {
    cursor: pointer;
}

.notification.error {
    cursor: pointer;
}

.notification.info {
    cursor: pointer;
}

/* User select styles for notifications */
.notification.success {
    user-select: none;
}

.notification.error {
    user-select: none;
}

.notification.info {
    user-select: none;
}

/* Pointer events styles for notifications */
.notification.success {
    pointer-events: auto;
}

.notification.error {
    pointer-events: auto;
}

.notification.info {
    pointer-events: auto;
}

/* Transition styles for notifications */
.notification.success {
    transition: all 0.3s ease;
}

.notification.error {
    transition: all 0.3s ease;
}

.notification.info {
    transition: all 0.3s ease;
}

/* Transform origin styles for notifications */
.notification.success {
    transform-origin: center;
}

.notification.error {
    transform-origin: center;
}

.notification.info {
    transform-origin: center;
}

/* Will change styles for notifications */
.notification.success {
    will-change: transform;
}

.notification.error {
    will-change: transform;
}

.notification.info {
    will-change: transform;
}

/* Backface visibility styles for notifications */
.notification.success {
    backface-visibility: hidden;
}

.notification.error {
    backface-visibility: hidden;
}

.notification.info {
    backface-visibility: hidden;
}

/* Perspective styles for notifications */
.notification.success {
    perspective: 1000px;
}

.notification.error {
    perspective: 1000px;
}

.notification.info {
    perspective: 1000px;
}

/* Perspective origin styles for notifications */
.notification.success {
    perspective-origin: center;
}

.notification.error {
    perspective-origin: center;
}

.notification.info {
    perspective-origin: center;
}

/* Transform style styles for notifications */
.notification.success {
    transform-style: preserve-3d;
}

.notification.error {
    transform-style: preserve-3d;
}

.notification.info {
    transform-style: preserve-3d;
}

/* Transform styles for notifications */
.notification.success {
    transform: translateZ(0);
}

.notification.error {
    transform: translateZ(0);
}

.notification.info {
    transform: translateZ(0);
}

/* Filter styles for notifications */
.notification.success {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.notification.error {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.notification.info {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Mix blend mode styles for notifications */
.notification.success {
    mix-blend-mode: multiply;
}

.notification.error {
    mix-blend-mode: multiply;
}

.notification.info {
    mix-blend-mode: multiply;
}

/* Isolation styles for notifications */
.notification.success {
    isolation: isolate;
}

.notification.error {
    isolation: isolate;
}

.notification.info {
    isolation: isolate;
}

/* Contain styles for notifications */
.notification.success {
    contain: layout style paint;
}

.notification.error {
    contain: layout style paint;
}

.notification.info {
    contain: layout style paint;
}

/* Display styles for notifications */
.notification.success {
    display: block;
}

.notification.error {
    display: block;
}

.notification.info {
    display: block;
}

/* Visibility styles for notifications */
.notification.success {
    visibility: visible;
}

.notification.error {
    visibility: visible;
}

.notification.info {
    visibility: visible;
}

/* Opacity styles for notifications */
.notification.success {
    opacity: 1;
}

.notification.error {
    opacity: 1;
}

.notification.info {
    opacity: 1;
}

/* Clip path styles for notifications */
.notification.success {
    clip-path: inset(0);
}

.notification.error {
    clip-path: inset(0);
}

.notification.info {
    clip-path: inset(0);
}

/* Mask styles for notifications */
.notification.success {
    mask: none;
}

.notification.error {
    mask: none;
}

.notification.info {
    mask: none;
}

/* Mask size styles for notifications */
.notification.success {
    mask-size: auto;
}

.notification.error {
    mask-size: auto;
}

.notification.info {
    mask-size: auto;
}

/* Mask repeat styles for notifications */
.notification.success {
    mask-repeat: no-repeat;
}

.notification.error {
    mask-repeat: no-repeat;
}

.notification.info {
    mask-repeat: no-repeat;
}

/* Mask position styles for notifications */
.notification.success {
    mask-position: center;
}

.notification.error {
        mask-position: center;
}

.notification.info {
    mask-position: center;
}

/* Mask origin styles for notifications */
.notification.success {
    mask-origin: border-box;
}

.notification.error {
    mask-origin: border-box;
}

.notification.info {
    mask-origin: border-box;
}

/* Mask clip styles for notifications */
.notification.success {
    mask-clip: border-box;
}

.notification.error {
    mask-clip: border-box;
}

.notification.info {
    mask-clip: border-box;
}

/* Mask composite styles for notifications */
.notification.success {
    mask-composite: add;
}

.notification.error {
    mask-composite: add;
}

.notification.info {
    mask-composite: add;
}

/* Mask mode styles for notifications */
.notification.success {
    mask-mode: match-source;
}

.notification.error {
    mask-mode: match-source;
}

.notification.info {
    mask-mode: match-source;
}

/* Mask type styles for notifications */
.notification.success {
    mask-type: luminance;
}

.notification.error {
    mask-type: luminance;
}

.notification.info {
    mask-type: luminance;
}

/* Mask border styles for notifications */
.notification.success {
    mask-border: none;
}

.notification.error {
    mask-border: none;
}

.notification.info {
    mask-border: none;
}

/* Mask border width styles for notifications */
.notification.success {
    mask-border-width: 0;
}

.notification.error {
    mask-border-width: 0;
}

.notification.info {
    mask-border-width: 0;
}

/* Mask border style styles for notifications */
.notification.success {
    mask-border-style: none;
}

.notification.error {
    mask-border-style: none;
}

.notification.info {
    mask-border-style: none;
}

.notification {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}
