.randonnee-restricted-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}
.restricted-info-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}
.restricted-info-summary h2 {
    margin: 0 0 20px 0;
    font-size: 1.3rem;
    color: #333;
}
.restricted-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.restricted-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}
.restricted-info-item .icon {
    font-size: 1.2rem;
}
.restricted-info-item .label {
    color: #666;
}
.restricted-info-item .value {
    font-weight: 500;
}
.restricted-message-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
}
.restricted-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}
.restricted-message-box h3 {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
}
.restricted-message-box p {
    font-size: 1rem;
    margin: 0 0 10px 0;
    opacity: 0.95;
    line-height: 1.6;
}
.restricted-status {
    font-style: italic;
    opacity: 0.85;
    margin-top: 15px !important;
}
.restricted-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}
.btn-restricted-primary,
.btn-restricted-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}
.btn-restricted-primary {
    background: #fff;
    color: #667eea;
}
.btn-restricted-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    color: #667eea;
}
.btn-restricted-secondary {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-restricted-secondary:hover {
    background: rgba(255,255,255,0.3);
    border-color: #fff;
    color: #fff;
}
.restricted-benefits {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
}
.restricted-benefits h4 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    color: #333;
}
.restricted-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.restricted-benefits li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
}
.restricted-benefits li:last-child {
    border-bottom: none;
}
@media (max-width: 600px) {
    .restricted-message-box {
        padding: 30px 20px;
    }
    .restricted-buttons {
        flex-direction: column;
    }
    .btn-restricted-primary,
    .btn-restricted-secondary {
        width: 100%;
        text-align: center;
    }
}
