/* Sikaap Notifications - Version 1.1.0 */
/* Test class to ensure CSS is loading */
.notifications-page-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    font-family: 'Tahoma', 'Arial', sans-serif;
    /* Test border to verify CSS loading */
    border: 3px solid #049C9F;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 25px;
}

/* Notification Popup */
.sikaap-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 320px;
    height: 400px; /* Doubled from 200px */
    background: linear-gradient(135deg, #009688 0%, #00bfae 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    display: none;
    animation: slideIn 0.5s ease-out;
    overflow: hidden;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    color: white;
    position: relative;
}

.notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.notification-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.notification-icon {
    font-size: 24px;
    animation: pulse 2s infinite;
    color: #fff;
}

.notification-title {
    flex: 1;
}

.notification-title h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.notification-title p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.notification-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.notification-close i {
    color: #fff;
    font-size: 16px;
}

.notification-close:hover i {
    color: #ff6b6b;
}

.notification-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.notification-message {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.congrats-icon {
    font-size: 48px;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    color: #fff;
}

.congrats-text {
    flex: 1;
}

.congrats-text h4 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.congrats-text p {
    margin: 0;
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
}

.notification-footer {
    text-align: center;
    margin-top: auto;
}

.notification-footer p {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.notifications-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.notifications-link i {
    font-size: 16px;
}

.notifications-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}



/* Responsive Design */
@media (max-width: 480px) {
    .sikaap-notification {
        width: 95%;
        height: 500px; /* Tallest on small mobile */
        border-radius: 12px;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        position: fixed !important;
    }
    
    .notification-content {
        padding: 20px 15px;
    }
    
    .notification-title h3 {
        font-size: 15px;
    }
    
    .congrats-icon {
        font-size: 36px;
    }
    
    .congrats-text h4 {
        font-size: 18px;
    }
    
    .congrats-text p {
        font-size: 13px;
    }
}

/* Animation for hiding */
.sikaap-notification.hiding {
    animation: slideOutRight 0.5s ease-in forwards;
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Hover effects */
.sikaap-notification:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 150, 136, 0.5);
    transition: all 0.3s ease;
}

/* Success state */
.sikaap-notification.success {
    background: linear-gradient(135deg, #009688 0%, #00bfae 100%);
}

/* Error state */
.sikaap-notification.error {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
}

/* Notifications Page Styles */
.notifications-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.notifications-page h2 {
    color: #009688;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.no-notifications {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 25px;
    color: #666;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.no-notifications-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-notifications-icon {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.no-notifications h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

.no-notifications p {
    font-size: 16px;
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.no-notifications-subtitle {
    font-size: 14px !important;
    color: #888 !important;
    font-style: italic;
}

.gift-notification-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: white;
    margin-bottom: 30px;
    overflow: hidden;
}

.gift-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.gift-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.gift-status {
    background: #4CAF50;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.gift-status.active {
    background: #4CAF50;
}

.gift-status.inactive {
    background: #9e9e9e;
}

.gift-status.expired {
    background: #f44336;
}

.gift-content {
    padding: 25px;
}

.gift-info {
    margin-bottom: 25px;
}

.gift-info p {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.6;
}

.gift-info strong {
    color: #ffd700;
}

.gift-usage-info {
    margin-bottom: 25px;
}

.gift-usage-info h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 16px;
}

.gift-usage-info ul {
    margin: 0;
    padding-right: 20px;
    list-style: none;
}

.gift-usage-info li {
    margin-bottom: 8px;
    font-size: 14px;
    position: relative;
    padding-right: 5px;
}

.gift-usage-info li:before {
    content: '';
    position: absolute;
    right: -15px;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #ffd700;
    border-radius: 50%;
}

.gift-actions {
    text-align: center;
}

.shop-button {
    display: inline-block;
    background: linear-gradient(90deg, #009688 0%, #00bfae 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
}

.shop-button:hover {
    background: linear-gradient(90deg, #00bfae 0%, #009688 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 150, 136, 0.4);
}

/* Gift info in notification */
.gift-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gift-info p {
    margin: 5px 0;
    font-size: 13px;
}

.gift-info strong {
    color: #ffd700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive design for notifications page */
@media (max-width: 768px) {
    .notifications-page {
        padding: 15px;
    }
    
    .gift-header {
        padding: 15px 20px;
    }
    
    .gift-header h3 {
        font-size: 18px;
    }
    
    .gift-content {
        padding: 20px;
    }
    
    .gift-info p,
    .gift-usage-info li {
        font-size: 13px;
    }
}

/* Dashboard Gift Status Styles */
.dashboard-gift-status {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gift-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.gift-status-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.gift-badge {
    background: #4CAF50;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.gift-status-content p {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.6;
}

.gift-status-content strong {
    color: #ffd700;
}

.gift-status-content .gift-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.shop-button-small {
    display: inline-block;
    background: linear-gradient(90deg, #009688 0%, #00bfae 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 150, 136, 0.3);
}

.shop-button-small:hover {
    background: linear-gradient(90deg, #00bfae 0%, #009688 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 150, 136, 0.4);
}

.notifications-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.notifications-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-1px);
}

/* Modern Notifications Page Styles */
.modern-notifications-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px;
    font-family: 'Tahoma', 'Arial', sans-serif;
}

.notifications-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 25px;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.notifications-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-content h1 {
    margin: 0 0 10px 0;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-content p {
    margin: 0;
    opacity: 0.95;
    font-size: 18px;
    line-height: 1.5;
}

.notification-icon {
    font-size: 50px;
    animation: bounce 2s infinite;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.gift-card-modern {
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid #f0f0f0;
    position: relative;
}

.gift-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a24, #ff6b6b);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.gift-card-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.gift-card-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite reverse;
}

.gift-icon {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 2;
}

.gift-box {
    font-size: 60px;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.gift-sparkles {
    position: absolute;
    top: -15px;
    right: -15px;
}

.gift-sparkles span {
    display: block;
    font-size: 20px;
    animation: sparkle 1.5s infinite;
    margin: 3px 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.gift-sparkles span:nth-child(2) {
    animation-delay: 0.5s;
}

.gift-sparkles span:nth-child(3) {
    animation-delay: 1s;
}

.gift-title {
    z-index: 2;
    position: relative;
}

.gift-title h2 {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gift-subtitle {
    margin: 0;
    opacity: 0.95;
    font-size: 16px;
    line-height: 1.4;
}

.gift-status-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gift-status-modern.active {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.gift-status-modern.inactive {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
    border: 1px solid #9e9e9e;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

.gift-card-body {
    padding: 40px 30px;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
}

.gift-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.gift-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.gift-detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.gift-detail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.gift-detail-item:hover::before {
    transform: scaleY(1);
}

.detail-icon {
    font-size: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.gift-detail-item:hover .detail-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.detail-content {
    flex: 1;
}

.detail-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.detail-value {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 1.3;
}

.usage-guide {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.usage-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #009688, #00bfae, #009688);
    background-size: 200% 100%;
    animation: gradient-shift 4s ease-in-out infinite;
}

.guide-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.guide-header h3 {
    margin: 0 0 12px 0;
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

.guide-header p {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #009688 0%, #00bfae 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #009688;
}

.step-item:hover::before {
    transform: scaleY(1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #009688 0%, #00bfae 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 150, 136, 0.4);
}

.step-content h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

.step-content p {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.gift-actions-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.shop-button-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #009688 0%, #00bfae 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 150, 136, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.shop-button-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.shop-button-modern:hover {
    background: linear-gradient(135deg, #00bfae 0%, #009688 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 150, 136, 0.4);
}

.shop-button-modern:hover::before {
    left: 100%;
}

.button-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.shop-button-modern:hover .button-icon {
    transform: scale(1.1);
}

.button-arrow {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.shop-button-modern:hover .button-arrow {
    transform: translateX(8px);
}

.account-button-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 18px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.4s ease;
    border: 2px solid #667eea;
    position: relative;
    overflow: hidden;
}

.account-button-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.account-button-modern:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.account-button-modern:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-notifications-page {
        padding: 20px 15px;
    }
    
    .notifications-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .gift-card-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .gift-details-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-steps {
        grid-template-columns: 1fr;
    }
    
    .gift-actions-modern {
        flex-direction: column;
    }
    
    .shop-button-modern,
    .account-button-modern {
        width: 100%;
        justify-content: center;
    }
} 

/* Modern Notifications Page Styles */
.notifications-page-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    font-family: 'Tahoma', 'Arial', sans-serif;
}

.no-notifications-modern {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 25px;
    color: #666;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.modern-notifications-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Header Section */
.notifications-header-modern {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 25px;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.3);
    position: relative;
    overflow: hidden;
}

.notifications-header-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.header-content-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.header-title-section h1 {
    margin: 0 0 10px 0;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-title-section p {
    margin: 0;
    opacity: 0.95;
    font-size: 18px;
    line-height: 1.5;
}

.header-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon-item {
    font-size: 24px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.icon-item:nth-child(2) {
    animation-delay: 0.5s;
}

.icon-item:nth-child(3) {
    animation-delay: 1s;
}

.icon-item:nth-child(4) {
    animation-delay: 1.5s;
}

.icon-item:nth-child(5) {
    animation-delay: 2s;
}

/* Gift Card Section */
.gift-card-modern-new {
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid #f0f0f0;
    position: relative;
}

.gift-card-modern-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a24, #ff6b6b);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

.gift-card-header-modern {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.gift-card-header-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite reverse;
}

.gift-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    position: relative;
}

.gift-icon-modern {
    position: relative;
    display: flex;
    align-items: center;
}

.gift-box-modern {
    font-size: 45px;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.gift-sparkles-modern {
    position: absolute;
    top: -10px;
    right: -10px;
}

.gift-sparkles-modern span {
    display: block;
    font-size: 16px;
    animation: sparkle 1.5s infinite;
    margin: 2px 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.gift-sparkles-modern span:nth-child(2) {
    animation-delay: 0.5s;
}

.gift-sparkles-modern span:nth-child(3) {
    animation-delay: 1s;
}

.gift-title-modern h2 {
    margin: 0 0 5px 0;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gift-title-modern p {
    margin: 0;
    opacity: 0.95;
    font-size: 14px;
    line-height: 1.4;
}

.gift-status-modern-new {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.status-dot-modern {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4CAF50;
    animation: blink 2s infinite;
    box-shadow: 0 0 4px rgba(76, 175, 80, 0.4);
}

/* Gift Card Body */
.gift-card-body-modern {
    padding: 25px;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
}

/* Gift Details Grid */
.gift-details-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.gift-detail-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: white;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.gift-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.gift-detail-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: #4facfe;
}

.gift-detail-card:hover::before {
    transform: scaleY(1);
}

.detail-icon-modern {
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(79, 172, 254, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gift-detail-card:hover .detail-icon-modern {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

.detail-content-modern {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label-modern {
    display: block;
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.detail-value-modern {
    display: block;
    font-size: 15px;
    font-weight: bold;
    color: #333;
    line-height: 1.3;
}



/* Action Buttons */
.action-buttons-modern {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.shop-button-modern-new {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #009688 0%, #00bfae 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 150, 136, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.shop-button-modern-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.shop-button-modern-new:hover {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}

.shop-button-modern-new:hover::before {
    left: 100%;
}

.shop-button-modern-new i,
.account-button-modern-new i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.shop-button-modern-new:hover i {
    transform: scale(1.1);
}

.shop-button-modern-new:hover .fa-arrow-left {
    transform: translateX(-6px);
}

.account-button-modern-new {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 150, 136, 0.1);
    color: #009688;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.4s ease;
    border: 2px solid #009688;
    position: relative;
    overflow: hidden;
}

.account-button-modern-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 150, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

.account-button-modern-new:hover {
    background: #009688;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 150, 136, 0.3);
}

.account-button-modern-new:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .notifications-page-modern {
        padding: 20px 15px;
    }
    
    .notifications-header-modern {
        padding: 30px 20px;
    }
    
    .header-content-modern {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .header-title-section h1 {
        font-size: 28px;
    }
    
    .header-icons {
        justify-content: center;
    }
    
    .gift-card-header-modern {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .gift-header-left {
        flex-direction: column;
        gap: 15px;
    }
    
    .gift-details-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .guide-steps-modern {
        grid-template-columns: 1fr;
    }
    
    .action-buttons-modern {
        flex-direction: column;
    }
    
    .shop-button-modern-new,
    .account-button-modern-new {
        width: 100%;
        justify-content: center;
    }
    
    /* بهبود رسپانسیو بودن برای موبایل */
    .modern-notifications-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .gift-card-modern-new {
        border-radius: 20px;
        margin: 0 5px;
    }
    
    .gift-card-header-modern {
        padding: 25px 20px;
    }
    
    .gift-card-body-modern {
        padding: 20px;
    }
    
    .gift-title-modern h2 {
        font-size: 20px;
    }
    
    .gift-title-modern p {
        font-size: 13px;
    }
    
    .gift-box-modern {
        font-size: 35px;
    }
    
    .usage-guide-modern {
        margin-bottom: 25px;
    }
    
    .guide-items-modern {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .guide-item {
        padding: 15px;
        border-radius: 12px;
    }
    
    .guide-item-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .guide-item-content h4 {
        font-size: 14px;
    }
    
    .guide-item-content p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .notifications-page-modern {
        padding: 15px 10px;
    }
    
    .gift-card-header-modern {
        padding: 20px 15px;
    }
    
    .gift-card-body-modern {
        padding: 15px;
    }
    
    .gift-title-modern h2 {
        font-size: 18px;
    }
    
    .gift-title-modern p {
        font-size: 12px;
    }
    
    .gift-box-modern {
        font-size: 30px;
    }
    
    .gift-status-modern-new {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .guide-item {
        padding: 12px;
    }
    
    .guide-item-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .guide-item-content h4 {
        font-size: 13px;
    }
    
    .guide-item-content p {
        font-size: 11px;
    }
    
    .shop-button-modern-new,
    .account-button-modern-new {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .shop-button-modern-new i,
    .account-button-modern-new i {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .notifications-page-modern {
        padding: 10px 5px;
    }
    
    .gift-card-header-modern {
        padding: 15px 10px;
    }
    
    .gift-card-body-modern {
        padding: 12px;
    }
    
    .gift-title-modern h2 {
        font-size: 16px;
    }
    
    .gift-title-modern p {
        font-size: 11px;
    }
    
    .gift-box-modern {
        font-size: 25px;
    }
    
    .guide-item {
        padding: 10px;
    }
    
    .guide-item-icon {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }
    
    .guide-item-content h4 {
        font-size: 12px;
    }
    
    .guide-item-content p {
        font-size: 10px;
    }
    
    .shop-button-modern-new,
    .account-button-modern-new {
        padding: 10px 15px;
        font-size: 12px;
    }
} 

/* Usage Guide Section */
.usage-guide-modern {
    margin-bottom: 30px;
}

.guide-items-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.guide-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.guide-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #009688;
}

.guide-item-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #009688 0%, #00bfae 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 150, 136, 0.3);
}

.guide-item-content {
    flex: 1;
}

.guide-item-content h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.guide-item-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
} 

/* Mobile Responsive */
@media (max-width: 768px) {
    .sikaap-notification {
        width: 90%;
        max-width: 350px;
        height: 450px; /* Even taller on mobile */
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        border-radius: 15px;
        margin: 0;
        position: fixed !important;
        z-index: 999999 !important;
    }
    
    .notification-content {
        padding: 25px 20px;
    }
    
    .notification-header {
        margin-bottom: 20px;
    }
    
    .notification-title h3 {
        font-size: 16px;
    }
    
    .congrats-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }
    
    .congrats-text h4 {
        font-size: 20px;
    }
    
    .congrats-text p {
        font-size: 14px;
    }
    
    .notification-footer p {
        font-size: 13px;
    }
    
    .notifications-link {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* بهبود رسپانسیو بودن برای تبلت */
    .notification-message {
        padding: 15px;
        gap: 12px;
    }
    
    .notification-close {
        top: 10px;
        right: 10px;
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .sikaap-notification {
        width: 95%;
        height: 500px; /* Tallest on small mobile */
        border-radius: 12px;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        position: fixed !important;
    }
    
    .notification-content {
        padding: 20px 15px;
    }
    
    .notification-title h3 {
        font-size: 15px;
    }
    
    .congrats-icon {
        font-size: 36px;
    }
    
    .congrats-text h4 {
        font-size: 18px;
    }
    
    .congrats-text p {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .sikaap-notification {
        width: 98%;
        height: 550px; /* Even taller for very small screens */
        border-radius: 10px;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        position: fixed !important;
    }
    
    .notification-content {
        padding: 15px 12px;
    }
    
    .notification-title h3 {
        font-size: 14px;
    }
    
    .congrats-icon {
        font-size: 32px;
    }
    
    .congrats-text h4 {
        font-size: 16px;
    }
    
    .congrats-text p {
        font-size: 12px;
    }
    
    .notifications-link {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Landscape Mode برای موبایل */
@media (max-width: 768px) and (orientation: landscape) {
    .sikaap-notification {
        width: 80%;
        max-width: 500px;
        height: 350px;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        position: fixed !important;
    }
    
    .notification-content {
        padding: 20px;
    }
    
    .notification-message {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    .congrats-icon {
        font-size: 35px;
        margin-bottom: 0;
    }
    
    .congrats-text h4 {
        font-size: 18px;
    }
    
    .congrats-text p {
        font-size: 13px;
    }
}

/* بهبود برای صفحه اعلان‌ها در حالت landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .notifications-page-modern {
        padding: 15px 10px;
    }
    
    .gift-card-modern-new {
        border-radius: 15px;
    }
    
    .gift-card-header-modern {
        padding: 20px 15px;
    }
    
    .gift-card-body-modern {
        padding: 15px;
    }
    
    .guide-items-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .guide-item {
        padding: 12px;
    }
    
    .action-buttons-modern {
        flex-direction: row;
        gap: 10px;
    }
    
    .shop-button-modern-new,
    .account-button-modern-new {
        flex: 1;
        padding: 12px 15px;
        font-size: 13px;
    }
} 