* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Argesta', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f0f23 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Animation des étoiles */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 2s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Header et Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.0rem;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff71;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.76);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #892be28a, #FF1493, #00CED1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(109, 38, 175, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 20, 147, 0.8)); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #e0e6ed;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    position: relative;
}

.nav-links a:hover {
    color: #88a6ff;
    text-shadow: 0 0 10px rgba(136, 166, 255, 0.8);
    background: rgba(136, 166, 255, 0.1);
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 40px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(138, 43, 226, 0.5);
}

.tagline {
    font-size: 1.2rem;
    color: #B0C4DE;
    margin-bottom: 20px;
}

.hero {
    text-align: center;
    padding: 80px 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    color: #B0C4DE;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #8A2BE2;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
    border-color: rgba(255, 20, 147, 0.6);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    transition: all 0.5s ease;
    transform: rotate(45deg);
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    animation: shine 0.5s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #8A2BE2;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-card p {
    color: #B0C4DE;
    line-height: 1.6;
    margin-bottom: 20px;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FF1493;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #8A2BE2, #FF1493);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.5);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.features {
    padding: 80px 0;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #8A2BE2;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    /* color: #FF1493; */
}

footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(138, 43, 226, 0.3);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #B0C4DE;
}

footer {
  background-color: #111;
  color: white;
  padding: 50px 20px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}

.footer-section {
  width: 30%;
  min-width: 200px;
}

.footer-section h3 {
  margin-bottom: 15px;
  color: #00ffff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #aaa;
}

@media (max-width: 800px) {
  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }
  .footer-section {
    width: 100%;
  }
  .footer-section.center {
    text-align: center;
  }
  .footer-section.right {
    text-align: right;
  }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
} 

/* --- Améliorations Dashboard --- */
.dashboard-section {
    max-width: 1200px;
    margin: 3rem auto 2rem auto;
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(138,43,226,0.13);
    padding: 2.5rem 2.2rem 2rem 2.2rem;
    position: relative;
    z-index: 2;
}
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    border-bottom: 1.5px solid rgba(138,43,226,0.15);
    padding-bottom: 1.2rem;
}
.dashboard-header h2 {
    color: #8A2BE2;
    font-size: 2.2rem;
    letter-spacing: 1px;
}
.dashboard-header button {
    background: linear-gradient(90deg, #8A2BE2 60%, #FF1493 100%);
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(20,40,80,0.07);
}
.dashboard-header button:hover {
    background: linear-gradient(90deg, #FF1493 60%, #8A2BE2 100%);
}
.dashboard-cards {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.user-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.1rem;
    color: #B0C4DE;
}
.user-info-list li {
    margin-bottom: 0.7rem;
}
.service-card {
    min-width: 260px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: 0 4px 24px rgba(138,43,226,0.08);
    border: 1.5px solid rgba(138,43,226,0.13);
    margin-bottom: 0;
}
.service-card h3 {
    margin-bottom: 1.2rem;
    color: #FF1493;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}
.service-card ul {
    width: 100%;
    padding-left: 0.5rem;
    margin-bottom: 1rem;
}
.service-card li {
    color: #B0C4DE;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}
.service-card .empty {
    color: #888;
    font-style: italic;
}
#vpsChart {
    margin-top: 1.2rem;
    background: rgba(0,0,0,0.10);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(138,43,226,0.08);
}
@media (max-width: 900px) {
    .dashboard-section {
        padding: 1.2rem 0.5rem;
    }
    .dashboard-cards.service-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .service-card {
        min-width: unset;
        width: 100%;
    }
} 

/* === Styles extraits de gestion_vps.html === */
body {
  background: linear-gradient(120deg, #181c2f 0%, #23243a 100%);
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  color: #e6eaf3;
}
.vps-title {
  text-align: center;
  font-size: 2.5rem;
  background: linear-gradient(45deg,#8A2BE2,#FF1493,#00CED1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2.7rem;
  margin-top: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 1;
  position: relative;
}
.vps-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.vps-card {
  background: rgba(24,28,47,0.97);
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(138,43,226,0.18), 0 0 60px 0 #2d2dff22;
  border: 1.5px solid #2d2dff44;
  padding: 2.2rem 2rem 1.5rem 2rem;
  min-width: 270px;
  max-width: 340px;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
}
.vps-card:hover {
  transform: translateY(-7px) scale(1.025);
  box-shadow: 0 16px 48px 0 #8A2BE2aa, 0 0 80px 0 #2d2dff44;
  border-color: #8A2BE2;
}
.vps-card .vps-name {
  color: #B0C4DE;
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.vps-card .vps-type {
  font-size: 1.35rem;
  font-weight: 500;
  color: #fff;
  margin: 0.5rem 0 0.2rem 0;
  letter-spacing: 0.2px;
}
.vps-card .vps-status {
  display: inline-block;
  padding: 0.18rem 1.1rem;
  border-radius: 8px;
  font-size: 1.01rem;
  font-weight: 600;
  background: linear-gradient(90deg,#23243a,#2d2dff22);
  margin-bottom: 0.7rem;
}
.vps-card .vps-status.running {
  color: #38e38a;
  background: linear-gradient(90deg,#23243a,#38e38a22);
  border: 1.2px solid #38e38a99;
}
.vps-card .vps-status.stopped {
  color: #FF1493;
  background: linear-gradient(90deg,#23243a,#FF149322);
  border: 1.2px solid #FF149399;
}
.vps-card .vps-ip {
  color: #B0C4DE;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}
.vps-card .actions {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  margin-top: 0.7rem;
}
.vps-card button {
  border-radius: 10px;
  padding: 0.4rem 1.1rem 0.4rem 0.9rem;
  background: linear-gradient(45deg,#23243a,#8A2BE2);
  color: #fff;
  border: none;
  font-weight: 500;
  font-size: 1.01rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 1px 6px #8A2BE222 inset;
  transition: background 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.vps-card button:hover:not(:disabled) {
  background: linear-gradient(45deg,#8A2BE2,#00CED1);
  box-shadow: 0 2px 12px #00CED144;
}
.vps-card button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.vps-card .resource-bars {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
}
.vps-card .bar-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.vps-card .bar-label {
  width: 54px;
  color: #B0C4DE;
  font-size: 0.97rem;
  text-align: left;
  font-weight: 500;
}
.vps-card .bar-container {
  flex: 1;
  background: #23243a;
  border-radius: 5px;
  overflow: hidden;
  height: 13px;
  position: relative;
  box-shadow: 0 1px 6px #2d2dff22 inset;
}
.vps-card .bar-fill.cpu {
  height: 100%;
  width: 35%;
  background: linear-gradient(90deg,#2d2dff,#8A2BE2 80%);
  border-radius: 5px;
  box-shadow: 0 1px 6px #2d2dff22 inset;
  transition: width 0.7s cubic-bezier(.4,2,.6,1);
  position: relative;
}
.vps-card .bar-fill.ram {
  height: 100%;
  width: 60%;
  background: linear-gradient(90deg,#00CED1,#0099ff 80%);
  border-radius: 5px;
  box-shadow: 0 1px 6px #00CED122 inset;
  transition: width 0.7s cubic-bezier(.4,2,.6,1);
  position: relative;
}
.vps-card .bar-fill.disk {
  height: 100%;
  width: 45%;
  background: linear-gradient(90deg,#8A2BE2,#B0C4DE 80%);
  border-radius: 5px;
  box-shadow: 0 1px 6px #8A2BE222 inset;
  transition: width 0.7s cubic-bezier(.4,2,.6,1);
  position: relative;
}
.vps-card .bar-fill.in {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg,#38e38a,#B0C4DE 80%);
  border-radius: 5px;
  box-shadow: 0 1px 6px #38e38a22 inset;
  transition: width 0.7s cubic-bezier(.4,2,.6,1);
  position: relative;
}
.vps-card .bar-fill.out {
  height: 100%;
  width: 10%;
  background: linear-gradient(90deg,#FFD700,#8A2BE2 80%);
  border-radius: 5px;
  box-shadow: 0 1px 6px #FFD70022 inset;
  transition: width 0.7s cubic-bezier(.4,2,.6,1);
  position: relative;
}
.vps-card .bar-value {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.vps-graph-values { margin-bottom: 0.2rem; }
.gold-progress-container { width: 480px; margin: 18px auto 0 auto; text-align: center; }
.gold-progress-bar { position: relative; height: 38px; background: linear-gradient(90deg, #bfa14a 0%, #fffbe6 50%, #bfa14a 100%); border-radius: 18px; border: 2.5px solid #bfa14a; box-shadow: 0 2px 16px #bfa14a44; overflow: hidden; margin-bottom: 10px; }
.gold-progress-fill { position: absolute; left: 0; top: 0; bottom: 0; background: linear-gradient(90deg, #ffe066 0%, #bfa14a 100%); border-radius: 18px 0 0 18px; box-shadow: 0 0 12px #fffbe6cc inset; width: 0; transition: width 0.7s cubic-bezier(.4,2,.6,1); z-index: 2; }
.gold-progress-steps { position: absolute; left: 0; top: 0; right: 0; bottom: 0; display: flex; z-index: 3; }
.gold-step { flex: 1; border-right: 1.5px solid #e6c97a55; height: 100%; }
.gold-step:last-child { border-right: none; }
.gold-progress-text { font-family: 'Segoe UI', 'Inter', Arial, sans-serif; font-size: 1.5rem; font-weight: 600; color: #ffe066; letter-spacing: 0.12em; text-shadow: 0 2px 8px #bfa14a88; }
.gold-bars-group { margin: 18px 0 0 0; }
.gold-bar-row { display: flex; align-items: center; margin-bottom: 12px; }
.gold-bar-label { width: 54px; color: #ffe066; font-weight: 600; font-size: 1.08rem; text-align: left; margin-right: 10px; letter-spacing: 0.2px; }
.gold-bar-res { flex: 1; margin: 0 10px; }
.gold-bar-value { width: 48px; color: #ffe066; font-weight: 600; font-size: 1.08rem; text-align: right; letter-spacing: 0.2px; }
#toast-notif {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: linear-gradient(90deg,#8A2BE2,#FF1493);
  color: #fff;
  padding: 1.1rem 2.2rem;
  border-radius: 14px;
  font-size: 1.13rem;
  font-weight: 600;
  box-shadow: 0 4px 24px #8A2BE244;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#toast-notif.show {
  opacity: 1;
  pointer-events: auto;
} 

/* === Styles extraits de index.html === */
body {
  background: linear-gradient(120deg, #181c2f 0%, #23243a 100%);
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  color: #e6eaf3;
}
.stars, .nebula-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 0;
}
.stars { z-index: 1; }
.nebula-bg { z-index: 2; }
.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
  margin-top: 2.2rem;
}
.service-card {
  background: rgba(30,32,54,0.98);
  border-radius: 18px;
  box-shadow: 0 2px 18px #8A2BE244, 0 0 0 1.5px #8A2BE244 inset;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  min-width: 260px;
  max-width: 340px;
  color: #e6eaf3;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.service-card:hover {
  box-shadow: 0 4px 32px #8A2BE288, 0 0 0 2px #FF149344 inset;
  transform: translateY(-3px) scale(1.025);
}
.service-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  background: linear-gradient(45deg,#8A2BE2,#FF1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-card p {
  margin-bottom: 1.2rem;
  color: #B0C4DE;
  text-align: center;
}
.service-card .price {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1.1rem;
  color: #FF1493;
}
.service-card .btn {
  width: 90%;
  margin: 0 auto 0.2rem auto;
  padding: 0.7rem 0;
  border-radius: 12px;
  background: linear-gradient(90deg,#FF1493,#8A2BE2);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 2px 12px #8A2BE244;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s;
  display: block;
  cursor: pointer;
}
.service-card .btn:hover {
  background: linear-gradient(90deg,#8A2BE2,#FF1493);
  box-shadow: 0 4px 24px #8A2BE288;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.feature-item {
  background: linear-gradient(120deg,rgba(30,32,54,0.92) 60%,rgba(60,70,110,0.82) 100%);
  border-radius: 22px;
  box-shadow: 0 4px 32px #8A2BE244, 0 0 0 2px #FF149344 inset;
  padding: 2.7rem 2.1rem 2.1rem 2.1rem;
  min-width: 240px;
  max-width: 320px;
  color: #e6eaf3;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s, background 0.22s;
  backdrop-filter: blur(7px) saturate(1.2);
  border: 1.5px solid #8A2BE244;
  overflow: visible;
}
.feature-item:hover {
  box-shadow: 0 8px 48px #FF149366, 0 0 0 2.5px #8A2BE2cc inset;
  transform: translateY(-7px) scale(1.045);
  background: linear-gradient(120deg,rgba(40,44,80,0.98) 60%,rgba(80,90,150,0.92) 100%);
}
.feature-item .feature-icon {
  font-size: 2.7rem;
  margin-bottom: 1.1rem;
  /* color: #fff; */
  position: relative;
  z-index: 2;
  /* background: linear-gradient(45deg,#8A2BE2,#FF1493,#00CED1); */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  /* background-clip: text; */
  /* text-shadow: 0 2px 16px #8A2BE2cc, 0 0 18px #FF149388; */
}
.feature-item .feature-icon::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
  background: radial-gradient(circle, #8A2BE2 0%, #FF1493 60%, transparent 100%);
  filter: blur(18px) brightness(1.2);
  z-index: -1;
  opacity: 0.55;
  animation: haloGlow 2.2s infinite alternate;
}
@keyframes haloGlow {
  0% { opacity: 0.45; filter: blur(18px) brightness(1.1); }
  100% { opacity: 0.7; filter: blur(24px) brightness(1.3); }
}
.feature-item h3 {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  background: linear-gradient(45deg,#8A2BE2,#FF1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}
.feature-item p {
  color: #B0C4DE;
  text-align: center;
  font-size: 1.07rem;
  margin-bottom: 0;
  margin-top: 0.2rem;
}
.feature-item .feature-badge {
  position: absolute;
  top: -1.1rem;
  right: -1.1rem;
  background: linear-gradient(90deg,#FF1493,#8A2BE2);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.32em 1.1em;
  border-radius: 16px;
  box-shadow: 0 2px 8px #FF149344;
  letter-spacing: 0.5px;
  animation: badgePop 1.2s cubic-bezier(.4,2,.6,1) infinite alternate;
}
@keyframes badgePop {
  0% { transform: scale(1) rotate(8deg); }
  100% { transform: scale(1.09) rotate(-8deg); }
} 

/* vps css*/
footer {  
      background-color: #111;
      color: white;
      padding: 50px 20px 20px 20px;
      font-family: Arial, sans-serif;
    }

    .footer-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .footer-columns {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      text-align: left;
    }

    .footer-section {
      width: 30%;
      min-width: 200px;
    }

    .footer-section h3 {
      margin-bottom: 15px;
      color: #00ffff;
    }

    .footer-section ul {
      list-style: none;
      padding: 0;
    }

    .footer-section li {
      margin-bottom: 10px;
    }

    .footer-section a {
      color: white;
      text-decoration: none;
    }

    .footer-section a:hover {
      text-decoration: underline;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      font-size: 0.9em;
      color: #aaa;
    }

    /* Responsive : colonnes en pile sur mobile */
    @media (max-width: 800px) {
      .footer-columns {
        flex-direction: column;
        gap: 30px;
      }

      .footer-section {
        width: 100%;
      }

      .footer-section.center {
        text-align: center;
      }

      .footer-section.right {
        text-align: right;
      }
    }
    /* vps.html css*/ 
    .feature-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2.5rem;
      margin-top: 2.5rem;
    }
    .feature-item {
      background: linear-gradient(120deg,rgba(30,32,54,0.92) 60%,rgba(60,70,110,0.82) 100%);
      border-radius: 22px;
      box-shadow: 0 4px 32px #8A2BE244, 0 0 0 2px #FF149344 inset;
      padding: 2.7rem 2.1rem 2.1rem 2.1rem;
      min-width: 240px;
      max-width: 320px;
      color: #e6eaf3;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      transition: box-shadow 0.22s, transform 0.22s, background 0.22s;
      backdrop-filter: blur(7px) saturate(1.2);
      border: 1.5px solid #8A2BE244;
      overflow: visible;
    }
    .feature-item:hover {
      box-shadow: 0 8px 48px #FF149366, 0 0 0 2.5px #8A2BE2cc inset;
      transform: translateY(-7px) scale(1.045);
      background: linear-gradient(120deg,rgba(40,44,80,0.98) 60%,rgba(80,90,150,0.92) 100%);
    }
    .feature-item .feature-icon {
      font-size: 2.7rem;
      margin-bottom: 1.1rem;
      color: #fff;
      position: relative;
      z-index: 2;
      background: linear-gradient(45deg,#8A2BE2,#FF1493,#00CED1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 2px 16px #8A2BE2cc, 0 0 18px #FF149388;
    }
    .feature-item .feature-icon::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%,-50%);
      width: 3.7rem;
      height: 3.7rem;
      border-radius: 50%;
      background: radial-gradient(circle, #8A2BE2 0%, #FF1493 60%, transparent 100%);
      filter: blur(18px) brightness(1.2);
      z-index: -1;
      opacity: 0.55;
      animation: haloGlow 2.2s infinite alternate;
    }
    @keyframes haloGlow {
      0% { opacity: 0.45; filter: blur(18px) brightness(1.1); }
      100% { opacity: 0.7; filter: blur(24px) brightness(1.3); }
    }
    .feature-item h3 {
      font-size: 1.22rem;
      font-weight: 700;
      margin-bottom: 0.7rem;
      background: linear-gradient(45deg,#8A2BE2,#FF1493);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 0.5px;
    }
    .feature-item p {
      color: #B0C4DE;
      text-align: center;
      font-size: 1.07rem;
      margin-bottom: 0;
      margin-top: 0.2rem;
    }
    .feature-item .feature-badge {
      position: absolute;
      top: -1.1rem;
      right: -1.1rem;
      background: linear-gradient(90deg,#FF1493,#8A2BE2);
      color: #fff;
      font-size: 0.92rem;
      font-weight: 700;
      padding: 0.32em 1.1em;
      border-radius: 16px;
      box-shadow: 0 2px 8px #FF149344;
      letter-spacing: 0.5px;
      animation: badgePop 1.2s cubic-bezier(.4,2,.6,1) infinite alternate;
    }
    @keyframes badgePop {
      0% { transform: scale(1) rotate(8deg); }
      100% { transform: scale(1.09) rotate(-8deg); }
    }
    #vpsOffers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: stretch;
      width: 100%;
      gap: 2rem;
      margin: 0 auto;
    }
    /* epscae_client css*/ 
     body {
      background: linear-gradient(120deg, #181c2f 0%, #23243a 100%);
      font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
      color: #e6eaf3;
    }
    .client-title {
      text-align: center;
      font-size: 2.5rem;
      background: linear-gradient(45deg,#8A2BE2,#FF1493,#00CED1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1.1rem;
      margin-top: 2.5rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      z-index: 1;
      position: relative;
    }
    .subtitle {
      text-align: center;
      color: #B0C4DE;
      font-size: 1.18rem;
      margin-bottom: 2.7rem;
      margin-top: 0.2rem;
      font-weight: 400;
      letter-spacing: 0.2px;
    }
    .dashboard-sections {
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem;
      justify-content: center;
      margin-bottom: 2.5rem;
    }
    .dashboard-card {
      background: rgba(24,28,47,0.97);
      border-radius: 22px;
      box-shadow: 0 8px 32px 0 rgba(138,43,226,0.18), 0 0 60px 0 #2d2dff22;
      border: 1.5px solid #2d2dff44;
      padding: 2.2rem 2rem 1.5rem 2rem;
      min-width: 230px;
      max-width: 300px;
      text-align: center;
      margin-bottom: 2.5rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
      text-decoration: none;
      color: #e6eaf3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.7rem;
    }
    .dashboard-card:hover {
      transform: translateY(-7px) scale(1.025);
      box-shadow: 0 16px 48px 0 #8A2BE2aa, 0 0 80px 0 #2d2dff44;
      border-color: #8A2BE2;
    }
    .card-icon {
      font-size: 2.3rem;
      margin-bottom: 0.2rem;
      filter: drop-shadow(0 2px 8px #8A2BE2aa);
    }
    .card-title {
      font-size: 1.35rem;
      font-weight: 500;
      color: #fff;
      margin: 0.5rem 0 0.2rem 0;
      letter-spacing: 0.2px;
    }
    .card-desc {
      color: #B0C4DE;
      font-size: 1.05rem;
      margin-bottom: 0.7rem;
    }
    /* index css */ 
      body {
      background: linear-gradient(120deg, #181c2f 0%, #23243a 100%);
      font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
      color: #e6eaf3;
    }
    .stars, .nebula-bg {
      position: fixed;
      top: 0; left: 0; width: 100vw; height: 100vh;
      pointer-events: none;
      z-index: 0;
    }
    .stars { z-index: 1; }
     .nebula-bg { z-index: 2; }
    .service-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2.2rem;
      margin-top: 2.2rem;
    }
    .service-card {
      background: rgba(30,32,54,0.98);
      border-radius: 18px;
      box-shadow: 0 2px 18px #8A2BE244, 0 0 0 1.5px #8A2BE244 inset;
      padding: 2.2rem 1.5rem 1.5rem 1.5rem;
      min-width: 260px;
      max-width: 340px;
      color: #e6eaf3;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      transition: box-shadow 0.18s, transform 0.18s;
    }
    .service-card:hover {
      box-shadow: 0 4px 32px #8A2BE288, 0 0 0 2px #FF149344 inset;
      transform: translateY(-3px) scale(1.025);
    }
    .service-card h3 {
      font-size: 1.45rem;
      font-weight: 700;
      margin-bottom: 0.7rem;
      background: linear-gradient(45deg,#8A2BE2,#FF1493);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .service-card p {
      margin-bottom: 1.2rem;
      color: #B0C4DE;
      text-align: center;
    }
    .service-card .price {
      font-size: 1.6rem;
      font-weight: bold;
      margin-bottom: 1.1rem;
      color: #FF1493;
    }
    .service-card .btn {
      width: 90%;
      margin: 0 auto 0.2rem auto;
      padding: 0.7rem 0;
      border-radius: 12px;
      background: linear-gradient(90deg,#FF1493,#8A2BE2);
      color: #fff;
      font-weight: 600;
      font-size: 1.1rem;
      border: none;
      box-shadow: 0 2px 12px #8A2BE244;
      text-align: center;
      text-decoration: none;
      transition: background 0.18s, box-shadow 0.18s;
      display: block;
      cursor: pointer;
    }
    .service-card .btn:hover {
      background: linear-gradient(90deg,#8A2BE2,#FF1493);
      box-shadow: 0 4px 24px #8A2BE288;
    }
    .feature-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2.5rem;
      margin-top: 2.5rem;
    }
    .feature-item {
      background: linear-gradient(120deg,rgba(30,32,54,0.92) 60%,rgba(60,70,110,0.82) 100%);
      border-radius: 22px;
      box-shadow: 0 4px 32px #8A2BE244, 0 0 0 2px #FF149344 inset;
      padding: 2.7rem 2.1rem 2.1rem 2.1rem;
      min-width: 240px;
      max-width: 320px;
      color: #e6eaf3;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      transition: box-shadow 0.22s, transform 0.22s, background 0.22s;
      backdrop-filter: blur(7px) saturate(1.2);
      border: 1.5px solid #8A2BE244;
      overflow: visible;
    }
    .feature-item:hover {
      box-shadow: 0 8px 48px #FF149366, 0 0 0 2.5px #8A2BE2cc inset;
      transform: translateY(-7px) scale(1.045);
      background: linear-gradient(120deg,rgba(40,44,80,0.98) 60%,rgba(80,90,150,0.92) 100%);
    }
    .feature-item .feature-icon {
      font-size: 2.7rem;
      margin-bottom: 1.1rem;
      color: #fff;
      position: relative;
      z-index: 2;
      background: linear-gradient(45deg,#8A2BE2,#FF1493,#00CED1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 2px 16px #8A2BE2cc, 0 0 18px #FF149388;
    }
    .feature-item .feature-icon::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%,-50%);
      width: 3.7rem;
      height: 3.7rem;
      border-radius: 50%;
      background: radial-gradient(circle, #8A2BE2 0%, #FF1493 60%, transparent 100%);
      filter: blur(18px) brightness(1.2);
      z-index: -1;
      opacity: 0.55;
      animation: haloGlow 2.2s infinite alternate;
    }
    @keyframes haloGlow {
      0% { opacity: 0.45; filter: blur(18px) brightness(1.1); }
      100% { opacity: 0.7; filter: blur(24px) brightness(1.3); }
    }
    .feature-item h3 {
      font-size: 1.22rem;
      font-weight: 700;
      margin-bottom: 0.7rem;
      background: linear-gradient(45deg,#8A2BE2,#FF1493);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 0.5px;
    }
    .feature-item p {
      color: #B0C4DE;
      text-align: center;
      font-size: 1.07rem;
      margin-bottom: 0;
      margin-top: 0.2rem;
    }
    .feature-item .feature-badge {
      position: absolute;
      top: -1.1rem;
      right: -1.1rem;
      background: linear-gradient(90deg,#FF1493,#8A2BE2);
      color: #fff;
      font-size: 0.92rem;
      font-weight: 700;
      padding: 0.32em 1.1em;
      border-radius: 16px;
      box-shadow: 0 2px 8px #FF149344;
      letter-spacing: 0.5px;
      animation: badgePop 1.2s cubic-bezier(.4,2,.6,1) infinite alternate;
    }
    @keyframes badgePop {
      0% { transform: scale(1) rotate(8deg); }
      100% { transform: scale(1.09) rotate(-8deg); }
    }
    /* admin_panel css*/
     body {
      background: linear-gradient(120deg, #181c2f 0%, #23243a 100%);
      font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
      color: #e6eaf3;
    }
    .admin-panel-container {
      max-width: 1200px;
      margin: 4rem auto 0 auto;
      background: rgba(24,28,47,0.97);
      border-radius: 22px;
      box-shadow: 0 8px 32px 0 rgba(138,43,226,0.18), 0 0 60px 0 #2d2dff22;
      border: 1.5px solid #2d2dff44;
      padding: 2.5rem 2rem 2rem 2rem;
      position: relative;
      overflow: hidden;
    }
    .admin-panel-title {
      font-size: 2.2rem;
      background: linear-gradient(45deg,#8A2BE2,#FF1493,#00CED1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 2.2rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-align: center;
    }
    .admin-section {
      margin-bottom: 2.5rem;
    }
    .admin-section h3 {
      color: #8A2BE2;
      margin-bottom: 1.2rem;
      font-size: 1.3rem;
      letter-spacing: 0.5px;
    }
    .admin-table {
      width: 100%;
      border-radius: 10px;
      overflow: hidden;
      background: rgba(0,0,0,0.08);
      font-size: 1.01rem;
      color: #e6eaf3;
      border-collapse: separate;
      border-spacing: 0;
      box-shadow: 0 1px 6px #2d2dff22 inset;
      margin-bottom: 2rem;
    }
    .admin-table th, .admin-table td {
      padding: 0.7rem 0.5rem;
      border-bottom: 1px solid #23243a;
    }
    .admin-table thead tr {
      background: rgba(255,255,255,0.04);
    }
    .admin-table tbody tr:hover {
      background: rgba(138,43,226,0.07);
      transition: background 0.18s;
    }
    .admin-logout-btn {
      border-radius: 10px;
      padding: 0.7rem 1.5rem;
      background: linear-gradient(45deg,#FF1493,#8A2BE2);
      color: #fff;
      border: none;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      box-shadow: 0 2px 12px #FF149344;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 2rem;
      margin-left: auto;
      margin-right: 0;
      float: right;
      transition: background 0.18s, box-shadow 0.18s;
      cursor: pointer;
    }
    .admin-logout-btn:hover {
      background: linear-gradient(45deg,#8A2BE2,#FF1493);
      box-shadow: 0 2px 12px #8A2BE244;
    }
    /* facture css */ 
      body {
      background: linear-gradient(120deg, #181c2f 0%, #23243a 100%);
      font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
      color: #e6eaf3;
    }
    .facture-title {
      text-align: center;
      font-size: 2.5rem;
      background: linear-gradient(45deg,#8A2BE2,#FF1493,#00CED1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 2.7rem;
      margin-top: 2.5rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      z-index: 1;
      position: relative;
    }
    .facture-summary-grid {
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
      position: relative;
    }
    .facture-summary-card {
      background: rgba(24,28,47,0.97);
      border-radius: 18px;
      box-shadow: 0 8px 32px 0 rgba(138,43,226,0.18), 0 0 60px 0 #2d2dff22;
      border: 1.5px solid #2d2dff44;
      padding: 1.2rem 2rem;
      min-width: 160px;
      text-align: center;
      margin-bottom: 1.2rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
    }
    .facture-summary-card .summary-title {
      color: #B0C4DE;
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-bottom: 0.2rem;
    }
    .facture-summary-card .summary-value {
      font-size: 2.1rem;
      font-weight: bold;
      margin: 0.5rem 0;
      color: #fff;
    }
    .facture-summary-card .summary-icon {
      font-size: 1.5rem;
      filter: drop-shadow(0 2px 8px #8A2BE2aa);
    }
    .facture-summary-card.attente { border-color: #FFA50099; }
    .facture-summary-card.payees { border-color: #38e38a99; }
    .facture-summary-card.retard { border-color: #FF149399; }
    .facture-summary-card.total { border-color: #8A2BE299; }
    .facture-filtres {
      margin: 2.5rem 0 2rem 0;
      text-align: center;
    }
    .filtre-btn {
      border-radius: 18px;
      padding: 0.5rem 1.3rem;
      margin: 0 0.3rem;
      background: linear-gradient(45deg,#23243a,#8A2BE2);
      color: #fff;
      border: none;
      font-weight: 500;
      transition: background 0.18s, box-shadow 0.18s;
      box-shadow: 0 1px 6px #8A2BE222 inset;
      cursor: pointer;
    }
    .filtre-btn.active {
      background: linear-gradient(45deg,#8A2BE2,#FF1493);
      color: #fff;
    }
    .filtre-btn.refresh {
      background: linear-gradient(45deg,#23243a,#00CED1);
      color: #B0C4DE;
    }
    .facture-section-card {
      background: rgba(24,28,47,0.97);
      border-radius: 18px;
      box-shadow: 0 8px 32px 0 rgba(138,43,226,0.13);
      border: 1.5px solid #2d2dff44;
      padding: 2.2rem 1.5rem 1.5rem 1.5rem;
      margin-bottom: 2.5rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
    }
    .facture-section-title {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 1.2rem;
      letter-spacing: 0.2px;
    }
    .facture-section-card.attente .facture-section-title { color: #FFA500; }
    .facture-section-card.payees .facture-section-title { color: #38e38a; }
    .facture-section-card.retard .facture-section-title { color: #FF1493; }
    .facture-table {
      width: 100%;
      border-radius: 10px;
      overflow: hidden;
      background: rgba(0,0,0,0.08);
      font-size: 1.01rem;
      color: #e6eaf3;
      border-collapse: separate;
      border-spacing: 0;
      box-shadow: 0 1px 6px #2d2dff22 inset;
    }
    .facture-table th, .facture-table td {
      padding: 0.7rem 0.5rem;
      border-bottom: 1px solid #23243a;
    }
    .facture-table thead tr {
      background: rgba(255,255,255,0.04);
    }
    .facture-table tbody tr:hover {
      background: rgba(138,43,226,0.07);
      transition: background 0.18s;
    }
    .facture-action {
      border-radius: 10px;
      padding: 0.4rem 1rem;
      margin: 0 0.2rem;
      background: linear-gradient(45deg,#8A2BE2,#FF1493);
      color: #fff;
      border: none;
      font-weight: 500;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 1px 6px #8A2BE222 inset;
      transition: background 0.18s, box-shadow 0.18s;
      cursor: pointer;
    }
    .facture-action:hover {
      background: linear-gradient(45deg,#00CED1,#8A2BE2);
      box-shadow: 0 2px 12px #00CED144;
    }
    /* web */
     .feature-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2.5rem;
      margin-top: 2.5rem;
    }
    .feature-item {
      background: linear-gradient(120deg,rgba(30,32,54,0.92) 60%,rgba(60,70,110,0.82) 100%);
      border-radius: 22px;
      box-shadow: 0 4px 32px #8A2BE244, 0 0 0 2px #FF149344 inset;
      padding: 2.7rem 2.1rem 2.1rem 2.1rem;
      min-width: 240px;
      max-width: 320px;
      color: #e6eaf3;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      transition: box-shadow 0.22s, transform 0.22s, background 0.22s;
      backdrop-filter: blur(7px) saturate(1.2);
      border: 1.5px solid #8A2BE244;
      overflow: visible;
    }
    .feature-item:hover {
      box-shadow: 0 8px 48px #FF149366, 0 0 0 2.5px #8A2BE2cc inset;
      transform: translateY(-7px) scale(1.045);
      background: linear-gradient(120deg,rgba(40,44,80,0.98) 60%,rgba(80,90,150,0.92) 100%);
    }
    .feature-item .feature-icon {
      font-size: 2.7rem;
      margin-bottom: 1.1rem;
      color: #fff;
      position: relative;
      z-index: 2;
      background: linear-gradient(45deg,#8A2BE2,#FF1493,#00CED1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 2px 16px #8A2BE2cc, 0 0 18px #FF149388;
    }
    .feature-item .feature-icon::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%,-50%);
      width: 3.7rem;
      height: 3.7rem;
      border-radius: 50%;
      background: radial-gradient(circle, #8A2BE2 0%, #FF1493 60%, transparent 100%);
      filter: blur(18px) brightness(1.2);
      z-index: -1;
      opacity: 0.55;
      animation: haloGlow 2.2s infinite alternate;
    }
    @keyframes haloGlow {
      0% { opacity: 0.45; filter: blur(18px) brightness(1.1); }
      100% { opacity: 0.7; filter: blur(24px) brightness(1.3); }
    }
    .feature-item h3 {
      font-size: 1.22rem;
      font-weight: 700;
      margin-bottom: 0.7rem;
      background: linear-gradient(45deg,#8A2BE2,#FF1493);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 0.5px;
    }
    .feature-item p {
      color: #B0C4DE;
      text-align: center;
      font-size: 1.07rem;
      margin-bottom: 0;
      margin-top: 0.2rem;
    }
    .feature-item .feature-badge {
      position: absolute;
      top: -1.1rem;
      right: -1.1rem;
      background: linear-gradient(90deg,#FF1493,#8A2BE2);
      color: #fff;
      font-size: 0.92rem;
      font-weight: 700;
      padding: 0.32em 1.1em;
      border-radius: 16px;
      box-shadow: 0 2px 8px #FF149344;
      letter-spacing: 0.5px;
      animation: badgePop 1.2s cubic-bezier(.4,2,.6,1) infinite alternate;
    }
    @keyframes badgePop {
      0% { transform: scale(1) rotate(8deg); }
      100% { transform: scale(1.09) rotate(-8deg); }
    }
    #webOffers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: stretch;
      width: 100%;
      gap: 2rem;
      margin: 0 auto;
    }
