/* =============================================
   BLOG DETAIL PAGE â€” CUBIX STYLE DARK THEME
   ============================================= */

/* Override main theme conflicts for blog page */
.cx-blog-hero h1, .cx-blog-hero-inner h1,
.cx-blog-related h2, .cx-blog-related h4,
.cx-blog-body h2, .cx-blog-body h3 {
  font-family: var(--heading-font-family, 'Inter', sans-serif);
}

/* === BLOG HERO === */
.cx-blog-hero {
  background:
    radial-gradient(circle at 78% 28%, rgba(196,30,90,0.19), transparent 25%),
    radial-gradient(circle at 20% 72%, rgba(226,166,55,0.14), transparent 24%),
    linear-gradient(135deg, #08080f 0%, var(--theme-color3) 55%, #11101d 100%);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid rgba(196,30,90,0.08);
}
.cx-blog-hero::before,
.cx-blog-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.cx-blog-hero::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at 50% 48%, #000 0%, transparent 72%);
  animation: cxBlogGridDrift 18s linear infinite;
  opacity: 0.3;
}
.cx-blog-hero::after {
  width: 520px;
  height: 520px;
  right: 9%;
  top: 10%;
  border-radius: 50%;
  background: conic-gradient(from 120deg, rgba(226,166,55,0), rgba(226,166,55,0.22), rgba(196,30,90,0.3), rgba(226,166,55,0));
  filter: blur(42px);
  opacity: 0.52;
  animation: cxBlogHeroPulse 9s ease-in-out infinite;
}
@keyframes cxBlogGridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 76px 76px, 76px 76px; }
}
@keyframes cxBlogHeroPulse {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.42; }
  50% { transform: translate3d(-28px, 18px, 0) scale(1.08); opacity: 0.72; }
}
.cx-blog-hero-glow {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(196,30,90,0.18) 0%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  animation: cxBlogGlowFloat 7s ease-in-out infinite;
}
@keyframes cxBlogGlowFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-47%) translateY(18px); }
}
.cx-blog-hero .cx-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.4;
}
.cx-blog-hero .cx-shape-1 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(196,30,90,0.15), transparent 70%);
  top: 20%;
  left: 5%;
  animation: floatShape1 8s ease-in-out infinite;
}
.cx-blog-hero .cx-shape-2 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255,184,0,0.1), transparent 70%);
  bottom: 20%;
  right: 8%;
  animation: floatShape2 10s ease-in-out infinite;
}
@keyframes floatShape1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes floatShape2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(15px) rotate(-5deg); }
}
.cx-blog-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  text-align: left;
}
.cx-blog-hero-content,
.cx-blog-hero-media {
  flex: 0 0 calc(50% - 24px);
  max-width: calc(50% - 24px);
}
.cx-blog-hero-inner:not(.has-image) {
  display: block;
  max-width: 860px;
  text-align: center;
}
.cx-blog-hero-inner:not(.has-image) .cx-blog-meta {
  justify-content: center;
}
.cx-blog-hero-media {
  position: relative;
  min-height: 430px;
  border-radius: 30px;
  isolation: isolate;
}
.cx-blog-hero-media::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 32px;
  background: linear-gradient(135deg, hsl(39.88deg, 72.93%, 55.1%), hsl(334.77deg, 82.24%, 41.96%));
  z-index: -1;
  opacity: 0.3;
}
.cx-blog-hero-media::after {
  content: '';
  position: absolute;
  inset: 24px -24px -24px 24px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  z-index: -2;
}
.cx-blog-hero-media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 28px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

/* Breadcrumb */
.cx-blog-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 14px;
}
.cx-blog-breadcrumb a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s;
}
.cx-blog-breadcrumb a:hover {
  color: var(--theme-color1);
}
.cx-blog-breadcrumb i {
  font-size: 10px;
  color: #555;
}
.cx-blog-breadcrumb span {
  color: var(--theme-color1);
  font-weight: 500;
}

/* Title */
.cx-blog-hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}

/* Meta */
.cx-blog-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.cx-blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cx-blog-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--theme-color1), #a81560);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.cx-blog-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cx-blog-author-name {
  color: #ccc;
  font-weight: 600;
  font-size: 15px;
}
.cx-blog-meta-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #444;
}
.cx-blog-date, .cx-blog-cat-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888;
  font-size: 14px;
}
.cx-blog-date i, .cx-blog-cat-badge i {
  color: var(--theme-color1);
  font-size: 13px;
}
.cx-blog-cat-badge {
  background: rgba(196,30,90,0.1);
  border: 1px solid rgba(196,30,90,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  color: var(--theme-color1);
  font-weight: 500;
}

/* === FEATURED IMAGE === */
.cx-blog-featured {
  padding: 0 0 20px;
  background: var(--theme-color3);
}
.cx-blog-featured .container {
  max-width: 960px;
}
.cx-blog-featured-img {
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(196,30,90,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.cx-blog-featured-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
}

/* === CONTENT LAYOUT === */
.cx-blog-content-section {
  padding: 80px 0 60px;
  /* background: var(--theme-color2); */
}
.cx-blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* === ARTICLE BODY === */
.cx-blog-article {
  min-width: 0;
  max-width: 100%;
}
.cx-blog-body {
  background: rgba(255,255,255,0.02);
  border: 1px solid #1e1e30;
  border-radius: 20px;
  padding: 48px 44px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.cx-blog-body h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 40px 0 18px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.cx-blog-body h2:first-child {
  margin-top: 0;
}
.cx-blog-body h3 {
  font-size: 22px;
  font-weight: 600;
  color: #eee;
  margin: 30px 0 14px;
  line-height: 1.4;
}
.cx-blog-body p {
  font-size: 17px;
  color: #aaa;
  line-height: 1.85;
  margin-bottom: 18px;
}
.cx-blog-body blockquote {
  margin: 32px 0;
  padding: 28px 32px;
  background: rgba(196,30,90,0.06);
  border-left: 4px solid var(--theme-color1);
  border-radius: 0 12px 12px 0;
  position: relative;
}
.cx-blog-body blockquote p {
  font-size: 17px;
  color: #ccc;
  font-style: italic;
  line-height: 1.8;
  margin: 0;
}
.cx-blog-body blockquote::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 16px;
  font-size: 60px;
  color: rgba(196,30,90,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}
.cx-blog-body ul, .cx-blog-body ol {
  margin: 16px 0;
  padding-left: 24px;
}
.cx-blog-body li {
  font-size: 17px;
  color: #aaa;
  line-height: 1.85;
  margin-bottom: 8px;
}
.cx-blog-body a {
  color: var(--theme-color1);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s;
}
.cx-blog-body a:hover {
  opacity: 0.8;
}
.cx-blog-body strong {
  color: #ddd;
  font-weight: 600;
}
.cx-blog-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 20px 0;
}
.cx-blog-body code {
  background: rgba(196,30,90,0.08);
  color: var(--theme-color1);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 15px;
}
.cx-blog-body pre {
  background: #0d0d1a;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 20px 24px;
  overflow-x: auto;
  margin: 20px 0;
}
.cx-blog-body pre code {
  background: none;
  padding: 0;
  color: #ccc;
  font-size: 14px;
}

/* Excerpt box */
.cx-blog-excerpt-box {
  margin-top: 32px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.02);
  border: 1px solid #1e1e30;
  border-radius: 16px;
  position: relative;
}
.cx-blog-excerpt-icon {
  color: var(--theme-color1);
  font-size: 24px;
  margin-bottom: 12px;
  opacity: 0.6;
}
.cx-blog-excerpt-box p {
  font-size: 16px;
  color: #999;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

/* Tags */
.cx-blog-tags {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.cx-blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(196,30,90,0.08);
  border: 1px solid rgba(196,30,90,0.15);
  border-radius: 100px;
  color: var(--theme-color1);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
.cx-blog-tag:hover {
  background: rgba(196,30,90,0.15);
  border-color: rgba(196,30,90,0.3);
}

/* Prev/Next Nav */
.cx-blog-nav-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #1e1e30;
}
.cx-blog-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid #1e1e30;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s;
  max-width: 48%;
}
.cx-blog-nav-link:hover {
  border-color: rgba(196,30,90,0.3);
  background: rgba(196,30,90,0.04);
}
.cx-blog-nav-link i {
  color: var(--theme-color1);
  font-size: 18px;
  flex-shrink: 0;
}
.cx-blog-nav-next {
  text-align: right;
  margin-left: auto;
}
.cx-blog-nav-label {
  display: block;
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.cx-blog-nav-title {
  display: block;
  font-size: 15px;
  color: #ccc;
  font-weight: 600;
  line-height: 1.4;
}

/* === SIDEBAR === */
.cx-blog-sidebar {
  position: sticky;
  top: 100px;
}
.cx-blog-sidebar-box, .cx-blog-toc {
  background: rgba(255,255,255,0.02);
  border: 1px solid #1e1e30;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
}
.cx-blog-sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cx-blog-sidebar-title i {
  color: var(--theme-color1);
  font-size: 14px;
}

/* TOC */
.cx-blog-toc-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cx-blog-toc-link {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: #888;
  text-decoration: none;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: all 0.3s;
  line-height: 1.5;
}
.cx-blog-toc-link:hover {
  color: #ccc;
  background: rgba(255,255,255,0.03);
}
.cx-blog-toc-link.active {
  color: var(--theme-color1);
  background: rgba(196,30,90,0.06);
  border-left-color: var(--theme-color1);
  font-weight: 600;
}
.cx-blog-toc-link.cx-toc-sub {
  padding-left: 28px;
  font-size: 13px;
}

/* Categories */
.cx-blog-cat-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cx-blog-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 14px;
  color: #888;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
}
.cx-blog-cat-item:hover {
  color: var(--theme-color1);
  background: rgba(196,30,90,0.06);
}
.cx-blog-cat-item i {
  font-size: 11px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s;
}
.cx-blog-cat-item:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* Recent Posts */
.cx-blog-recent-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cx-blog-recent-item {
  display: flex;
  gap: 14px;
  text-decoration: none;
  padding: 10px;
  border-radius: 10px;
  transition: background 0.3s;
}
.cx-blog-recent-item:hover {
  background: rgba(255,255,255,0.03);
}
.cx-blog-recent-img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #1e1e30;
}
.cx-blog-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cx-blog-recent-info {
  min-width: 0;
}
.cx-blog-recent-date {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
  display: block;
}
.cx-blog-recent-info h5 {
  font-size: 14px;
  font-weight: 600;
  color: #ccc;
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cx-blog-recent-item:hover h5 {
  color: var(--theme-color1);
}

/* === RELATED POSTS === */
.cx-blog-related {
  padding: 80px 0;
  background: var(--theme-color3);
  border-top: 1px solid rgba(196,30,90,0.1);
}
.cx-blog-related .sec-title {
  margin-bottom: 50px;
}
.cx-blog-related .sec-title .sub-title,
.cx-blog-related .sub-title {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--theme-color1) !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  margin-bottom: 16px !important;
}
.cx-blog-related .sec-title .sub-title img,
.cx-blog-related .sub-title img {
  width: 16px;
  height: auto;
}
.cx-blog-related .sec-title .title,
.cx-blog-related .title {
  font-size: 40px !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: -1px !important;
  line-height: 1.2 !important;
}
.cx-blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cx-blog-related-card {
  display: block;
  background: rgba(255,255,255,0.02);
  border: 1px solid #1e1e30;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.cx-blog-related-card:hover {
  border-color: rgba(196,30,90,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.cx-blog-related-img {
  height: 200px;
  overflow: hidden;
}
.cx-blog-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.cx-blog-related-card:hover .cx-blog-related-img img {
  transform: scale(1.05);
}
.cx-blog-related-body {
  padding: 24px;
}
.cx-blog-related-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.cx-blog-related-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
}
.cx-blog-related-meta i {
  color: var(--theme-color1);
  font-size: 11px;
}
.cx-blog-related-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.cx-blog-related-card:hover h4 {
  color: var(--theme-color1);
}
.cx-blog-related-body p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 16px;
}
.cx-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-color1);
  text-decoration: none;
  transition: gap 0.3s;
}
.cx-link-arrow:hover {
  gap: 12px;
}

/* === CTA SECTION (reuse from service page) === */
.cx-cta-sec {
  padding: 100px 0;
  background: linear-gradient(180deg, #15152a 0%, var(--theme-color3) 100%);
  position: relative;
  text-align: center;
}
.cx-cta-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--theme-color1) 50%, transparent 95%);
  opacity: 0.5;
}
.cx-cta-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,30,90,0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.cx-cta-inner {
  position: relative;
  z-index: 2;
}
.cx-cta-inner h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.cx-cta-inner p {
  font-size: 18px;
  color: #888;
  margin-bottom: 36px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.cx-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.cx-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cx-btn i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cx-btn:hover i {
  transform: translateX(4px);
}
.cx-btn-green {
  background: linear-gradient(135deg, var(--theme-color1), #a81560);
  color: #fff;
  box-shadow: 0 4px 16px rgba(196,30,90,0.2);
}
.cx-btn-green:hover {
  box-shadow: 0 8px 32px rgba(196,30,90,0.35);
  transform: translateY(-2px);
}

/* === RESPONSIVE === */
@media (max-width: 1199px) {
  .cx-blog-layout {
    grid-template-columns: 1fr 280px;
    gap: 36px;
  }
}
@media (max-width: 991px) {
  .cx-blog-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }
  .cx-blog-hero-content,
  .cx-blog-hero-media {
    flex-basis: auto;
    max-width: 100%;
    width: 100%;
  }
  .cx-blog-hero-media {
    min-height: 360px;
  }
  .cx-blog-hero-media img {
    height: 360px;
  }
  .cx-blog-layout {
    grid-template-columns: 1fr;
  }
  .cx-blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .cx-blog-toc {
    grid-column: 1 / -1;
  }
  .cx-blog-hero h1 {
    font-size: 40px;
  }
  .cx-blog-body {
    padding: 32px 28px;
  }
  .cx-blog-related-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cx-blog-hero {
    padding: 120px 0 40px;
  }
  .cx-blog-hero h1 {
    font-size: 30px;
    letter-spacing: -0.5px;
  }
  .cx-blog-meta {
    gap: 12px;
  }
  .cx-blog-hero-media {
    min-height: 280px;
  }
  .cx-blog-hero-media img {
    height: 280px;
    border-radius: 20px;
  }
  .cx-blog-hero-media::before,
  .cx-blog-hero-media::after {
    border-radius: 22px;
  }
  .cx-blog-meta-sep {
    display: none;
  }
  .cx-blog-body {
    padding: 24px 20px;
  }
  .cx-blog-body h2 {
    font-size: 24px;
  }
  .cx-blog-body h3 {
    font-size: 20px;
  }
  .cx-blog-sidebar {
    grid-template-columns: 1fr;
  }
  .cx-blog-nav-row {
    flex-direction: column;
  }
  .cx-blog-nav-link {
    max-width: 100%;
  }
  .cx-blog-related-grid {
    grid-template-columns: 1fr;
  }
  .cx-cta-inner h2 {
    font-size: 32px;
  }
}

/* Shared cx button polish */
.cx-btn,
.cx-btn-green {
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  background: linear-gradient(135deg, hsl(39.88deg, 72.93%, 55.1%), hsl(334.77deg, 82.24%, 41.96%)) !important;
  color: #fff !important;
  box-shadow: 0 12px 32px rgba(196,30,90,0.24);
  font-weight: 700;
}

.cx-btn:hover,
.cx-btn-green:hover {
  background: linear-gradient(135deg, hsl(334.77deg, 82.24%, 41.96%), hsl(39.88deg, 72.93%, 55.1%)) !important;
  color: #fff !important;
  border-color: rgba(226,166,55,0.42) !important;
  box-shadow: 0 18px 44px rgba(196,30,90,0.34);
}
