* {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            body {
                font-family: "Poppins", sans-serif;
                background: linear-gradient(135deg, #e53e3e 0%, #c53030 50%, #9b2c2c 100%);
                min-height: 100vh;
                max-height: 100vh;
                overflow: hidden;
                margin: 0;
                padding: 0;
                color: var(--text-primary);
            }

            /* Animated Background Pattern */
            body::before {
                content: '';
                position: fixed;
                top: 0;
                left: 0;
                width: 200%;
                height: 200%;
                background-image:
                    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
                animation: backgroundFloat 20s ease-in-out infinite;
                z-index: 0;
            }

            @keyframes backgroundFloat {

                0%,
                100% {
                    transform: translate(0, 0) rotate(0deg);
                }

                33% {
                    transform: translate(-50px, -30px) rotate(1deg);
                }

                66% {
                    transform: translate(30px, -50px) rotate(-1deg);
                }
            }

            .notification-container {
                position: relative;
                z-index: 10;
                height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 10px;
                box-sizing: border-box;
            }

            .notification-card {
                background: rgba(255, 255, 255, 0.98);
                border-radius: 20px;
                box-shadow:
                    0 25px 60px rgba(0, 0, 0, 0.3),
                    0 8px 25px rgba(0, 0, 0, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.8);
                width: 100%;
                max-width: 500px;
                height: calc(100vh - 20px);
                max-height: 95vh;
                overflow: hidden;
                animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.2);
                display: flex;
                flex-direction: column;
            }

            @keyframes slideInUp {
                from {
                    opacity: 0;
                    transform: translateY(60px) scale(0.9);
                }

                to {
                    opacity: 1;
                    transform: translateY(0) scale(1);
                }
            }

            .notification-header {
                background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
                padding: 25px 20px;
                text-align: center;
                position: relative;
                overflow: hidden;
                flex-shrink: 0;
            }

            .notification-header::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background:
                    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 70%),
                    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
                animation: headerGlow 3s ease-in-out infinite;
            }

            @keyframes headerGlow {

                0%,
                100% {
                    opacity: 1;
                }

                50% {
                    opacity: 0.8;
                }
            }

            .status-icon {
                position: relative;
                z-index: 2;
                width: 80px;
                height: 80px;
                margin: 0 auto 15px;
                background: rgba(255, 255, 255, 0.95);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow:
                    0 15px 35px rgba(0, 0, 0, 0.2),
                    0 5px 15px rgba(0, 0, 0, 0.1);
                animation: pulse 2s infinite;
            }

            @keyframes pulse {

                0%,
                100% {
                    transform: scale(1);
                    box-shadow:
                        0 15px 35px rgba(0, 0, 0, 0.2),
                        0 5px 15px rgba(0, 0, 0, 0.1);
                }

                50% {
                    transform: scale(1.05);
                    box-shadow:
                        0 20px 45px rgba(0, 0, 0, 0.25),
                        0 8px 20px rgba(0, 0, 0, 0.15);
                }
            }

            .status-icon i {
                font-size: 2.5rem;
                color: #e53e3e;
                position: relative;
            }

            .status-title {
                position: relative;
                z-index: 2;
                color: white;
                font-size: 1.8rem;
                font-weight: 800;
                margin-bottom: 8px;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
                letter-spacing: 1px;
                line-height: 1.1;
            }

            .status-subtitle {
                position: relative;
                z-index: 2;
                color: rgba(255, 255, 255, 0.95);
                font-size: 0.9rem;
                font-weight: 500;
                opacity: 0.95;
            }

            .notification-body {
                padding: 20px;
                flex: 1;
                display: flex;
                flex-direction: column;
                overflow-y: auto;
            }

            .main-message {
                text-align: center;
                margin-bottom: 20px;
                flex-shrink: 0;
            }

            .username-highlight {
                font-weight: 700;
                color: #e53e3e;
                font-size: 1em;
            }

            .message-text {
                color: #2d3748;
                font-size: 0.95rem;
                line-height: 1.4;
                margin-bottom: 10px;
                font-weight: 500;
            }

            .sub-message {
                color: #718096;
                font-size: 0.85rem;
                line-height: 1.4;
                font-weight: 400;
            }

            .info-section {
                background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
                border-radius: 12px;
                padding: 15px;
                margin-bottom: 15px;
                border: 1px solid rgba(0, 0, 0, 0.05);
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
                flex-shrink: 0;
            }

            .info-header {
                display: flex;
                align-items: center;
                margin-bottom: 12px;
                color: #2d3748;
                font-weight: 700;
                font-size: 0.9rem;
            }

            .info-header i {
                font-size: 1rem;
                margin-right: 8px;
                color: #e53e3e;
            }

            .info-item,
            .contact-item {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 8px 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.06);
                font-size: 0.8rem;
            }

            .info-item:last-child,
            .contact-item:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }

            .info-label {
                font-weight: 600;
                color: #4a5568;
            }

            .info-value,
            .contact-value {
                font-weight: 500;
                color: #2d3748;
                text-align: right;
            }

            .contact-item {
                justify-content: flex-start;
            }

            .contact-item i {
                width: 20px;
                text-align: center;
                margin-right: 10px;
                color: #e53e3e;
                font-size: 0.9rem;
            }

            /* Status Indicators */
            .status-expired {
                color: #e53e3e;
                font-weight: 700;
            }

            .status-normal {
                color: #38a169;
                font-weight: 600;
            }

            .action-section {
                text-align: center;
                padding-top: 15px;
                flex-shrink: 0;
            }

            .home-button {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
                color: white;
                text-decoration: none;
                padding: 12px 24px;
                border-radius: 25px;
                font-weight: 700;
                font-size: 0.9rem;
                box-shadow:
                    0 8px 25px rgba(229, 62, 62, 0.3),
                    0 3px 10px rgba(229, 62, 62, 0.2);
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                border: none;
                cursor: pointer;
                min-width: 160px;
                margin: 5px;
            }

            .home-button:hover {
                color: white;
                text-decoration: none;
                transform: translateY(-3px) scale(1.02);
                box-shadow:
                    0 12px 35px rgba(229, 62, 62, 0.4),
                    0 5px 15px rgba(229, 62, 62, 0.3);
                background: linear-gradient(135deg, #c53030 0%, #9b2c2c 100%);
            }

            .home-button i {
                margin-right: 8px;
                font-size: 1rem;
            }

            /* Responsive Design */
            @media (max-width: 768px) {
                .notification-container {
                    padding: 5px;
                }

                .notification-card {
                    border-radius: 15px;
                    height: 100vh;
                    max-height: 100vh;
                }

                .notification-header {
                    padding: 20px 15px;
                }

                .status-icon {
                    width: 70px;
                    height: 70px;
                    margin-bottom: 12px;
                }

                .status-icon i {
                    font-size: 2.2rem;
                }

                .status-title {
                    font-size: 1.6rem;
                    margin-bottom: 6px;
                }

                .status-subtitle {
                    font-size: 0.85rem;
                }

                .notification-body {
                    padding: 15px;
                }

                .main-message {
                    margin-bottom: 15px;
                }

                .message-text {
                    font-size: 0.9rem;
                }

                .sub-message {
                    font-size: 0.8rem;
                }

                .info-section {
                    padding: 12px;
                    margin-bottom: 12px;
                    border-radius: 10px;
                }

                .info-header {
                    font-size: 0.85rem;
                    margin-bottom: 10px;
                }

                .info-item,
                .contact-item {
                    font-size: 0.75rem;
                    padding: 6px 0;
                }

                .home-button {
                    padding: 10px 20px;
                    font-size: 0.85rem;
                    min-width: 140px;
                    margin: 3px;
                }

                .action-section {
                    padding-top: 10px;
                }
            }

            @media (max-width: 480px) {
                .notification-container {
                    padding: 0;
                }

                .notification-card {
                    border-radius: 0;
                    height: 100vh;
                    max-height: 100vh;
                }

                .notification-header {
                    padding: 15px 12px;
                }

                .status-icon {
                    width: 60px;
                    height: 60px;
                    margin-bottom: 10px;
                }

                .status-icon i {
                    font-size: 2rem;
                }

                .status-title {
                    font-size: 1.4rem;
                    margin-bottom: 5px;
                }

                .status-subtitle {
                    font-size: 0.8rem;
                }

                .notification-body {
                    padding: 12px;
                }

                .main-message {
                    margin-bottom: 12px;
                }

                .message-text {
                    font-size: 0.85rem;
                    line-height: 1.3;
                }

                .sub-message {
                    font-size: 0.75rem;
                    line-height: 1.3;
                }

                .info-section {
                    padding: 10px;
                    margin-bottom: 10px;
                    border-radius: 8px;
                }

                .info-header {
                    font-size: 0.8rem;
                    margin-bottom: 8px;
                }

                .info-header i {
                    font-size: 0.9rem;
                    margin-right: 6px;
                }

                .info-item,
                .contact-item {
                    font-size: 0.7rem;
                    padding: 5px 0;
                    align-items: flex-start;
                    flex-direction: column;
                    gap: 2px;
                }

                .info-value,
                .contact-value {
                    text-align: left;
                    font-size: 0.7rem;
                }

                .contact-item {
                    flex-direction: row;
                    align-items: center;
                }

                .contact-item i {
                    width: 18px;
                    margin-right: 8px;
                    font-size: 0.8rem;
                }

                .home-button {
                    padding: 8px 16px;
                    font-size: 0.8rem;
                    min-width: 120px;
                    margin: 2px;
                    border-radius: 20px;
                }

                .home-button i {
                    margin-right: 6px;
                    font-size: 0.9rem;
                }

                .action-section {
                    padding-top: 8px;
                }
            }

            @media (max-height: 600px) {
                .notification-header {
                    padding: 12px 15px;
                }

                .status-icon {
                    width: 50px;
                    height: 50px;
                    margin-bottom: 8px;
                }

                .status-icon i {
                    font-size: 1.5rem;
                }

                .status-title {
                    font-size: 1.2rem;
                    margin-bottom: 4px;
                }

                .status-subtitle {
                    font-size: 0.75rem;
                }

                .notification-body {
                    padding: 10px;
                }

                .info-section {
                    padding: 8px;
                    margin-bottom: 8px;
                }

                .home-button {
                    padding: 6px 12px;
                    font-size: 0.75rem;
                    min-width: 100px;
                }
            }