body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #ffffff;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

h1 {
    font-size: clamp(22px, 2.4vw, 34px);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

h2 {
    margin-top: 0;
    color: #00c3ff;
}

.box strong {
    display: block;
    margin-bottom: 12px;
    color: #00c3ff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.domain {
    font-size: 50px;
    font-weight: bold;
    color: #00c3ff;
    margin: 15px 0;
    word-break: break-all;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 25px;
    color: #dddddd;
}

.interest-bar {
    display: inline-block;
    margin: 0 auto 20px auto;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 204, 0, 0.12);
    border: 1px solid rgba(255, 204, 0, 0.35);
    color: #ffe082;
    font-size: 16px;
    line-height: 1.4;
}

.price {
    font-size: 40px;
    color: #ffcc00;
    margin: 20px 0;
    font-weight: bold;
}

.sold {
    font-size: 32px;
    color: #ff5252;
    margin: 25px 0;
}

.reserved {
    font-size: 28px;
    color: #ffa726;
    margin: 25px 0;
}

.urgency {
    font-size: 18px;
    color: #ffb3a7;
    margin-bottom: 30px;
    line-height: 1.5;
}

.button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    background-color: #ff5722;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.button:hover {
    background-color: #e64a19;
    transform: scale(1.05);
}

.button-offer {
    background: #00c3ff;
    color: #06202a;
    margin-left: 12px;
}

.button-offer:hover {
    background: #00aee6;
}

.cta-wrap {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.trust-row {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #e9f7ff;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
}

.offer-wrap {
    max-width: 560px;
    margin: 25px auto 0 auto;
    text-align: left;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 18px;
}

.offer-title {
    text-align: center;
    margin: 0 0 12px 0;
    font-size: 18px;
    color: #dddddd;
}

.offer-row {
    margin-top: 10px;
}

.offer-row label {
    display: block;
    margin: 0 0 6px 0;
    font-size: 14px;
    color: #dddddd;
}

.offer-row input,
.offer-row textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 0;
    outline: none;
    font-size: 15px;
    box-sizing: border-box;
}

.offer-note {
    margin-top: 10px;
    font-size: 13px;
    color: #cfcfcf;
    line-height: 1.4;
    text-align: center;
}

.offer-panel {
    display: none;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .25s ease, transform .25s ease;
}

.offer-panel.is-open {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.secondary-link {
    margin-top: 25px;
    display: block;
    color: #cccccc;
    text-decoration: none;
}

.secondary-link:hover {
    text-decoration: underline;
}

.box {
    background-color: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
}

.highlight {
    color: #00c3ff;
    font-weight: bold;
}

.related-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 20px;
}

.related-list li {
    margin: 0;
}

.related-list a {
    display: block;
    color: #00c3ff;
    text-decoration: none;
    font-weight: bold;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    word-break: break-word;
    transition: 0.2s ease;
}

.related-list a:hover {
    text-decoration: none;
    background: rgba(255,255,255,0.09);
    transform: translateY(-1px);
}

/* =========================
   HEADER
========================= */
.site-header {
    background: rgba(11, 18, 32, 0.95);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-left {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1 1 auto;
    justify-content: center;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s ease;
}

.nav-link:hover {
    color: #00c3ff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.header-search input {
    background: #111827;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 8px 10px;
    color: #fff;
    font-size: 13px;
    width: 180px;
    transition: 0.2s ease;
    box-sizing: border-box;
}

.header-search input:focus {
    outline: none;
    border-color: #00c3ff;
}

.btn-header {
    background: #00c3ff;
    color: #06202a;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s ease;
}

.btn-header:hover {
    background: #00aee6;
}

/* =========================
   HOMEPAGE
========================= */
.home-page {
    text-align: left;
}

.home-page .container {
    padding: 32px 20px;
}

.home-hero {
    text-align: center;
}

.home-hero--premium {
    position: relative;
    overflow: hidden;
}

.home-hero--premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top center, rgba(0, 224, 255, 0.14), transparent 40%),
        radial-gradient(circle at bottom left, rgba(255, 87, 34, 0.10), transparent 35%);
    pointer-events: none;
}

.home-hero--premium .container {
    position: relative;
    z-index: 1;
    padding-top: 24px;
    padding-bottom: 20px;
}

.home-hero__badge {
    display: inline-block;
    background: #00e0ff;
    color: #06202a;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 18px;
}

.home-hero__eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0, 224, 255, 0.14);
    border: 1px solid rgba(0, 224, 255, 0.35);
    color: #bdf6ff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.home-hero__title {
    max-width: 980px;
    margin: 0 auto 20px auto;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.02;
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0;
    color: #ffffff;
}

.home-hero__subtitle {
    max-width: 860px;
    margin: 0 auto 26px auto;
    font-size: 20px;
    line-height: 1.8;
    color: #d9e8f0;
}

.home-hero__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s ease;
    box-sizing: border-box;
}

.btn-primary {
    background: #ff5722;
    color: #ffffff;
}

.btn-primary:hover {
    background: #e64a19;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #00c3ff;
    color: #06202a;
}

.btn-secondary:hover {
    background: #00aee6;
    transform: translateY(-1px);
}

.home-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 920px;
    margin: 28px auto 0 auto;
}

.hero-stat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    padding: 20px 18px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.hero-stat__number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #00e0ff;
    margin-bottom: 6px;
}

.hero-stat__label {
    display: block;
    font-size: 14px;
    color: #d9e4ea;
    line-height: 1.5;
}

.home-benefits-section {
    margin-top: 0;
}

.home-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.home-benefits__item {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: left;
}

.home-benefits__item h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.home-benefits__item p {
    margin: 0;
    color: #d9e4ea;
    line-height: 1.7;
}

.home-section {
    margin-top: 38px;
}

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 22px auto;
}

.section-heading h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin-bottom: 10px;
}

.section-heading p {
    margin: 0;
    color: #d0dde6;
    font-size: 17px;
    line-height: 1.7;
}

.domain-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 18px;
}

.domain-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: 0.2s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
    position: relative;
    padding-top: 38px;
    overflow: hidden;
}

.domain-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.11);
}

.domain-card__name {
    font-size: 22px;
    font-weight: 700;
    color: #00c3ff;
    margin-bottom: 12px;
    word-break: break-word;
}

.domain-card__price {
    font-size: 20px;
    color: #ffcc00;
    font-weight: bold;
    margin-bottom: 10px;
}

.domain-card__meta {
    display: block;
    width: fit-content;
    margin: 6px auto 12px auto;
    font-size: 11px;
    color: #94a3b8;
    background: rgba(255,255,255,0.05);
    padding: 4px 8px;
    border-radius: 6px;
    line-height: 1.2;
    min-height: auto;
}

.domain-card__button {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 18px;
    background: #ff5722;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.2s ease;
}

.domain-card__button:hover {
    background: #e64a19;
}

.domain-card__badge {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border-radius: 0 16px 0 16px;
}

.domain-card__badge--new {
    background: #22c55e;
    color: #fff;
}

.domain-card__badge--hot {
    background: #f97316;
    color: #fff;
}

.domain-card__badge--premium {
    background: #3b82f6;
    color: #fff;
}

.home-page .text-block {
    max-width: 900px;
    margin: auto;
    line-height: 1.9;
    font-size: 17px;
    color: #dddddd;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.step-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 26px 22px;
    text-align: left;
    backdrop-filter: blur(6px);
    transition: 0.2s ease;
}

.step-card:hover {
    transform: translateY(-4px);
}

.step-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #00e0ff;
    font-size: 20px;
}

.step-card p {
    margin: 0;
    color: #d9e4ea;
    line-height: 1.7;
}

.step-card__number {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #00c3ff;
    color: #06202a;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

/* =========================
   DOMAIN FAQ SECTION (DSHOP)
========================= */
.domain-faq-list {
    max-width: 900px;
    margin: 18px auto 0;
    text-align: left;
}

.domain-faq-item {
    margin-bottom: 20px;
    padding: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    backdrop-filter: blur(6px);
    overflow: hidden;
}

.domain-faq-question {
    display: block;
    width: 100%;
    cursor: pointer;
    position: relative;
    margin: 0;
    padding: 18px 20px 18px 46px;
    color: #00c3ff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    list-style: none;
    appearance: none;
    -webkit-appearance: none;
}

.domain-faq-question::-webkit-details-marker {
    display: none;
}

.domain-faq-question::marker {
    content: "";
}

.domain-faq-question::before {
    content: "+";
    position: absolute;
    left: 18px;
    top: 16px;
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    color: #00c3ff;
}

.domain-faq-item[open] .domain-faq-question::before {
    content: "-";
}

.domain-faq-answer {
    display: none;
    padding: 0 20px 18px 46px;
    color: #d7d7d7;
    font-size: 15px;
    line-height: 1.7;
}

.domain-faq-item[open] .domain-faq-answer {
    display: block;
}

.domain-faq-answer p {
    margin: 0;
}

/* =========================
   FAQ HOMEPAGE DSHOP
========================= */
.faq {
    max-width: 900px;
    margin: auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 20px;
    cursor: pointer;
    padding: 18px 20px 18px 46px;
    position: relative;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    backdrop-filter: blur(6px);
}

.faq-item strong {
    display: block;
    margin-bottom: 6px;
    color: #00c3ff;
    font-size: 17px;
}

.faq-item::before {
    content: "+";
    position: absolute;
    left: 18px;
    top: 16px;
    font-size: 22px;
    color: #00c3ff;
    line-height: 1;
}

.faq-item.active::before {
    content: "-";
}

.faq-answer {
    display: none;
    margin-top: 5px;
    color: #d7d7d7;
    font-size: 15px;
    line-height: 1.7;
}

.domain-card {
    position: relative;
}

.domain-card {
    position: relative;
    padding-top: 42px;
}

.domain-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    color: #fff;
    z-index: 2;
    letter-spacing: 0.3px;
    line-height: 1;
    display: inline-block;
    overflow: hidden; /* IMPORTANTISSIMO */
}

/* HOT badge */
.domain-card__badge--hot {
    background: linear-gradient(135deg, #ff6a00, #ff0000);
    box-shadow: 0 0 8px rgba(255, 80, 0, 0.4);
    animation: hotPulse 1.6s infinite ease-in-out;
}

/* 🔥 Effetto fiamma CONTROLLATO */
.domain-card__badge--hot::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.0) 0%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0.0) 100%
    );
    transform: skewX(-20deg);
    animation: flameSweep 2.5s infinite;
}

/* Glow */
@keyframes hotPulse {
    0%   { box-shadow: 0 0 6px rgba(255, 80, 0, 0.25); }
    50%  { box-shadow: 0 0 14px rgba(255, 80, 0, 0.6); }
    100% { box-shadow: 0 0 6px rgba(255, 80, 0, 0.25); }
}

/* Movimento “fiamma” */
@keyframes flameSweep {
    0% {
        left: -40%;
    }
    100% {
        left: 120%;
    }
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background-color: #11151c;
    color: #f1f1f1;
    margin-top: 80px;
    padding-top: 60px;
    font-size: 14px;
    text-align: left;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px 40px 20px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
    margin-bottom: 30px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffffff;
}

.footer-column p,
.footer-column li {
    margin-bottom: 8px;
    color: #cccccc;
}

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

.footer-column a {
    color: #00c3ff;
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid #222;
    text-align: center;
    padding: 20px;
    background-color: #0c0f14;
    font-size: 13px;
    color: #aaaaaa;
}

/* =========================
   COOKIE BANNER
========================= */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    color: #fff;
    padding: 20px;
    display: none;
    z-index: 9999;
}

.cookie-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 18px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.accept-btn {
    background-color: #ffffff;
    color: #111;
    font-weight: bold;
}

.reject-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

/* =========================
   STICKY CTA
========================= */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    gap: 10px;
    padding: 12px;
    background: rgba(8, 15, 25, 0.96);
    border-top: 1px solid rgba(255,255,255,0.12);
    z-index: 999;
}

.sticky-buy,
.sticky-offer {
    flex: 1;
    border: 0;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.sticky-buy {
    background: #ff5722;
    color: #fff;
}

.sticky-offer {
    background: #00c3ff;
    color: #06202a;
}

/* =========================
   SEARCH HERO
========================= */
.home-hero__search {
    margin: 28px auto 18px;
    max-width: 760px;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.home-hero__search input {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 52px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    display: block;
}

.home-hero__search input::placeholder {
    color: rgba(255,255,255,0.65);
}

.home-hero__search input:focus {
    border-color: #00c3ff;
    box-shadow: 0 0 0 3px rgba(0,195,255,0.12);
}

.home-hero__search .btn {
    height: 52px;
    min-height: 52px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.home-hero__trust {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.home-hero__trust-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #e9f7ff;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
}

/* =========================
   BOTTONE "SCOPRI ALTRI DOMINI"
========================= */
.btn-domains {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 26px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.3);
    transition: all 0.2s ease;
}

.btn-domains:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.45);
}

.btn-domains:active {
    transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .domain-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .related-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-nav {
        display: none;
    }

    .header-search input {
        width: 120px;
    }

    .home-benefits,
    .steps-grid,
    .home-hero__stats {
        grid-template-columns: 1fr;
    }

    .home-hero__title {
        font-size: clamp(32px, 9vw, 48px);
    }

    .home-hero__subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .sticky-cta {
        display: flex;
    }

    body {
        padding-bottom: 84px;
    }

    .domain {
        font-size: 38px;
    }

    .price {
        font-size: 32px;
    }

    .subtitle {
        font-size: 18px;
    }

    .header-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-right {
        width: 100%;
        justify-content: center;
    }

    .home-page .container {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .home-hero__subtitle {
        font-size: 17px;
    }

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

    .section-heading {
        margin-bottom: 18px;
    }

    .home-hero__search {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .home-hero__search input,
    .home-hero__search .btn {
        width: 100%;
        height: 48px;
        min-height: 48px;
        box-sizing: border-box;
    }

    .home-hero__search .btn {
        padding: 0 18px;
    }
}

@media (max-width: 600px) {
    .related-list {
        grid-template-columns: 1fr;
    }
}