:root {
    --bg-black: #000000;
    --card-bg: #0a0e12;
    --neon-blue: #00f7ff;
    --neon-purple: #ff00ff;
    --text-white: #ffffff;
    --text-gray: rgba(255, 255, 255, 0.7);
    --text-light: rgba(255, 255, 255, 0.9);
    --card-hover: rgba(0, 247, 255, 0.1);
}

.features-bento {
    background-color: var(--bg-black);
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.bento-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 0 1rem;
}

.bento-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 247, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    border-color: var(--neon-blue);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.1);
}

/* Main Card Styles */
.main-card {
    grid-column: span 2;
    grid-row: span 2;
}

.main-card h2 {
    color: var(--neon-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.main-description {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.details {
    margin-top: 1.5rem;
}

.detail-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-text::before {
    content: '→';
    color: var(--neon-blue);
}

/* Specs Styling */
.specs {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.specs span {
    background: rgba(0, 247, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-light);
    border: 1px solid rgba(0, 247, 255, 0.2);
}

/* Card Common Elements */
.card-title {
    color: var(--neon-blue);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

/* Feature List Styling */
.features-list-card ul {
    list-style: none;
    padding: 0;
}

.features-list-card li {
    color: var(--text-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.feature-icon {
    font-size: 1.2rem;
    color: var(--neon-blue);
}

/* Support & Protection Cards */
.support-card, .protection-card {
    text-align: center;
}

.support-details, .protection-details, .price-details {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Price Card */
.price-card .price {
    font-size: 2.5rem;
    color: var(--neon-blue);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

/* Uptime Card */
.uptime-card .stat {
    font-size: 2.5rem;
    color: var(--neon-blue);
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.uptime-card .sub-text {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Animation sur hover */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 5px rgba(0, 247, 255, 0.1); }
    50% { box-shadow: 0 0 20px rgba(0, 247, 255, 0.2); }
    100% { box-shadow: 0 0 5px rgba(0, 247, 255, 0.1); }
}

.bento-card:hover {
    animation: pulseGlow 2s infinite;
}

/* Media Queries */
@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .main-card {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .specs {
        flex-direction: column;
    }
    
    .main-description {
        font-size: 1rem;
    }
}