/* Reset et variables CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d4ff;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Base styles */
body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Particules d'arrière-plan */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-login {
    background: var(--gradient-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: white !important;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 2.5rem;
    position: relative;
    width: 100%;
    height: auto;
}

.card {
    position: absolute;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.card p {
    color: var(--text-secondary);
}

.card-residential, .card-vps, .card-rotatif {
    position: relative;
    min-width: 260px;
    min-height: 180px;
    margin: 0;
    z-index: 1;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: float 5s ease-in-out infinite;
}
.card-vps { animation-delay: 1.5s; }
.card-rotatif { animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

.floating-cards .card:hover {
    transform: scale(1.07) translateY(-8px) !important;
    box-shadow: 0 8px 40px 8px rgba(0,212,255,0.15);
    animation-play-state: paused;
}

/* Sections générales */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
    justify-items: center;
    align-items: stretch;
}

.service-card {
    width: 100%;
    max-width: 400px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.featured-service {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.featured-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.service-highlight {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.service-features i {
    color: var(--primary-color);
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
    justify-items: center;
    align-items: stretch;
}

.pricing-card {
    width: 100%;
    max-width: 400px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative !important;
    background: var(--card-bg);
    border: 1.5px solid var(--primary-color);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.08);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    box-shadow: 0 12px 40px 0 rgba(0,212,255,0.18);
    border-color: var(--accent-color);
}

.pricing-card.featured {
    padding-top: 3.5rem;
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute !important;
    top: 18px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
    pointer-events: none;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 1.7rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.pricing-features i {
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.contact-method i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-form {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Modal VPS */
.vps-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 20, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.vps-modal {
    background: rgba(20, 22, 34, 0.98);
    border-radius: 18px;
    box-shadow: 0 8px 40px 8px rgba(0,212,255,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    min-width: 340px;
    max-width: 95vw;
    color: var(--text-primary);
    position: relative;
    animation: slideInUp 0.4s;
}

.vps-modal h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    text-align: center;
}

.vps-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}
.vps-modal .close-modal:hover {
    color: var(--accent-color);
}

.vps-modal .modal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}
.vps-modal label {
    font-weight: 500;
    margin-right: 1rem;
}
.vps-modal select, .vps-modal input[type=number] {
    background: #181a22;
    color: var(--text-primary);
    border: 1.5px solid var(--primary-color);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    min-width: 120px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.vps-modal select:focus, .vps-modal input[type=number]:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(124,58,237,0.15);
}
.vps-modal select option {
    background: #181a22;
    color: var(--text-primary);
}
.vps-modal .modal-row.os-row select {
    min-width: 120px;
}
.vps-modal .modal-price {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin: 1.5rem 0 1rem 0;
}
.vps-modal .modal-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.vps-modal .btn {
    padding: 0.7rem 2rem;
    font-size: 1.1rem;
}

.os-choices {
    display: flex;
    gap: 1rem;
    margin-top: 0.2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.os-btn {
    background: #181a22;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    padding: 0.5rem 1.1rem 0.5rem 0.7rem;
    font-size: 1rem;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
}
.os-btn.selected, .os-btn:focus {
    border-color: var(--primary-color);
    background: rgba(0,212,255,0.08);
    box-shadow: 0 0 0 2px var(--primary-color, #00d4ff33);
    color: var(--primary-color);
}
.os-btn:hover {
    border-color: var(--accent-color);
    background: rgba(124,58,237,0.08);
    color: var(--accent-color);
}
.os-btn img {
    margin-right: 0.4rem;
    height: 28px;
    width: 28px;
    display: inline-block;
}
@media (max-width: 600px) {
    .os-choices {
        flex-direction: column;
        gap: 0.7rem;
    }
    .os-btn {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Sliders CPU/RAM */
.vps-modal .slider-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.1rem;
}
.vps-modal .slider-label {
    min-width: 60px;
    font-weight: 500;
}
.vps-modal input[type=range] {
    -webkit-appearance: none;
    width: 70%;
    min-width: 220px;
    max-width: 420px;
    height: 6px;
    background: var(--card-bg);
    border-radius: 6px;
    outline: none;
    transition: background 0.3s;
    box-shadow: 0 1px 6px 0 rgba(0,212,255,0.10);
    margin: 0 1rem;
}
.vps-modal input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(0,212,255,0.18);
    border: 2px solid var(--primary-color);
    transition: background 0.2s, border 0.2s;
}
.vps-modal input[type=range]:focus::-webkit-slider-thumb {
    border: 2px solid var(--accent-color);
}
.vps-modal input[type=range]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(0,212,255,0.18);
    border: 2px solid var(--primary-color);
    transition: background 0.2s, border 0.2s;
}
.vps-modal input[type=range]:focus::-moz-range-thumb {
    border: 2px solid var(--accent-color);
}
.vps-modal input[type=range]::-ms-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(0,212,255,0.18);
    border: 2px solid var(--primary-color);
    transition: background 0.2s, border 0.2s;
}
.vps-modal input[type=range]:focus::-ms-thumb {
    border: 2px solid var(--accent-color);
}
.vps-modal input[type=range]:focus {
    outline: none;
}
.vps-modal .slider-value {
    min-width: 60px;
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .services-grid, .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .service-card {
        max-width: 95vw;
        min-height: 0;
    }
    .pricing-card {
        max-width: 95vw;
        min-height: 0;
    }
    .vps-modal {
        min-width: 90vw;
        padding: 1.2rem 0.5rem;
    }
    .pricing-badge {
        top: 10px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        font-size: 0.95rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.2rem;
    }
    .floating-cards {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .card-residential, .card-vps, .card-rotatif {
        min-width: 220px;
        margin: 0 auto;
        animation: float 5s ease-in-out infinite;
        animation-delay: 0s !important;
    }
}

@media (max-width: 600px) {
    .vps-modal input[type=range] {
        width: 95%;
        min-width: 0;
        max-width: 100%;
        margin: 0 0.2rem;
    }
}

.discord-support {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}
.discord-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--card-bg);
    border: 2px solid #5865F2;
    border-radius: 22px;
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    box-shadow: 0 8px 32px rgba(88,101,242,0.10);
    max-width: 480px;
    margin: 0 auto;
}
.discord-logo {
    display: block;
    margin: 0 auto 1.5rem auto;
}
.discord-info h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #5865F2;
    margin-bottom: 1rem;
    text-align: center;
}
.discord-desc {
    color: var(--text-secondary);
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.btn-discord {
    background: linear-gradient(90deg, #5865F2 0%, #00d4ff 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border: none;
    box-shadow: 0 4px 18px 0 rgba(88,101,242,0.13);
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
    margin-top: 0.5rem;
}
.btn-discord:hover {
    background: linear-gradient(90deg, #00d4ff 0%, #5865F2 100%);
    transform: translateY(-2px) scale(1.04);
    color: #fff;
}
.btn-discord i {
    font-size: 1.5rem;
}
@media (max-width: 700px) {
    .discord-info {
        padding: 2rem 0.7rem 1.5rem 0.7rem;
        max-width: 98vw;
    }
    .discord-info h2 {
        font-size: 1.3rem;
    }
    .btn-discord {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }
} 