/* ================================
   FASTPANEL - CATALOGUE GAME SERVERS
   Style professionnel cohérent avec index.php
   ================================ */

/* Variables CSS (héritées de index-style.css) */
:root {
    --primary-900: #0f172a;
    --primary-800: #1e293b;
    --primary-700: #334155;
    --primary-600: #475569;
    --primary-500: #64748b;
    --primary-400: #94a3b8;
    --primary-300: #cbd5e1;
    --primary-200: #e2e8f0;
    --primary-100: #f1f5f9;

    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    --blue-300: #93c5fd;

    --green-500: #22c55e;
    --green-400: #4ade80;

    --orange-500: #f97316;
    --orange-400: #fb923c;

    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --radius-sm: 6px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ================================
   HERO SECTION
   ================================ */

.catalog-hero {
    background: linear-gradient(135deg, var(--primary-900) 0%, #0c1929 50%, var(--primary-800) 100%);
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
}

/* Fondu en bas du hero vers la section suivante */
.catalog-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(15, 23, 42, 0.4) 40%,
        rgba(15, 23, 42, 0.8) 70%,
        var(--primary-900) 100%
    );
    z-index: 3;
    pointer-events: none;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(37, 99, 235, 0.08) 0%, transparent 40%);
    z-index: 1;
}

.catalog-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--green-400);
    font-size: 14px;
}

.hero-badge span {
    color: var(--green-400);
    font-size: 14px;
    font-weight: 600;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--green-400) 0%, var(--blue-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-orange {
    background: linear-gradient(135deg, var(--orange-400) 0%, var(--orange-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--primary-300);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ================================
   SEARCH BOX
   ================================ */

.search-wrapper {
    max-width: 500px;
    margin: 0 auto 32px;
}

.search-box {
    position: relative;
    margin-bottom: 16px;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-400);
    font-size: 16px;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 16px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 16px;
    transition: all 0.2s ease;
}

.search-input::placeholder {
    color: var(--primary-400);
}

.search-input:focus {
    outline: none;
    border-color: var(--green-400);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.search-clear {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--primary-300);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.search-clear:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.search-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tag-filter {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    color: var(--primary-300);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tag-filter:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.tag-filter.active {
    background: var(--green-500);
    border-color: var(--green-500);
    color: var(--white);
}

/* Hidden tags container */
.hidden-tags {
    display: contents;
}

/* Tag toggle button (Voir plus/moins) */
.tag-toggle {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-full);
    padding: 8px 14px;
    color: var(--blue-400);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tag-toggle:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
}

.tag-toggle.expanded {
    background: var(--blue-500);
    border-color: var(--blue-500);
    color: var(--white);
}

.tag-toggle .toggle-icon {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.tag-toggle.expanded .toggle-icon {
    transform: rotate(180deg);
}

/* Hero Stats - Style identique aux garanties */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-300);
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.stat-item:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.stat-item i {
    color: var(--green-400);
    font-size: 14px;
}

/* ================================
   CATALOG SECTION
   ================================ */

.catalog-section {
    background: var(--primary-900);
    padding: 80px 0;
}

.catalog-header {
    text-align: center;
    margin-bottom: 48px;
}

.catalog-header.upcoming-header {
    margin-top: 80px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.title-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green-400) 0%, var(--green-500) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.title-icon.upcoming-icon {
    background: linear-gradient(135deg, var(--orange-400) 0%, var(--orange-500) 100%);
}

.section-subtitle {
    color: var(--primary-300);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ================================
   GAMES GRID & CARDS
   ================================ */

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.game-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: var(--green-400);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
}

.game-card.upcoming {
    opacity: 0.85;
}

.game-card.upcoming:hover {
    border-color: var(--orange-400);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

/* Card Status Badge */
.card-status {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.card-status.available {
    background: rgba(34, 197, 94, 0.2);
    color: var(--green-400);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.card-status.upcoming {
    background: rgba(249, 115, 22, 0.2);
    color: var(--orange-400);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse-dot 2s infinite;
}

/* Card Image */
.card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .card-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.9) 100%);
}

.upcoming-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(15, 23, 42, 0.95) 100%);
}

.coming-soon-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(249, 115, 22, 0.9);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Card Content */
.card-content {
    padding: 24px;
}

.game-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.game-description {
    font-size: 0.875rem;
    color: var(--primary-300);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.game-tags .tag {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-300);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 500;
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price {
    display: flex;
    flex-direction: column;
}

.price-from {
    font-size: 11px;
    color: var(--primary-400);
}

.price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-400);
}

.price-period {
    font-size: 12px;
    color: var(--primary-400);
}

.btn-order {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green-400) 0%, var(--green-500) 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
    color: var(--white);
    text-decoration: none;
}

.btn-notify {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-400);
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: not-allowed;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--primary-400);
}

.no-results i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.no-results h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.no-results p {
    font-size: 0.9375rem;
}

/* No Upcoming Games Card (same style as support-card but orange) */
.no-upcoming-card {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.no-upcoming-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--orange-400) 0%, var(--orange-500) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    flex-shrink: 0;
}

.btn-proposal {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange-400) 0%, var(--orange-500) 100%);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-proposal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    color: var(--white);
    text-decoration: none;
}

.btn-proposal-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-proposal-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    text-decoration: none;
}

/* ================================
   STEPS SECTION
   ================================ */

.steps-section {
    background: linear-gradient(180deg, var(--primary-900) 0%, var(--primary-800) 100%);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--blue-400);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-400);
    font-size: 24px;
}

.step-card h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    color: var(--primary-300);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.step-connector {
    color: var(--primary-500);
    font-size: 16px;
}

/* ================================
   SUPPORT SECTION
   ================================ */

.support-section {
    background: var(--primary-800);
    padding: 60px 0;
}

.support-card {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.support-content {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.support-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    flex-shrink: 0;
}

.support-text h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.support-text p {
    color: var(--primary-300);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.support-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-support {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-support:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    color: var(--white);
    text-decoration: none;
}

.btn-support-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-support-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    text-decoration: none;
}

/* ================================
   CTA SECTION
   ================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-900) 0%, #0c1929 100%);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    color: var(--primary-300);
    font-size: 1rem;
    margin-bottom: 32px;
}

.cta-buttons {
    margin-bottom: 24px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green-400) 0%, var(--green-500) 100%);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.4);
    color: var(--white);
    text-decoration: none;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-400);
    font-size: 14px;
    font-weight: 500;
}

.cta-features span i {
    color: var(--green-400);
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

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

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .steps-grid {
        flex-direction: column;
        gap: 24px;
    }

    .step-card {
        max-width: 100%;
        width: 100%;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .support-card,
    .no-upcoming-card {
        flex-direction: column;
        text-align: center;
    }

    .support-content,
    .no-upcoming-card .support-content {
        flex-direction: column;
    }

    .support-actions,
    .no-upcoming-card .support-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .catalog-hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .search-tags {
        justify-content: center;
    }

    .section-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 8px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .catalog-hero {
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .search-input {
        padding: 14px 44px;
        font-size: 14px;
    }

    .tag-filter {
        padding: 6px 12px;
        font-size: 12px;
    }

    .hero-stats {
        gap: 10px;
    }

    .stat-item {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .card-content {
        padding: 20px;
    }

    .game-title {
        font-size: 1.125rem;
    }

    .card-footer {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .btn-order,
    .btn-notify {
        justify-content: center;
        width: 100%;
    }

    .step-card {
        padding: 24px 20px;
    }

    .support-card {
        padding: 24px;
    }

    .support-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-support,
    .btn-support-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-features {
        flex-direction: column;
        gap: 12px;
    }

    .no-upcoming-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .no-upcoming-card .support-content {
        flex-direction: column;
    }

    .no-upcoming-card .support-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-proposal,
    .btn-proposal-secondary {
        width: 100%;
        justify-content: center;
    }
}
