/*
Theme Name: Cantounis Shipping Agency
Theme URI: https://cantounis.com
Author: Your Name / Cantounis
Description: A modern HUD-inspired futuristic landing page for Cantounis Shipping Agency.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cantounis
*/

/* Core styles and variables migrated from HTML */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --cod-blue: #00a8ff;
  --cod-blue-dim: #0066aa;
  --cod-blue-deep: #001a33;
  --cod-white: #e8f4ff;
  --cod-ghost: rgba(0,168,255,0.08);
  --cod-line: rgba(0,168,255,0.25);
  --cod-accent: #00d4ff;
  --cod-dark: #000d1a;
  --cod-panel: rgba(0,20,40,0.85);
  --font-hud: 'Orbitron', monospace;
  --font-ui: 'Rajdhani', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cod-dark);
  color: var(--cod-white);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: crosshair;
}

/* ── SCANLINE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,168,255,0.015) 2px,
    rgba(0,168,255,0.015) 4px
  );
  pointer-events: none;
  z-index: 9999;
  animation: scanRoll 8s linear infinite;
}

@keyframes scanRoll {
  from { background-position: 0 0; }
  to   { background-position: 0 100px; }
}

/* ── GRID BG ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,168,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,168,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Nav & Layout styles */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 64px;
  background: rgba(0,10,20,0.92);
  border-bottom: 1px solid var(--cod-line);
  backdrop-filter: blur(12px);
}

nav::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cod-accent), transparent);
  animation: navGlow 3s ease-in-out infinite;
}

@keyframes navGlow {
  0%,100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.nav-logo {
  font-family: var(--font-hud);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--cod-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo .logo-mark {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--cod-accent);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: logoPulse 2s ease-in-out infinite;
}

.nav-logo .logo-mark::after {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--cod-accent);
  transform: rotate(0deg);
}

@keyframes logoPulse {
  0%,100% { border-color: var(--cod-accent); box-shadow: 0 0 8px var(--cod-accent); }
  50% { border-color: var(--cod-blue); box-shadow: 0 0 20px var(--cod-blue); }
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(232,244,255,0.7);
  text-decoration: none;
  font-family: var(--font-hud);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  padding: 6px 14px;
  border: 1px solid transparent;
  transition: all 0.2s;
  text-transform: uppercase;
  position: relative;
}

.nav-links a::before {
  content: '//';
  margin-right: 6px;
  color: var(--cod-blue);
  opacity: 0;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  color: var(--cod-white);
  border-color: var(--cod-line);
  background: var(--cod-ghost);
}

.nav-links a:hover::before { opacity: 1; }

/* WP Nav Menu Fallbacks & Resets */
.nav-links ul {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 120px 6rem 80px;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-lines::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(
    from 180deg at 60% 40%,
    transparent 0deg,
    rgba(0,168,255,0.03) 30deg,
    transparent 60deg,
    rgba(0,212,255,0.05) 120deg,
    transparent 150deg
  );
  animation: conicSpin 20s linear infinite;
}

@keyframes conicSpin {
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--cod-accent);
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.2s forwards;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--cod-accent);
}

.hero-title {
  font-family: var(--font-hud);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cod-white);
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.4s forwards;
  text-transform: uppercase;
}

.hero-title .accent {
  color: var(--cod-accent);
  position: relative;
}

.hero-title .accent::after {
  content: attr(data-text);
  position: absolute;
  left: 2px; top: 2px;
  color: rgba(0,168,255,0.3);
  z-index: -1;
  animation: glitch 4s infinite;
}

@keyframes glitch {
  0%,90%,100% { clip-path: none; transform: none; }
  91% { clip-path: polygon(0 15%,100% 15%,100% 30%,0 30%); transform: translate(-2px); }
  93% { clip-path: polygon(0 55%,100% 55%,100% 70%,0 70%); transform: translate(2px); }
  95% { clip-path: polygon(0 80%,100% 80%,100% 90%,0 90%); transform: translate(-1px); }
}

.hero-subtitle {
  font-family: var(--font-hud);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--cod-blue);
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.6s forwards;
  text-transform: uppercase;
}

.hero-description {
  margin-top: 2rem;
  font-size: 1.05rem;
  color: rgba(232,244,255,0.75);
  max-width: 520px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.8s forwards;
  border-left: 2px solid var(--cod-line);
  padding-left: 1.2rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s 1s forwards;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-hud);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cod-accent);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(232,244,255,0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cta-group {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s 1.2s forwards;
}

.btn-primary {
  font-family: var(--font-hud);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 14px 28px;
  background: var(--cod-accent);
  color: var(--cod-dark);
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--cod-white);
  transform: translateY(-2px);
}

.btn-secondary {
  font-family: var(--font-hud);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 13px 28px;
  background: transparent;
  color: var(--cod-accent);
  border: 1px solid var(--cod-accent);
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 0px) 100%, 0 100%, 0 10px);
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--cod-ghost);
}

/* HUD CORNER DECORATIONS */
.hud-corner {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 3;
}
.hud-corner::before, .hud-corner::after {
  content: '';
  position: absolute;
  background: var(--cod-accent);
}
.hud-corner::before { width: 100%; height: 1.5px; }
.hud-corner::after  { width: 1.5px; height: 100%; }

.hud-corner.tl { top: 80px; left: 20px; }
.hud-corner.tl::before { top: 0; left: 0; }
.hud-corner.tl::after  { top: 0; left: 0; }

.hud-corner.tr { top: 80px; right: 20px; transform: scaleX(-1); }
.hud-corner.br { bottom: 20px; right: 20px; transform: scale(-1); }
.hud-corner.bl { bottom: 20px; left: 20px; transform: scaleY(-1); }

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  opacity: 0;
  animation: fadeSlideUp 0.8s 1.5s forwards;
}

.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(0,168,255,0.5);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cod-accent), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes fadeSlideUp {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ── SECTION COMMONS ── */
section {
  position: relative;
  z-index: 1;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--cod-accent);
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--cod-line);
  background: var(--cod-ghost);
}

.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--cod-line), transparent);
}

.section-title {
  font-family: var(--font-hud);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--cod-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ── ABOUT ── */
#about {
  padding: 100px 6rem;
  background: linear-gradient(180deg, transparent, rgba(0,20,50,0.3), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text {
  font-size: 1rem;
  color: rgba(232,244,255,0.8);
  line-height: 1.9;
}

.about-text p + p { margin-top: 1rem; }

.about-facts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fact-panel {
  background: var(--cod-panel);
  border: 1px solid var(--cod-line);
  border-left: 3px solid var(--cod-accent);
  padding: 1.2rem 1.5rem;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  transition: border-left-color 0.2s, background 0.2s;
}

.fact-panel:hover {
  background: rgba(0,168,255,0.1);
  border-left-color: var(--cod-white);
}

.fact-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--cod-blue-dim);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.fact-value {
  font-family: var(--font-hud);
  font-size: 0.95rem;
  color: var(--cod-white);
  font-weight: 500;
}

/* ── SERVICES ── */
#services {
  padding: 100px 6rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--cod-line);
}

.service-card {
  background: var(--cod-dark);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,168,255,0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover { background: rgba(0,20,40,0.95); }
.service-card:hover::before { opacity: 1; }

.service-card:hover .service-number { color: var(--cod-accent); }
.service-card:hover .service-icon-line { width: 100%; }

.service-number {
  font-family: var(--font-hud);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--cod-blue-dim);
  margin-bottom: 1.2rem;
  transition: color 0.3s;
}

.service-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--cod-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transform: rotate(45deg);
  transition: border-color 0.3s;
}

.service-card:hover .service-icon { border-color: var(--cod-accent); }

.service-icon svg {
  transform: rotate(-45deg);
  width: 22px;
  height: 22px;
  stroke: var(--cod-accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-title {
  font-family: var(--font-hud);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cod-white);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.service-icon-line {
  width: 30px;
  height: 1.5px;
  background: var(--cod-accent);
  margin-bottom: 1rem;
  transition: width 0.4s ease;
}

.service-desc {
  font-size: 0.85rem;
  color: rgba(232,244,255,0.55);
  line-height: 1.7;
}

/* ── NETWORK ── */
#network {
  padding: 100px 6rem;
  background: linear-gradient(180deg, transparent, rgba(0,20,50,0.4), transparent);
}

.network-intro {
  font-size: 1rem;
  color: rgba(232,244,255,0.7);
  max-width: 700px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.ports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.port-card {
  border: 1px solid var(--cod-line);
  background: var(--cod-panel);
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.port-card:hover {
  border-color: var(--cod-accent);
  background: rgba(0,168,255,0.08);
  transform: translateY(-3px);
}

.port-card.primary {
  border-color: var(--cod-accent);
  background: rgba(0,168,255,0.06);
}

.port-card.primary .port-flag { color: var(--cod-accent); }

.port-flag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--cod-blue-dim);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.port-name {
  font-family: var(--font-hud);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cod-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.port-country {
  font-size: 0.8rem;
  color: rgba(232,244,255,0.45);
}

.port-card.new-badge::after {
  content: 'NEW';
  position: absolute;
  top: 10px; right: 10px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--cod-dark);
  background: var(--cod-accent);
  padding: 2px 8px;
}

/* ── CONTACT ── */
#contact {
  padding: 100px 6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.5rem;
  background: var(--cod-panel);
  border: 1px solid var(--cod-line);
  border-left: 2px solid var(--cod-accent);
}

.contact-item-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--cod-blue-dim);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 0.95rem;
  color: var(--cod-white);
}

.contact-item-value a {
  color: var(--cod-accent);
  text-decoration: none;
}

.contact-item-value a:hover {
  text-decoration: underline;
}

.contact-panel {
  background: var(--cod-panel);
  border: 1px solid var(--cod-line);
  padding: 2.5rem;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.contact-panel-title {
  font-family: var(--font-hud);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--cod-accent);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-panel-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cod-line);
}

.uptime-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 1.2rem;
  background: rgba(0,168,255,0.06);
  border: 1px solid var(--cod-line);
  margin-bottom: 1.5rem;
}

.uptime-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff88;
  animation: uptimePulse 1.5s ease-in-out infinite;
}

@keyframes uptimePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,255,136,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(0,255,136,0); }
}

.uptime-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(232,244,255,0.7);
  letter-spacing: 0.1em;
}

.captain-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.captain-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--cod-ghost);
}

.captain-row:last-child { border-bottom: none; }

.captain-name-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(232,244,255,0.5);
  text-transform: uppercase;
}

.captain-name {
  font-family: var(--font-hud);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cod-white);
}

.captain-phone {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cod-accent);
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  padding: 3rem 6rem;
  border-top: 1px solid var(--cod-line);
  background: rgba(0,5,15,0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cod-accent), transparent);
}

.footer-left {
  font-family: var(--font-hud);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: rgba(232,244,255,0.3);
  text-transform: uppercase;
}

.footer-left span { color: var(--cod-accent); }

.footer-center {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(232,244,255,0.2);
  letter-spacing: 0.15em;
  text-align: center;
}

.footer-right {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(232,244,255,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cod-accent);
  animation: uptimePulse 2s infinite;
}

/* ── DIVIDERS ── */
.section-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 6rem;
  margin: 0;
}

.section-divider::before, .section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cod-line), transparent);
}

.section-divider span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(0,168,255,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #hero, #about, #services, #network, #contact, footer { padding-left: 2rem; padding-right: 2rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.5rem; }
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .section-divider { padding: 0 2rem; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .hero-stats { flex-wrap: wrap; }
}

/* ── ANIMATED RADAR ── */
.radar-decoration {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
  animation: fadeSlideUp 1s 0.5s both;
}

/* ── WP ADMIN BAR NOTICE ── */
.wp-notice {
  background: rgba(0,168,255,0.1);
  border: 1px solid var(--cod-line);
  border-left: 3px solid var(--cod-accent);
  padding: 0.8rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(232,244,255,0.6);
  letter-spacing: 0.15em;
  text-align: center;
  position: relative;
  z-index: 1;
}

.wp-notice span { color: var(--cod-accent); }