@import url('https://fonts.cdnfonts.com/css/satoshi');

:root {
    /* --- COULEURS PRINCIPALES --- */
    --primary: #ff1796;
    --primary-rgb: 0, 0, 0; /* Utilisé pour les transparences (rgba) */
    --secondary: #3ad0ff;
    --gold: #ffbb00;
    
    /* --- COULEURS TEXTE --- */
    --text-main: #ffffff;
    --text-muted: #b0b8c1;

    --green: #00ff7f;
    
    /* --- ARRIERE-PLANS --- */
    --bg-dark: #0f1013;
    --bg-card: rgba(30, 32, 40, 0.6);
    --bg-nav: rgba(15, 16, 19, 0.85);
    --bg-input: rgba(0, 0, 0, 0.3);
    --bg-input-focus: rgba(0, 0, 0, 0.5);
    --bg-accent-low: rgba(var(--primary-rgb), 0.15); /* Fond rose très léger */
    --bg-accent-low-green: rgba(0, 255, 0, 0.15); /* Fond vert très léger */
    
    /* --- DEGRADÉS --- */
    --gradient-text: linear-gradient(to right, var(--primary), var(--secondary));
    --gradient-section: linear-gradient(180deg, transparent, rgba(255,255,255,0.02), transparent);
    
    /* --- EFFETS & BORDURES --- */
    --glass-border: 2px solid rgba(255, 255, 255, 0.1);
    --glass-border-light: 2px solid rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    --glow-shadow: 0 0 15px rgba(var(--primary-rgb), 0.4);
    --backdrop: blur(10px);
    --transition: all 0.3s ease;
    
    /* --- DIMENSIONS & FONTS --- */
    --radius: 16px;
    --max-width: 1200px;
    --font-heading: 'Satoshi', sans-serif;
    --font-body: 'Satoshi', sans-serif;
    --letter-spacing: 2px;
}

/* Reset & Base */
*:not(i) { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    scroll-behavior: smooth; 
    font-family: 'Satoshi', sans-serif !important;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

i {
    font-family: inherit; /* Laisse Font Awesome gérer ses classes */
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Vignette */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, transparent 40%, rgba(15, 16, 19, 0.7) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Background grid */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 64px 64px;
    background-position: center center;
    pointer-events: none;
    z-index: 1001;
}

/* Glow blobs */
@keyframes blobPulse {
    0%, 100% { transform: scale(1);    opacity: 0.8; }
    50%       { transform: scale(1.15); opacity: 1;   }
}

.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 1001;
    animation: blobPulse 9s ease-in-out infinite;
}

.blob-pink {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(255, 23, 150, 0.13) 0%, transparent 70%);
    top: -140px;
    right: -100px;
}

.blob-cyan {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(58, 208, 255, 0.09) 0%, transparent 70%);
    bottom: -120px;
    left: -100px;
    animation-delay: -4.5s;
}

@media (max-width: 600px) {
    .blob-pink  { width: 280px; height: 280px; top: -60px; right: -60px; }
    .blob-cyan  { width: 240px; height: 240px; bottom: -60px; left: -60px; }
}

/* Page Transition Overlay */
@keyframes overlayEnter {
    from { opacity: 1; }
    to   { opacity: 0; }
}
@keyframes overlayLeave {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#page-transition {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 999;
    pointer-events: none;
    animation: overlayEnter 0.55s ease-out both;
}

h1, h2, h3, .btn { font-family: 'Satoshi', sans-serif; letter-spacing: var(--letter-spacing); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* Utilities */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.accent { color: var(--primary); font-weight: 900; letter-spacing: var(--letter-spacing);}
.section { padding: 80px 0; position: relative; z-index: 1; }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; font-family: 'Satoshi', sans-serif; font-weight: 900; }
.bg-alt { background: var(--gradient-section); }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1002;
    background: var(--bg-nav);
    backdrop-filter: var(--backdrop);
    border-bottom: var(--glass-border);
    padding: 1rem 0;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    transform: translateY(0);
    box-shadow: var(--glass-shadow);
}
.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    max-width: var(--max-width); margin: 0 auto; padding: 0 20px;
}
.logo { font-size: 1.5rem; font-family: 'Satoshi', sans-serif;}
.nav-links { display: flex; gap: 2rem; align-items: center;}
.nav-links a { font-family: 'Satoshi', sans-serif; font-weight:700;}
.nav-links a:hover { color: var(--primary); }
.btn-nav {
    background: var(--primary); padding: 0.5rem 1.5rem; border-radius: 50px;
    color: white ; transition: var(--transition);
    font-family: 'Satoshi', sans-serif;
    display: inline-block;
}
.nav-links a.btn-nav:hover { 
    box-shadow: var(--glow-shadow); 
    color: var(--text-main);
    transform: scale(1.05);
}
.mobile-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* Hero Section */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding-top: 80px; z-index: 1;
}
.hero-content { text-align: center; z-index: 2; max-width: 800px; padding: 0 20px; }
.hero-visual { position: relative; width: 250px; height: 250px; margin: 0 auto 30px; }
.avatar-img { 
    width: 100%; height: 100%;
    position: relative; z-index: 2; 
}
.glow-circle {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 260px; height: 260px; 
    background: radial-gradient(circle, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%; filter: blur(40px); opacity: 0.25; z-index: 1;
}

.hero h1 { 
    font-size: 3.5rem; margin: 10px 0; 
    background: var(--gradient-text); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Satoshi', sans-serif; font-weight: 900;
}
.dynamic-text-wrapper { font-size: 1.2rem; color: var(--secondary); margin-bottom: 20px; font-family: 'Satoshi', sans-serif; font-weight: 700; }
.description { margin: 20px auto; color: var(--text-muted); max-width: 600px; }

.hero-btns { display: flex; gap: 20px; justify-content: center; margin-top: 30px; }
.socials { margin-top: 30px; font-size: 1.5rem; display: flex; gap: 20px; justify-content: center; }
.socials a:hover { transform: translateY(-5px); color: var(--primary); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em 1em;
    border-radius: 16px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.btn-primary { background: var(--primary); color: white; box-shadow: var(--glow-shadow); border: 2px solid transparent; }
.btn-outline {
    border: 4px solid rgba(58, 208, 255, 0.3);
    color: var(--secondary);
    background: rgba(58, 208, 255, 0.06);
    text-transform: uppercase;
}
.btn-lg { padding: 12px 30px; font-size: 1.1rem; }
.btn:hover { transform: scale(1.05); }


/* Services Generic */
.container .section-title {
    margin-bottom: 0px;
}

.services-wrapper { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
.service-box {
    flex: 1; min-width: 280px; background: var(--bg-card); padding: 40px;
    border-radius: var(--radius); border: var(--glass-border); transition: var(--transition);
    /* Flex alignment pour les textes longs */
    text-align: left; display: flex; flex-direction: column; justify-content: flex-start;
}
.service-box:hover { 
    transform: scale(1.02); 
    border-color: var(--secondary); 
}
.icon-box { font-size: 2rem; color: var(--primary); margin-bottom: 20px; }

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(var(--primary-rgb), 0.7), var(--secondary));
    border-radius: 2px;
}

.timeline-item {
    padding-left: 50px;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.15), 0 0 15px rgba(var(--primary-rgb), 0.6);
    z-index: 2;
}

@keyframes dot-pulse-green {
    0%, 100% { box-shadow: 0 0 0 4px rgba(0, 255, 127, 0.15), 0 0 15px rgba(0, 255, 127, 0.6); }
    50%       { box-shadow: 0 0 0 9px rgba(0, 255, 127, 0.06), 0 0 28px rgba(0, 255, 127, 0.8); }
}

.timeline-item:first-child .timeline-dot {
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(0, 255, 127, 0.15), 0 0 15px rgba(0, 255, 127, 0.6);
    animation: dot-pulse-green 2s ease-in-out infinite;
}

.timeline-date {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(58, 208, 255, 0.08);
    border: 2px solid rgba(58, 208, 255, 0.22);
}

.timeline-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-left: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 22px 26px;
    backdrop-filter: var(--backdrop);
    transition: var(--transition);
}

.timeline-card:hover {
    transform: translateX(6px);
    border-color: var(--secondary);
    border-left-color: var(--secondary);
    box-shadow: 0 8px 32px rgba(58, 208, 255, 0.12), -4px 0 16px rgba(58, 208, 255, 0.07);
}

.timeline-entry h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.timeline-entry p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.timeline-divider {
    border: none;
    border-top: 2px solid rgba(255, 255, 255, 0.06);
    margin: 18px 0;
}

.timeline-tag {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 2px 8px;
    border-radius: 4px;
}

.timeline-tag.active {
    background: rgba(0, 255, 127, 0.1);
    color: var(--green);
    border: 2px solid rgba(0, 255, 127, 0.3);
}

/* Contact Form */
.glass-form {
    max-width: 600px; margin: 0 auto; background: var(--bg-card); padding: 40px;
    border-radius: var(--radius); border: var(--glass-border);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-family: 'Satoshi', sans-serif; font-weight: 700; color: var(--secondary); }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px; 
    background: var(--bg-input); 
    border: var(--glass-border);
    border-radius: 8px; color: white; font-family: inherit; transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus { 
    outline: none; border-color: var(--secondary); background: var(--bg-input-focus);
}
#form-status { margin-top: 15px; font-family: 'Satoshi', sans-serif; font-weight: 700; text-align: center; }

small {
    display: block;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

footer { text-align: center; padding: 40px 0; color: var(--text-muted); font-size: 0.9rem; border-top: var(--glass-border); margin-top: 50px;}

/* Mobile Responsive */
@keyframes highlight-box-auto-tilt {
    0%   { transform: perspective(1000px) rotateX(0deg)  rotateY(0deg); }
    20%  { transform: perspective(1000px) rotateX(6deg)  rotateY(-8deg); }
    45%  { transform: perspective(1000px) rotateX(-3deg) rotateY(10deg); }
    65%  { transform: perspective(1000px) rotateX(5deg)  rotateY(4deg); }
    80%  { transform: perspective(1000px) rotateX(-4deg) rotateY(-7deg); }
    100% { transform: perspective(1000px) rotateX(0deg)  rotateY(0deg); }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-visual { width: 180px; height: 180px; }
    .glow-circle { width: 190px; height: 190px; }

    .nav-links {
        position: fixed; top: 60px; right: -100%; width: 100%; height: calc(100vh - 60px);
        background: var(--bg-dark); flex-direction: column; justify-content: center; transition: var(--transition);
        border-left: var(--glass-border);
    }
    .nav-links.active { right: 0; }
    .mobile-toggle { display: block; }
    .glass-form { padding: 20px; }
    .service-header { flex-direction: column; gap: 10px; }

}

/* --- NEW SERVICES STYLES --- */

.category-title {
    text-align: left;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    border-bottom: var(--glass-border);
    padding-bottom: 10px;
    width: 100%;
    font-family: 'Satoshi', sans-serif; font-weight: 900;
}

.services-wrapper + .category-title { margin-top: 50px; }

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    border-bottom: var(--glass-border-light);
    padding-bottom: 10px;
}

.service-header h4 {
    font-size: 1.2rem;
    color: white;
    margin: 0;
    font-family: 'Satoshi', sans-serif; font-weight: 700;
}

.price-tag {
    background: var(--bg-accent-low-green);
    color: var(--green);
    padding: 5px 10px;
    border-radius: 8px;
    font-family: 'Satoshi', sans-serif; font-weight: 900;
    font-size: 0.9rem;
    white-space: nowrap;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.service-meta {
    font-size: 0.85rem;
    color: var(--secondary);
    font-family: 'Satoshi', sans-serif; font-weight: 700;
    margin-top: auto; 
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.service-list li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-family: 'Satoshi', sans-serif; font-weight: 900;
}

/* Spotlight animatable CSS custom properties */
@property --spotlight-x {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 50%;
}
@property --spotlight-y {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 50%;
}

/* Spotlight drift synced with highlight-box-auto-tilt (same 5s timing) */
@keyframes spotlight-drift {
    0%   { --spotlight-x: 50%; --spotlight-y: 50%; }
    20%  { --spotlight-x: 30%; --spotlight-y: 32%; }
    45%  { --spotlight-x: 74%; --spotlight-y: 65%; }
    65%  { --spotlight-x: 58%; --spotlight-y: 28%; }
    80%  { --spotlight-x: 33%; --spotlight-y: 64%; }
    100% { --spotlight-x: 50%; --spotlight-y: 50%; }
}

/* Gros Concept — style permanent (toutes résolutions) */
.highlight-box {
    background: rgba(20, 20, 25, 0.95);
    border: 1px solid #fff;
    box-shadow: 0 0 30px #e6a800, inset 0 0 20px rgba(255, 255, 255, 0.5);
    position: relative;
    transform-style: preserve-3d;
    animation: highlight-box-auto-tilt 5s ease-in-out infinite;
    transition: none;
    overflow: hidden;
}

/* Contenu flottant en 3D */
.highlight-box > * {
    transform: translateZ(20px);
    position: relative;
    z-index: 2;
}

/* Fond doré + spotlight animé */
.highlight-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background:
        radial-gradient(
            circle 380px at var(--spotlight-x) var(--spotlight-y),
            rgba(255, 255, 255, 0.72) 0%,
            transparent 55%
        ),
        linear-gradient(135deg, #e6a800 0%, #ffcc33 100%);
    opacity: 1;
    z-index: 0;
    animation: spotlight-drift 5s ease-in-out infinite;
}

/* Bordure dorée derrière */
.highlight-box::after {
    content: "";
    background: linear-gradient(45deg, #FFD700, #FFC107, #FFB300, #FFD700);
    background-size: 200% 200%;
    position: absolute;
    inset: -3px;
    border-radius: var(--radius);
    filter: blur(8px);
    z-index: -1;
    transform: translateZ(-2px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Texte et prix — style permanent */
.highlight-box .service-header h4,
.highlight-box .service-desc,
.highlight-box .service-meta {
    color: #2e1c00;
    text-shadow: none;
}

.highlight-box .price-tag {
    background-color: #2e1c00;
    color: #e6a800;
    box-shadow: 0 0 15px #e6a800;
    position: relative;
    z-index: 2;
}

/* Section Options */
.options-container {
    margin-top: 50px;
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: var(--radius);
    padding: 30px;
}

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

.option-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.option-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: 3px;
}

.option-item strong {
    color: white;
    display: block;
    margin-bottom: 5px;
    font-family: 'Satoshi', sans-serif; font-weight: 900;
}

.option-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* --- PORTFOLIO CAROUSEL 3D --- */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 480px; /* Augmenté pour laisser la place au titre */
    margin: 40px auto;
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.video-card {
    position: absolute;
    top: 0;
    width: 60%; 
    /* On retire le style visuel d'ici pour le mettre sur le wrapper */
    background: transparent;
    border: none;
    box-shadow: none;
    
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Flex pour aligner video + titre */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Nouveau conteneur pour l'iframe (le cadre visuel) */
.video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    background: transparent;
    box-shadow: var(--glass-shadow);
    position: relative;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    transition: none; 
}

/* Le TITRE sous la vidéo */
.video-title {
    margin-top: 20px;
    font-size: 1.5rem;
    font-family: 'Satoshi', sans-serif; font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0; /* Invisible par défaut */
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Animation d'apparition */
@keyframes fadeTitle {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Déclencheur : Uniquement quand la carte est au CENTRE */
.pos-center .video-title {
    animation: fadeTitle 3s ease forwards;
}

/* POSITION: CENTRE */
.pos-center {
    left: 50%;
    transform: translateX(-50%) scale(1);
    z-index: 10;
    opacity: 1;
    filter: none;
}
/* Le wrapper prend le style "actif" */
.pos-center .video-wrapper {
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

/* POSITION: GAUCHE */
.pos-left {
    left: 20%;
    transform: translateX(-50%) scale(0.8);
    z-index: 5;
    opacity: 0.6;
    filter: grayscale(80%) brightness(0.7);
    cursor: pointer;
}

/* POSITION: DROITE */
.pos-right {
    left: 80%;
    transform: translateX(-50%) scale(0.8);
    z-index: 5;
    opacity: 0.6;
    filter: grayscale(80%) brightness(0.7);
    cursor: pointer;
}

/* Hover Effects sur les côtés */
.pos-left:hover, .pos-right:hover {
    opacity: 0.8;
    filter: grayscale(50%) brightness(0.9);
    z-index: 6;
}
.pos-left:hover .video-wrapper, .pos-right:hover .video-wrapper {
    border-color: var(--secondary);
}

/* Désactiver interactions sur iframes de côté */
.pos-left iframe, .pos-right iframe {
    pointer-events: none;
}
/* Overlay visuel */
.video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 20;
    background: transparent;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
    .carousel-container {
        height: auto;
        flex-direction: column;
        gap: 40px; /* Plus d'espace pour les titres */
        align-items: center;
    }
    
    .video-card {
        position: relative;
        width: 100%;
        max-width: 100%;
        left: auto;
        transform: none;
        opacity: 1;
        filter: none;
        cursor: default;
    }
    
    /* Sur mobile, on affiche les titres tout le temps */
    .video-title {
        opacity: 1;
        font-size: 1.2rem;
        margin-top: 10px;
    }
    
    .pos-center .video-title {
        animation: none; /* Pas d'anim sur mobile */
    }

    .pos-left iframe, .pos-right iframe {
        pointer-events: auto;
    }

    /* Ordre visuel */
    .pos-center { order: 1; }
    .pos-left { order: 2; }
    .pos-right { order: 3; }

    .desktop-only-hint { display: none; }
}
