/* Styles modernes pour HexaCloud - Inspirés de l'image fournie */

/* Page header moderne */
.page-header-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0 3rem;
    color: white;
    text-align: center;
}

.page-header-modern h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header-modern p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Section des offres moderne */
.offers-section-modern {
    padding: 4rem 0;
    background: #f8f9fa;
}

.offers-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Cards d'offres modernes */
.offer-card-modern {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.offer-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Carte featured (recommandée) */
.offer-card-modern.featured-modern {
    border: 3px solid #667eea;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.2);
}

.offer-card-modern.featured-modern:hover {
    box-shadow: 0 16px 32px rgba(102, 126, 234, 0.3);
}

/* Badge recommandé */
.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

/* Header de la carte */
.offer-header-modern {
    text-align: center;
    margin-bottom: 2rem;
}

.offer-header-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

/* Prix moderne */
.price-modern {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.price-modern .amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-modern .period {
    font-size: 1rem;
    color: #666;
}

/* Liste des fonctionnalités moderne */
.offer-features-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.offer-features-modern li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #555;
}

.offer-features-modern li:last-child {
    border-bottom: none;
}

.offer-features-modern svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Bouton de commande moderne */
.btn-order-modern {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f0f0f0;
    color: #667eea;
}

.btn-order-modern:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.btn-order-modern.featured-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-order-modern.featured-btn:hover {
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

/* Section des fonctionnalités du jeu */
.game-features {
    padding: 4rem 0;
    background: white;
}

.game-features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header-modern h1 {
        font-size: 2rem;
    }
    
    .offers-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .price-modern .amount {
        font-size: 2rem;
    }
}

/* Logo dans le header */
.logo img {
    height: 40px;
    vertical-align: middle;
    margin-right: 10px;
}
