/* ===== Shipping Page Styles ===== */
.shipping-container {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Animated Background Gems */
.shipping-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #bb86fc, transparent),
        radial-gradient(2px 2px at 40px 70px, #00ffff, transparent),
        radial-gradient(1px 1px at 90px 40px, #ff00ff, transparent),
        radial-gradient(1px 1px at 130px 80px, #39ff14, transparent),
        radial-gradient(2px 2px at 160px 30px, #bb86fc, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: float-gems 20s ease-in-out infinite;
    opacity: 0.3;
    z-index: 0;
}

@keyframes float-gems {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(90deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    75% { transform: translateY(-10px) rotate(270deg); }
}

/* Main Content Wrapper */
.shipping-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

/* Header Section */
.shipping-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.shipping-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 30px rgba(255, 107, 53, 0.3),
        0 0 50px rgba(247, 147, 30, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: pulse-icon 3s ease-in-out infinite;
}

.shipping-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 10px 30px rgba(255, 107, 53, 0.3),
            0 0 50px rgba(247, 147, 30, 0.2),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow:
            0 15px 40px rgba(255, 107, 53, 0.5),
            0 0 80px rgba(247, 147, 30, 0.4),
            inset 0 0 25px rgba(255, 255, 255, 0.2);
    }
}

.shipping-title {
    background: linear-gradient(135deg, #bb86fc, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: glow-text 3s ease-in-out infinite alternate;
}

@keyframes glow-text {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); text-shadow: 0 0 20px rgba(187, 134, 252, 0.5); }
}

.shipping-subtitle {
    color: #a0a0a0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(135deg, rgba(187, 134, 252, 0.1), rgba(0, 255, 255, 0.05));
    border: 1px solid rgba(187, 134, 252, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: slideInUp 1s ease-out 0.2s both;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(187, 134, 252, 0.1), transparent);
    animation: rotate-bg 8s linear infinite;
}

@keyframes rotate-bg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.welcome-title {
    color: #bb86fc;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

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

/* Premium Navigation Cards */
.premium-nav-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
    will-change: transform;
    min-height: 220px;
}

.premium-nav-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(148, 163, 184, 0.3);
}

/* Card Specific Styling */
.purchase-card {
    background: linear-gradient(145deg, rgba(29, 78, 216, 0.05), rgba(67, 56, 202, 0.05));
    border-color: rgba(59, 130, 246, 0.2);
}

.purchase-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow:
        0 25px 50px -12px rgba(59, 130, 246, 0.25),
        0 0 0 1px rgba(59, 130, 246, 0.1),
        inset 0 0 30px rgba(59, 130, 246, 0.05);
}

.usage-card {
    background: linear-gradient(145deg, rgba(5, 150, 105, 0.05), rgba(16, 185, 129, 0.05));
    border-color: rgba(34, 197, 94, 0.2);
}

.usage-card:hover {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow:
        0 25px 50px -12px rgba(34, 197, 94, 0.25),
        0 0 0 1px rgba(34, 197, 94, 0.1),
        inset 0 0 30px rgba(34, 197, 94, 0.05);
}

.payment-card {
    background: linear-gradient(145deg, rgba(234, 88, 12, 0.05), rgba(249, 115, 22, 0.05));
    border-color: rgba(251, 146, 60, 0.2);
}

.payment-card:hover {
    border-color: rgba(251, 146, 60, 0.4);
    box-shadow:
        0 25px 50px -12px rgba(251, 146, 60, 0.25),
        0 0 0 1px rgba(251, 146, 60, 0.1),
        inset 0 0 30px rgba(251, 146, 60, 0.05);
}

.rewards-card {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.05), rgba(217, 70, 239, 0.05));
    border-color: rgba(196, 181, 253, 0.2);
}

.rewards-card:hover {
    border-color: rgba(196, 181, 253, 0.4);
    box-shadow:
        0 25px 50px -12px rgba(196, 181, 253, 0.25),
        0 0 0 1px rgba(196, 181, 253, 0.1),
        inset 0 0 30px rgba(196, 181, 253, 0.05);
}

/* Card Particles Animation */
.card-particles {
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-particle 6s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.particle-3 {
    bottom: 25%;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 7s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) translateX(10px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-30px) translateX(-5px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-20px) translateX(15px) scale(1.1);
        opacity: 0.8;
    }
}

/* Card Glow Border Effect */
.card-glow-border {
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: glow-border-sweep 3s ease-in-out infinite;
}

.purchase-card .card-glow-border {
    background: linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.3) 50%, transparent 70%);
}

.usage-card .card-glow-border {
    background: linear-gradient(45deg, transparent 30%, rgba(34, 197, 94, 0.3) 50%, transparent 70%);
}

.payment-card .card-glow-border {
    background: linear-gradient(45deg, transparent 30%, rgba(251, 146, 60, 0.3) 50%, transparent 70%);
}

.rewards-card .card-glow-border {
    background: linear-gradient(45deg, transparent 30%, rgba(196, 181, 253, 0.3) 50%, transparent 70%);
}

@keyframes glow-border-sweep {
    0% {
        background-position: -200% -200%;
    }
    100% {
        background-position: 200% 200%;
    }
}

/* Card Icon Styling */
.card-icon-container {
    position: relative;
    width: 56px;
    height: 56px;
}

.card-icon-bg {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
}

.purchase-card .card-icon-bg {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(37, 99, 235, 0.9));
    box-shadow:
        0 8px 32px rgba(59, 130, 246, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.usage-card .card-icon-bg {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.8), rgba(22, 163, 74, 0.9));
    box-shadow:
        0 8px 32px rgba(34, 197, 94, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.payment-card .card-icon-bg {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.8), rgba(234, 88, 12, 0.9));
    box-shadow:
        0 8px 32px rgba(251, 146, 60, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.rewards-card .card-icon-bg {
    background: linear-gradient(135deg, rgba(196, 181, 253, 0.8), rgba(168, 85, 247, 0.9));
    box-shadow:
        0 8px 32px rgba(196, 181, 253, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Card Text Styling */
.card-title {
    color: #f8fafc;
    line-height: 1.4;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.purchase-card .card-title {
    color: #dbeafe;
}

.usage-card .card-title {
    color: #dcfce7;
}

.payment-card .card-title {
    color: #fed7aa;
}

.rewards-card .card-title {
    color: #f3e8ff;
}

.card-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #94a3b8;
}

/* Floating Emoji Animation */
.floating-emoji {
    animation: float-emoji 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes float-emoji {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(5deg);
    }
    50% {
        transform: translateY(-12px) rotate(-3deg);
    }
    75% {
        transform: translateY(-5px) rotate(2deg);
    }
}

/* Progress Indicator */
.card-progress {
    position: relative;
    overflow: hidden;
}

.progress-fill {
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Gaming Cards - Legacy Support */
.gaming-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    border: 1px solid rgba(187, 134, 252, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.gaming-card:hover {
    transform: translateY(-5px);
    border-color: rgba(187, 134, 252, 0.5);
    box-shadow:
        0 20px 40px rgba(187, 134, 252, 0.2),
        0 0 50px rgba(0, 255, 255, 0.1),
        inset 0 0 20px rgba(187, 134, 252, 0.05);
}

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

.gaming-card:hover::before {
    left: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    animation: rotate-icon 10s linear infinite;
}

@keyframes rotate-icon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.card-title {
    color: #bb86fc;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.card-description {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Payment Method Cards */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.payment-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInRight 1s ease-out;
}

.payment-card:nth-child(2) {
    animation-delay: 0.2s;
}

.payment-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(187, 134, 252, 0.6);
    box-shadow:
        0 25px 50px rgba(187, 134, 252, 0.3),
        0 0 100px rgba(0, 255, 255, 0.2);
}

.payment-card.active {
    border-color: #bb86fc;
    background: linear-gradient(135deg, rgba(187, 134, 252, 0.1), rgba(0, 255, 255, 0.05));
}

.payment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.payment-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #bb86fc, #00ffff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(187, 134, 252, 0.3);
}

.payment-logo svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.payment-badge {
    background: linear-gradient(135deg, #39ff14, #00ff7f);
    color: #0a0a0f;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Form Styles */
.recharge-form {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border: 1px solid rgba(187, 134, 252, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(15px);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    color: #bb86fc;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.form-input {
    width: 100%;
    background: rgba(26, 26, 46, 0.7);
    border: 2px solid rgba(187, 134, 252, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #bb86fc;
    box-shadow: 0 0 20px rgba(187, 134, 252, 0.3);
    background: rgba(26, 26, 46, 0.9);
}

.form-input::placeholder {
    color: rgba(160, 160, 160, 0.6);
}

/* Calculate Display */
.calculation-display {
    background: linear-gradient(135deg, rgba(187, 134, 252, 0.1), rgba(0, 255, 255, 0.05));
    border: 1px solid rgba(187, 134, 252, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(187, 134, 252, 0.1);
}

.calc-row:last-child {
    border-bottom: none;
    font-weight: 600;
    color: #bb86fc;
    font-size: 1.1rem;
}

.calc-label {
    color: #a0a0a0;
}

.calc-value {
    color: white;
    font-weight: 500;
}

.diamonds-value {
    color: #39ff14;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Action Buttons */
.action-button {
    background: linear-gradient(135deg, #bb86fc, #9333ea);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    font-size: 1.1rem;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 15px 30px rgba(187, 134, 252, 0.4),
        0 0 50px rgba(147, 51, 234, 0.3);
}

.action-button:active {
    transform: translateY(0);
}

.action-button::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;
}

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

.action-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Progress Section */
.progress-section {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.05), rgba(0, 255, 255, 0.05));
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.progress-header {
    text-align: center;
    margin-bottom: 2rem;
}

.progress-title {
    color: #39ff14;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.progress-bar-container {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 50px;
    height: 20px;
    margin: 1rem 0;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    background: linear-gradient(90deg, #39ff14, #00ff7f);
    height: 100%;
    border-radius: 50px;
    transition: width 1s ease-out;
    position: relative;
    animation: pulse-progress 2s ease-in-out infinite;
}

@keyframes pulse-progress {
    0%, 100% { box-shadow: 0 0 10px rgba(57, 255, 20, 0.5); }
    50% { box-shadow: 0 0 20px rgba(57, 255, 20, 0.8), 0 0 30px rgba(0, 255, 127, 0.6); }
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine-progress 3s ease-in-out infinite;
}

@keyframes shine-progress {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Transaction History */
.transaction-table {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border-radius: 16px;
    overflow: hidden;
    margin: 2rem 0;
}

.table-header {
    background: linear-gradient(135deg, #bb86fc, #9333ea);
    color: white;
    padding: 1rem;
    font-weight: 600;
}

.table-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 1rem;
    border-bottom: 1px solid rgba(187, 134, 252, 0.1);
    transition: background 0.3s ease;
}

.table-row:hover {
    background: rgba(187, 134, 252, 0.05);
}

.table-cell {
    color: #a0a0a0;
    display: flex;
    align-items: center;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-completed {
    background: rgba(57, 255, 20, 0.2);
    color: #39ff14;
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.status-failed {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4757;
}

/* Final Message */
.final-message {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(187, 134, 252, 0.1), rgba(0, 255, 255, 0.05));
    border-radius: 20px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.final-message::before {
    content: '✨';
    position: absolute;
    font-size: 3rem;
    animation: float-sparkle 3s ease-in-out infinite;
    opacity: 0.7;
}

.final-message::after {
    content: '✨';
    position: absolute;
    font-size: 2rem;
    right: 10%;
    top: 20%;
    animation: float-sparkle 3s ease-in-out infinite 1.5s;
    opacity: 0.5;
}

@keyframes float-sparkle {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.final-text {
    background: linear-gradient(135deg, #bb86fc, #00ffff, #39ff14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    animation: rainbow-text 3s ease-in-out infinite;
}

@keyframes rainbow-text {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3) saturate(1.2); }
}

/* Advanced Hover Effects */
.premium-nav-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    animation: rotate-bg-slow 10s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.premium-nav-card:hover::before {
    animation-duration: 3s;
}

@keyframes rotate-bg-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Ripple Effect on Click */
.premium-nav-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: 2;
}

.premium-nav-card:active::after {
    width: 300px;
    height: 300px;
}

/* Card Content Layering */
.card-content {
    position: relative;
    z-index: 10;
}

/* Enhanced Icon Animations */
@keyframes icon-float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.05);
    }
}

.premium-nav-card:hover .card-icon {
    animation: icon-float 2s ease-in-out infinite;
}

/* Staggered Animation for Grid */
.premium-nav-card:nth-child(1) {
    animation-delay: 0s;
}

.premium-nav-card:nth-child(2) {
    animation-delay: 0.1s;
}

.premium-nav-card:nth-child(3) {
    animation-delay: 0.2s;
}

.premium-nav-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Magnetic Effect */
.premium-nav-card {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) {
    .premium-nav-card:hover {
        will-change: transform;
    }

    .premium-nav-card:hover .card-title {
        transform: translateX(4px);
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }

    .premium-nav-card:hover .card-description {
        transform: translateX(2px);
    }
}

/* Advanced Backdrop Effects */
.premium-nav-card {
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
}

.premium-nav-card:hover {
    backdrop-filter: blur(25px) saturate(1.8) brightness(1.1);
    -webkit-backdrop-filter: blur(25px) saturate(1.8) brightness(1.1);
}

/* Glow Text Effect */
.premium-nav-card:hover .card-title {
    animation: glow-text-pulse 2s ease-in-out infinite;
}

@keyframes glow-text-pulse {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

/* Particle System Enhancement */
.premium-nav-card:hover .particle {
    animation-duration: 3s;
    opacity: 1;
}

.premium-nav-card:hover .particle-1 {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8), transparent);
}

.premium-nav-card:hover .particle-2 {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.8), transparent);
}

.premium-nav-card:hover .particle-3 {
    background: radial-gradient(circle, rgba(251, 146, 60, 0.8), transparent);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .premium-nav-card {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .shipping-content {
        padding: 1rem;
    }

    .shipping-title {
        font-size: 2rem;
    }

    .premium-nav-card {
        min-height: 180px;
        padding: 0;
    }

    .card-content {
        padding: 1.25rem !important;
    }

    .payment-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .payment-card {
        padding: 1.5rem;
    }

    .table-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .table-cell {
        font-size: 0.9rem;
    }

    /* Mobile-specific hover effects */
    .premium-nav-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .premium-nav-card {
        min-height: 160px;
    }

    .card-content {
        padding: 1rem !important;
    }

    .card-title {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .card-description {
        font-size: 0.8rem !important;
    }

    .floating-emoji {
        font-size: 1.5rem !important;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading Animation */
.loading-shimmer {
    background: linear-gradient(90deg, transparent, rgba(187, 134, 252, 0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Payment Methods Custom Colors & Logos */

/* PayPal Styling */
.paypal-card {
    background: linear-gradient(135deg, rgba(0, 48, 135, 0.1), rgba(0, 156, 222, 0.05));
    border-color: rgba(0, 156, 222, 0.3);
}

.paypal-card:hover {
    border-color: rgba(0, 156, 222, 0.6);
    box-shadow:
        0 20px 40px rgba(0, 156, 222, 0.2),
        0 0 50px rgba(0, 48, 135, 0.1);
}

.paypal-logo {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 156, 222, 0.2);
}

.paypal-badge {
    background: linear-gradient(135deg, #009cde, #012169);
    color: white;
}

/* Vodafone Styling */
.vodafone-card {
    background: linear-gradient(135deg, rgba(230, 0, 0, 0.1), rgba(255, 255, 255, 0.05));
    border-color: rgba(230, 0, 0, 0.3);
}

.vodafone-card:hover {
    border-color: rgba(230, 0, 0, 0.6);
    box-shadow:
        0 20px 40px rgba(230, 0, 0, 0.2),
        0 0 50px rgba(230, 0, 0, 0.1);
}

.vodafone-logo {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.2);
}

.vodafone-badge {
    background: linear-gradient(135deg, #e60000, #a00000);
    color: white;
}

/* InstaPay Styling */
.instapay-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
    border-color: rgba(16, 185, 129, 0.3);
}

.instapay-card:hover {
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow:
        0 20px 40px rgba(16, 185, 129, 0.2),
        0 0 50px rgba(5, 150, 105, 0.1);
}

.instapay-logo {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.instapay-badge {
    background: linear-gradient(135deg, #34d399, #10b981);
    color: white;
}

/* Enhanced Payment Card Animations */
.payment-card.active.paypal-card {
    border-color: #009cde;
    background: linear-gradient(135deg, rgba(0, 156, 222, 0.15), rgba(0, 48, 135, 0.1));
    box-shadow:
        0 0 30px rgba(0, 156, 222, 0.4),
        inset 0 0 20px rgba(0, 156, 222, 0.1);
}

.payment-card.active.vodafone-card {
    border-color: #e60000;
    background: linear-gradient(135deg, rgba(230, 0, 0, 0.15), rgba(255, 255, 255, 0.1));
    box-shadow:
        0 0 30px rgba(230, 0, 0, 0.4),
        inset 0 0 20px rgba(230, 0, 0, 0.1);
}

.payment-card.active.instapay-card {
    border-color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
    box-shadow:
        0 0 30px rgba(16, 185, 129, 0.4),
        inset 0 0 20px rgba(16, 185, 129, 0.1);
}

/* Logo Animations */
.payment-logo {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.payment-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

/* Remove gradient backgrounds when using images */
.paypal-logo,
.vodafone-logo,
.instapay-logo {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.paypal-card:hover .payment-logo-img {
    transform: scale(1.1);
    filter: brightness(1.2) contrast(1.2);
}

.vodafone-card:hover .payment-logo-img {
    transform: scale(1.1);
    filter: brightness(1.2) contrast(1.2);
}

.instapay-card:hover .payment-logo-img {
    transform: scale(1.1);
    filter: brightness(1.2) contrast(1.2);
}
/* Enhanced Hover Effects for Logo Images */
.paypal-card:hover .paypal-logo {
    box-shadow:
        0 0 20px rgba(0, 156, 222, 0.5),
        0 8px 25px rgba(0, 156, 222, 0.3);
    transform: scale(1.05);
}

.vodafone-card:hover .vodafone-logo {
    box-shadow:
        0 0 20px rgba(230, 0, 0, 0.5),
        0 8px 25px rgba(230, 0, 0, 0.3);
    transform: scale(1.05);
}

.instapay-card:hover .instapay-logo {
    box-shadow:
        0 0 20px rgba(16, 185, 129, 0.5),
        0 8px 25px rgba(16, 185, 129, 0.3);
    transform: scale(1.05);
}

/* Badge Pulse Animation */
.payment-badge {
    animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* ===== Rewards System Styles ===== */

/* Reward Tier Cards */
.reward-tier-card {
    background: rgba(31, 41, 55, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    border: 1px solid rgba(107, 114, 128, 0.5);
    padding: 0;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

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

.reward-tier-card:hover::before {
    left: 100%;
}

.reward-tier-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Tier Status Styles */
.reward-tier-card.current-tier {
    border-color: #fbbf24;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.05));
}

.reward-tier-card.unlocked-tier {
    border-color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.04));
}

.reward-tier-card.locked-tier {
    border-color: #6b7280;
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.05), rgba(75, 85, 99, 0.02));
    opacity: 0.7;
}

.reward-tier-card.locked-tier:hover {
    opacity: 0.9;
}

/* Status Badges */
.status-badge {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 9999px;
    position: relative;
    overflow: hidden;
}

.status-badge.current {
    background: rgba(251, 191, 36, 0.2);
    color: rgb(251, 191, 36);
    border: 1px solid rgba(251, 191, 36, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

.status-badge.unlocked {
    background: rgba(16, 185, 129, 0.2);
    color: rgb(16, 185, 129);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.locked {
    background: rgba(107, 114, 128, 0.2);
    color: rgb(107, 114, 128);
    border: 1px solid rgba(107, 114, 128, 0.3);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
    }
}

/* Reward Icons */
.reward-icon {
    display: inline-block;
    font-size: 1rem;
    margin-right: 0.5rem;
    animation: float-gentle 3s ease-in-out infinite;
}

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

/* Transaction Table Enhanced Styles */
.transaction-history-table {
    background: rgba(17, 24, 39, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    border: 1px solid rgba(107, 114, 128, 0.5);
    overflow: hidden;
}

.transaction-history-table tbody tr:hover {
    background: linear-gradient(to right, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    transform: scale(1.01);
    transition: all 0.3s ease;
}

/* Payment Method Icons */
.payment-icon {
    font-size: 1.2rem;
    display: inline-block;
    animation: bounce-subtle 2s ease-in-out infinite;
}

@keyframes bounce-subtle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

/* Progress Bar Enhanced */
.progress-bar-enhanced {
    width: 100%;
    background: rgb(55, 65, 81);
    border-radius: 9999px;
    height: 1rem;
    overflow: hidden;
    position: relative;
}

.progress-bar-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: progress-shine 2s linear infinite;
}

@keyframes progress-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Pending Rewards Cards */
.pending-reward-card {
    background: linear-gradient(135deg, rgba(180, 83, 9, 0.4), rgba(194, 65, 12, 0.4));
    border-radius: 0.75rem;
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    animation: reward-pulse 3s ease-in-out infinite;
}

.pending-reward-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    animation: reward-rotate 4s linear infinite;
}

@keyframes reward-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
    }
}

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

/* Empty State Enhancements */
.empty-state {
    text-align: center;
    padding: 3rem 0;
    animation: fadeInUp 1s ease-out;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
    animation: float-slow 6s ease-in-out infinite;
}

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

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .reward-tier-card {
        margin-bottom: 1rem;
    }

    .status-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .transaction-history-table {
        font-size: 0.875rem;
    }

    .pending-reward-card {
        padding: 1rem;
    }
}

/* Dark Mode Optimizations */
@media (prefers-color-scheme: dark) {
    .reward-tier-card {
        background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.6));
    }

    .transaction-history-table {
        background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(31, 41, 55, 0.7));
    }
}

/* Accessibility Enhancements */
.reward-tier-card:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.status-badge:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}
