/* =============================
      WIDE TEMPLATE
   ============================= */

:root {
  /* default fallback values */
  --modal-bg: rgba(25, 25, 30, 0.92);
  --text-main: #ffffff;
  --glow-main: #66ccff;
  --button-bg: #3399ff;
  --button-hover-bg: #66ccff;
  --price-color: #99ddff;
  --price-glow: #33ccff;
  --list-hover-bg: rgba(102, 204, 255, 0.12);
  --emoji-glow: #66ccff;
  --bg-image: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #000 url(var(--bg-image)) center/cover no-repeat fixed;
    color: var(--text-main);
}

.sale-modal {
    /* position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
	position: relative;
    margin: 60px auto;
	
	
    width: 90%;
    max-width: 800px; /* wider modal than standard */
    padding: 50px;
    background: var(--modal-bg);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 50px rgba(0,0,0,0.7);
    text-align: center;
}

.sale-modal .domain-name {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-shadow: 0 0 25px var(--glow-main);
}

.sale-modal .headline {
    font-size: 1.9rem;
    margin-bottom: 15px;
}

.sale-modal .subtext {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.sale-modal .sale-price {
    font-size: 2.2rem;
    margin: 25px 0;
    color: var(--price-color);
    text-shadow: 0 0 18px var(--price-glow);
}

.sale-modal .contact-btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 14px;
    background: var(--button-bg);
    box-shadow: 0 0 18px var(--button-bg);
    color: #000;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.sale-modal .contact-btn:hover {
    background: var(--button-hover-bg);
    box-shadow: 0 0 28px var(--button-hover-bg);
}

/* OTHER DOMAINS LIST */
.other-domains {
    margin-top: 50px;
}

.other-domains h3 {
    margin-bottom: 14px;
}

.other-domains ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.other-domains li {
    padding: 14px 18px;
    margin-bottom: 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    position: relative;
    transition: 0.25s ease;
}

.other-domains li a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
}

.other-domains li:hover {
    background: var(--list-hover-bg);
    box-shadow: 0 0 14px var(--glow-main);
}

.other-domains .emoji {
    text-shadow: 0 0 12px var(--emoji-glow);
}

/* TOOLTIP */
.other-domains li .tooltip {
    display: none;
    position: absolute;
    top: 0;
    left: 110%;
    width: 260px;
    background: #111;
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0 0 12px #000;
    z-index: 100;
}

.other-domains li:hover .tooltip {
    display: block;
}

/* SALE BADGE */
.sale-badge {
    margin-top: 12px;
    margin-bottom: 24px;
    font-size: 1.5rem;
    color: #ff5555;
    font-weight: 900;
    text-shadow: 0 0 12px #ff2222;
    animation: salePulseWide 1.5s infinite ease-in-out;
}

@keyframes salePulseWide {
    0%   { opacity: 0.7; text-shadow:0 0 10px #ff3333; }
    50%  { opacity: 1;   text-shadow:0 0 20px #ff5555; }
    100% { opacity: 0.7; text-shadow:0 0 10px #ff3333; }
}
