/* Enhanced Content Presentation Styles */

.nfc-stat-value {
    font-weight: 600;
    font-size: 1.5rem;
    color: #2563eb; /* Blue-600 */
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUpIn 0.5s ease forwards;
    line-height: 1.2;
}

.glass-morphism {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.08);
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.2s ease;
}

.glass-morphism:hover {
    background: rgba(255, 255, 255, 0.9);
}

@media (prefers-color-scheme: dark) {
    .glass-morphism {
        background: rgba(15, 23, 42, 0.8);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    }
    
    .glass-morphism:hover {
        background: rgba(30, 41, 59, 0.9);
    }

    .nfc-stat-value {
        color: #60a5fa; /* Blue-400 for dark mode */
    }
}

#plan-comparison {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
}

#plan-comparison th {
    background-color: #f8fafc;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #e2e8f0;
}

#plan-comparison td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

#plan-comparison tr.highlight {
    background-color: #f1f5f9;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border-radius: 9999px;
    padding: 0.375rem 0.75rem;
    margin: 0.125rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    color: #1f2937; /* gray-800 */
    font-size: 0.875rem;
}

.trust-badge:hover {
    transform: translateY(-1px);
}

@media (prefers-color-scheme: dark) {
    .trust-badge {
        background: rgba(30, 41, 59, 0.8);
        color: #f3f4f6; /* gray-100 */
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .trust-badge:hover {
        background: rgba(44, 55, 73, 0.9);
        transform: translateY(-2px);
    }
}

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nfc-stat-value {
        font-size: 1.5rem;
    }
    
    .glass-morphism {
        padding: 1rem;
    }
    
    .trust-badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .glass-morphism {
        background: rgba(30, 41, 59, 0.8);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    #plan-comparison th {
        background-color: rgba(30, 41, 59, 0.8);
        border-bottom-color: #334155;
    }
    
    #plan-comparison td {
        border-bottom-color: #334155;
    }
    
    #plan-comparison tr.highlight {
        background-color: rgba(51, 65, 85, 0.5);
    }
    
    .trust-badge {
        background: rgba(30, 41, 59, 0.8);
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    }
}