    @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
    
    body.page-id-12364 {
      font-family: 'Cinzel', serif;
    }

    .dc-campaign-wrap {
      /*background: rgba(255, 255, 255, 0.98);*/
      /*backdrop-filter: blur(20px);*/
      border-radius: 24px;
      /*box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(188, 157, 114, 0.2);*/
      /*max-width: 480px;*/
      width: 100%;
      padding: 15px;
      animation: slideIn 0.8s ease-out;
      position: relative;
      z-index: 0;
    }
    
    #dc-step-register > div,
    #dc-step-otp > div,
    #dc-otp-form > div,
    #dc-step-code-entry > div,
    #dc-reward-message > div {
          border-radius: 30px;
          border: 3px solid transparent;
          background: 
            linear-gradient(#000, #000) padding-box, /* inner background */
            linear-gradient(135deg, #EEA12B, #FEF274) border-box; /* border gradient */
          background-origin: border-box;
          background-clip: content-box, border-box;
          padding: 1px;
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    #dc-campaign-wrap .campaign-badge {
        background: linear-gradient(135deg, #EEA12B, #FEF274);
        color: #000;
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 18px;
        font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      display: inline-block;
      margin-bottom: 20px;
      box-shadow: 0 4px 15px rgba(188, 157, 114, 0.3);
    }

    #dc-campaign-wrap h2 {
      color: #fff;
      font-size: 32px;
      margin-bottom: 35px;
      text-align: center;
      font-weight: 400;
      position: relative;
      font-family: 'Cinzel', serif;
      letter-spacing: normal;
      text-transform: capitalize;
      margin-top: 5px;
    }

    /*#dc-campaign-wrap h2::after {*/
    /*  content: '';*/
    /*  display: block;*/
    /*  width: 60px;*/
    /*  height: 4px;*/
    /*  background: linear-gradient(90deg, #bc9d72, #d4b88a);*/
    /*  margin: 15px auto 0;*/
    /*  border-radius: 2px;*/
    /*}*/

    #dc-campaign-wrap .form-header {
      text-align: center;
      margin-bottom: 15px;
    }
    
    #dc-campaign-wrap .common-form-header {
      margin-bottom: 0px;
      margin-top: 70px;
    }

    #dc-campaign-wrap .form-header .icon-circle {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #bc9d72, #d4b88a);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 40px;
      box-shadow: 0 10px 30px rgba(188, 157, 114, 0.4);
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(188, 157, 114, 0.4);
      }
      50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(188, 157, 114, 0.6);
      }
    }

    #dc-campaign-wrap .form-header h1 {
      color: #ffffff;
      font-size: 34px;
      font-weight: 400;
      font-family: 'Cinzel', serif;
      letter-spacing: normal;
      text-transform: capitalize;
      margin: 0px;
      margin-bottom: -5px;
    }

    #dc-campaign-wrap .form-header p {
      color: #fff;
      font-size: 12px;
      line-height: 1;
    }

    #dc-campaign-wrap form p {
      margin-bottom: 10px;
      position: relative;
    }

    #dc-campaign-wrap .input-wrapper {
      position: relative;
    }

    #dc-campaign-wrap .input-icon {
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: #bc9d72;
      font-size: 18px;
      transition: all 0.3s ease;
    }

    #dc-campaign-wrap input[type="text"],
    #dc-campaign-wrap input[type="email"],
    #dc-campaign-wrap select[name="state"] {
      width: 100%;
      padding: 12px;
      border: 3px solid #ffd57ccc;
      border-radius: 8px;
      font-size: 16px;
      transition: all 0.4s ease;
      background: #000;
      color: #fff;
      font-family: 'Cinzel', serif;
    }
    
    #dc-campaign-wrap select[name="state"] {
        height: 54px;
    }

    #dc-campaign-wrap input[type="text"]:focus,
    #dc-campaign-wrap input[type="email"]:focus,
    #dc-campaign-wrap select[name="state"]:focus {
      outline: none;
      border-color: #bc9d72;
      background: #000;
      box-shadow: 0 0 0 5px rgba(188, 157, 114, 0.1);
      transform: translateY(-2px);
    }

    #dc-campaign-wrap input[type="text"]:focus + .input-icon,
    #dc-campaign-wrap input[type="email"]:focus + .input-icon,
    #dc-campaign-wrap select[name="state"]:focus + .input-icon {
      color: #a08558;
      transform: translateY(-50%) scale(1.1);
    }

    #dc-campaign-wrap input::placeholder,
    #dc-campaign-wrap select option[value=""] {
      color: #aaa;
    }
    
    #dc-campaign-wrap .dc-row {
        display: flex;
        gap: 10px;
        margin-bottom: 10px;
        flex-wrap: wrap;
    }
    
    #dc-campaign-wrap .dc-row input,
    #dc-campaign-wrap .dc-row select {
        flex: 1;
        min-width: 150px;
        box-sizing: border-box;
    }
    
    .dc-error-border {
        border: 3px solid red !important;
        outline: none;
    }
    
    @media (max-width: 600px) {
        #dc-campaign-wrap .dc-row {
            flex-direction: column;
        }
    }

    #dc-campaign-wrap button[type="submit"] {
      width: 100%;
      background: linear-gradient(135deg, #EEA12B, #FEF274);
      color: #000;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.4s ease;
      box-shadow: 0 8px 25px rgba(188, 157, 114, 0.4);
      position: relative;
      overflow: hidden;
      font-weight: 500;
        font-family: 'Cinzel', serif;
        letter-spacing: normal;
        text-transform: capitalize;
        padding: 8px;
        font-size: 22px;
        margin-top: 10px;
    }

    #dc-campaign-wrap button[type="submit"]::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s ease;
    }

    #dc-campaign-wrap button[type="submit"]:hover::before {
      left: 100%;
    }

    #dc-campaign-wrap button[type="submit"]:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(188, 157, 114, 0.6);
    }

    #dc-campaign-wrap button[type="submit"]:active {
      transform: translateY(-1px);
    }

    #dc-campaign-wrap #dc-step-otp,
    #dc-campaign-wrap #dc-step-code-entry {
      animation: fadeIn 0.6s ease-out;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateX(20px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    #dc-campaign-wrap #dc-reward-message {
      text-align: center;
      /*padding: 40px 20px;*/
      animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    @keyframes bounceIn {
      0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
      }
      50% {
        transform: scale(1.1) rotate(5deg);
      }
      70% {
        transform: scale(0.95) rotate(-2deg);
      }
      100% {
        opacity: 1;
        transform: scale(1) rotate(0);
      }
    }

    #dc-campaign-wrap #dc-reward-title {
      font-size: 24px;
      margin-bottom: 0px;
      color: #fff;
      font-weight: 500;
      font-family: 'Cinzel', serif;
      letter-spacing: normal;
      text-transform: capitalize;
    }

    #dc-campaign-wrap #dc-reward-msg {
        font-size: 16px;
        color: #fff;
        line-height: 1.2;
        font-weight: 400;
        margin-bottom: 10px;
    }

    #dc-campaign-wrap .success-icon {
      width: 100px;
      height: 100px;
      margin: 0 auto 25px;
      background: linear-gradient(135deg, #bc9d72, #d4b88a);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: scaleIn 0.6s ease-out;
      box-shadow: 0 15px 40px rgba(188, 157, 114, 0.5);
      position: relative;
    }

    #dc-campaign-wrap .success-icon::before {
      content: '';
      position: absolute;
      width: 120px;
      height: 120px;
      border: 3px solid #bc9d72;
      border-radius: 50%;
      opacity: 0;
      animation: ripple 1.5s ease-out infinite;
    }

    @keyframes ripple {
      0% {
        transform: scale(0.8);
        opacity: 1;
      }
      100% {
        transform: scale(1.3);
        opacity: 0;
      }
    }

    @keyframes scaleIn {
      from {
        transform: scale(0) rotate(-180deg);
      }
      to {
        transform: scale(1) rotate(0);
      }
    }

    #dc-campaign-wrap .success-icon::after {
      content: "✓";
      color: white;
      font-size: 56px;
      font-weight: bold;
    }

    #dc-campaign-wrap .step-indicator {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 35px;
      gap: 12px;
    }

    #dc-campaign-wrap .step-dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #e0e0e0;
      transition: all 0.4s ease;
      position: relative;
    }

    #dc-campaign-wrap .step-dot.active {
      background: linear-gradient(135deg, #bc9d72, #d4b88a);
      width: 40px;
      border-radius: 7px;
      box-shadow: 0 4px 15px rgba(188, 157, 114, 0.4);
    }

    #dc-campaign-wrap .step-dot.completed {
      background: #bc9d72;
    }

    #dc-campaign-wrap .back-link {
      text-align: center;
      margin-top: 20px;
    }

    #dc-campaign-wrap .back-link a {
      color: #bc9d72;
      text-decoration: none;
      font-size: 15px;
      transition: all 0.3s ease;
      font-weight: 600;
    }

    #dc-campaign-wrap .back-link a:hover {
      color: #a08558;
      text-decoration: underline;
    }

    @media (max-width: 480px) {

      #dc-campaign-wrap .form-header h1 {
        font-size: 24px;
      }

      #dc-campaign-wrap h2 {
        font-size: 24px;
      }

      #dc-campaign-wrap .form-header .icon-circle {
        width: 70px;
        height: 70px;
        font-size: 35px;
      }

      #dc-campaign-wrap input[type="text"],
      #dc-campaign-wrap input[type="email"],
      #dc-campaign-wrap select[name="state"] {
        padding: 12px;
        font-size: 18px;
      }

      #dc-campaign-wrap button[type="submit"] {
        padding: 4px;
        font-size: 20px;
      }

      #dc-campaign-wrap .success-icon {
        width: 85px;
        height: 85px;
      }

      #dc-campaign-wrap .success-icon::after {
        font-size: 48px;
      }
    }
    
    
    .dc-message {
        margin-top: 10px;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 14px;
        text-align: center;
        line-height: 1.4;
        font-weight: 500;
    }
    
    .dc-message-error {
        background-color: #ffe0e0;
        color: #b00000;
        margin: 0 15px;
    }
    
    .dc-message-success {
        background-color: #e0ffe0;
        color: #007a00;
        margin: 0 15px;
    }
    
    .sd-checkbox-group {
        margin-top: 15px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .sd-checkbox {
        display: flex;
        align-items: flex-start;
        font-size: 16px;
        cursor: pointer;
        gap: 8px;
        color: #fff;
        font-family: 'Cinzel', serif;
    }
    
    .sd-checkbox input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-top: 2px;
        flex-shrink: 0;
        accent-color: #0073aa;
    }
    
    .sd-checkbox-label {
        line-height: 1.2;
        display: inline-block;
        font-size: 10px;
        margin-bottom: -10px;
    }
    
    #unlock_the_vv {
        background: -webkit-linear-gradient(135deg, #EEA12B, #FEF274);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .form-header,
    #dc-register-form,
    #dc-otp-form,
    #dc-code-form,
    #dc-step-code-entry,
    #dc-reward-message,
    #dc-reward-title,
    #dc-reward-msg {
        padding: 0px 15px;
    }
    
    #dc-register-form,
    #dc-otp-form,
    #dc-code-form,
    #dc-step-code-entry,
    #dc-reward-message,
    #dc-reward-title,
    #dc-reward-msg {
        padding-bottom: 15px;
    }
    
    img.sd_india_logo {
        display: block;
        margin: 0 auto;
        width: 200px;
        margin-top: -100px;
    }
    
    img.bottle_images {
        display: block;
        margin: 0 auto;
        width: 100%;
    }

button.dc-loading {
  position: relative;
  opacity: 0.8;
  cursor: not-allowed;
}

.dc-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-top-color: transparent;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
  animation: dc-spin 0.8s linear infinite;
}

@keyframes dc-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


/* Reward card CSS starts here */

.reward-wrapper {
    /*max-width: 480px;*/
    width: 100%;
    position: relative;
    z-index: 1;
}

.reward-card {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 25%, #d4af37 50%, #aa8c2c 75%, #d4af37 100%);
    background-size: 200% 200%;
    animation: goldShimmer 4s ease infinite, cardEntrance 1s ease-out;
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.4),
        0 0 0 1px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid #f4e5c3;
    margin: 10px 30px 25px;
}

@keyframes goldShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.gold-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: sparkleAnim 3s infinite;
}

.sparkle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.sparkle:nth-child(3) { top: 40%; left: 90%; animation-delay: 2s; }
.sparkle:nth-child(4) { top: 80%; left: 20%; animation-delay: 1.5s; }

@keyframes sparkleAnim {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-header {
    /*display: flex;*/
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    line-height: 32px;
}

.brand-section {
    color: #3d2814;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.brand-logo {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.ornament {
    text-align: center;
    margin-bottom: 20px;
}

.ornament-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.ornament-line::before,
.ornament-line::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8b4513, transparent);
}

.ornament-icon {
    font-size: 24px;
    color: #8b4513;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.reward-section {
    text-align: center;
    margin-bottom: 0;
}

#dc-reward-name {
    color: #2d1810;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.5),
        0 1px 0 rgba(255, 255, 255, 0.3);
}

@media (max-width: 600px) {
    .reward-card {
        padding: 20px;
    }

    #dc-reward-name {
        font-size: 26px;
    }

    .brand-name {
        font-size: 20px;
    }

    .premium-badge {
        padding: 6px 12px;
        font-size: 10px;
    }
}

/* Reward card CSS ends here */
