/* Physical 100 Survivor Theme - Rugged & Raw */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    /* Changed main color to white and adjusted other colors */
    --color-white: #0a0a0a;
    --color-black: #ffffff;
    --color-red: #d81e1e;
    --color-blood: #8b0000;
    --color-concrete: #4a4a4a;
    --color-dirt: #cccccc;
    --color-ash: #1a1a1a;
  }
  
  body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    /* Changed background to white */
    background-color: #ffffff;
    color: var(--color-white);
    line-height: 1.6;
    min-height: 100vh;
    /* Adjusted texture overlay for white background */
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
      ), repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.02) 2px, rgba(0, 0, 0, 0.02) 4px),
      radial-gradient(circle at 30% 40%, rgba(200, 200, 200, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 70% 60%, rgba(220, 220, 220, 0.15) 0%, transparent 50%);
    background-size: 100px 100px, 100px 100px, 100% 100%, 100% 100%;
    background-color: #ffffff;
  }
  
  .container {
    /* Responsive width for better mobile experience */
    max-width: min(900px, 98vw);
    margin: 0 auto;
    padding: clamp(10px, 3vw, 60px) clamp(6px, 2vw, 20px);
  }

  /* Mobile-specific adjustments */
  @media (max-width: 600px) {
    .container {
      max-width: 100%;
      padding: 10px 6px;
    }

    .header {
      margin-bottom: 20px;
      padding: 25px 15px;
    }

    .prices-banner {
      padding: 18px 12px;
      margin-bottom: 18px;
    }

    .prices-banner-small {
      padding: 14px 10px;
    }

    .form-wrapper {
      padding: 18px 12px;
    }

    .form-section {
      padding: 18px 12px;
      margin-bottom: 18px;
    }

    .dependent-item {
      padding: 15px 10px;
    }
  }
  
  /* Header Styles */
  .header {
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 60px);
    padding: clamp(30px, 8vw, 60px) clamp(20px, 5vw, 40px);
    /* Changed header background to white */
    background-color: #ffffff;
    /* Aggressive angular clips and rough shadows */
    clip-path: polygon(
      0 8px,
      8px 0,
      calc(100% - 8px) 0,
      100% 8px,
      100% calc(100% - 8px),
      calc(100% - 8px) 100%,
      8px 100%,
      0 calc(100% - 8px)
    );
    box-shadow: inset 0 0 30px rgba(216, 30, 30, 0.3), 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 2px var(--color-red);
    position: relative;
    border: 4px solid var(--color-red);
    overflow: hidden;
  }
  
  /* Added distressed texture overlay */
  .header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(0, 0, 0, 0.02) 10px,
      rgba(0, 0, 0, 0.02) 20px
    );
    pointer-events: none;
    opacity: 0.5;
  }
  
  .header-badge {
    display: inline-block;
    margin-bottom: clamp(15px, 3vw, 20px);
    filter: drop-shadow(0 0 8px rgba(216, 30, 30, 0.3));
  }
  
  .badge-number {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(60px, 15vw, 120px);
    font-weight: 700;
    color: var(--color-red);
    line-height: 1;
    letter-spacing: clamp(2px, 1vw, 6px);
    /* Rough, gritty text with hard shadows */
    text-shadow: 3px 3px 0 var(--color-blood), 6px 6px 0 rgba(0, 0, 0, 0.8), 0 0 12px rgba(216, 30, 30, 0.3);
    position: relative;
  }
  
  .main-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(32px, 8vw, 72px);
    font-weight: 700;
    letter-spacing: clamp(3px, 1vw, 8px);
    margin-bottom: clamp(15px, 3vw, 25px);
    /* Changed title color to black for white background */
    color: #0a0a0a;
    text-shadow: 2px 2px 0 var(--color-red), 4px 4px 0 rgba(0, 0, 0, 0.1), 0 0 8px rgba(216, 30, 30, 0.25);
    transform: scaleY(1.1);
  }
  
  .date-banner {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: clamp(10px, 2vw, 16px) clamp(20px, 5vw, 60px);
    display: inline-block;
    margin-bottom: clamp(15px, 3vw, 20px);
    font-weight: 700;
    font-size: clamp(12px, 2.5vw, 16px);
    letter-spacing: clamp(2px, 0.5vw, 4px);
    /* Harsh angular cut with distressed edges */
    clip-path: polygon(
      10px 0,
      calc(100% - 10px) 0,
      100% 10px,
      100% calc(100% - 10px),
      calc(100% - 10px) 100%,
      10px 100%,
      0 calc(100% - 10px),
      0 10px
    );
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8), inset 0 -2px 10px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--color-blood);
  }
  
  .subtitle {
    font-size: clamp(11px, 2vw, 15px);
    letter-spacing: clamp(2px, 0.8vw, 5px);
    font-weight: 700;
    /* Changed subtitle to darker color for visibility */
    color: #4a4a4a;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  /* Early Bird Prices Banner */
  .prices-banner {
    background-color: #ffffff;
    border: 3px solid var(--color-red);
    padding: clamp(25px, 5vw, 40px);
    margin-bottom: clamp(25px, 4vw, 35px);
    position: relative;
    /* Angular clips matching form sections */
    clip-path: polygon(
      0 8px,
      8px 0,
      calc(100% - 8px) 0,
      100% 8px,
      100% calc(100% - 8px),
      calc(100% - 8px) 100%,
      8px 100%,
      0 calc(100% - 8px)
    );
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05), 0 8px 25px rgba(0, 0, 0, 0.08);
  }
  
  .prices-header {
    text-align: center;
    margin-bottom: clamp(20px, 4vw, 30px);
    padding-bottom: clamp(15px, 3vw, 20px);
    border-bottom: 3px solid var(--color-red);
    position: relative;
  }
  
  .prices-header::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(80px, 30%, 150px);
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--color-blood) 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(216, 30, 30, 0.4);
  }
  
  .prices-header h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 700;
    letter-spacing: clamp(2px, 0.5vw, 4px);
    color: #0a0a0a;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

  .prices-note {
    font-family: "Inter", sans-serif;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 600;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
  }

  /* Smaller Standard Prices Banner */
  .prices-banner-small {
    padding: clamp(18px, 4vw, 30px);
    margin-bottom: clamp(20px, 3vw, 30px);
    border-width: 2px;
  }

  .prices-banner-small .prices-header {
    margin-bottom: clamp(15px, 3vw, 20px);
    padding-bottom: clamp(10px, 2vw, 15px);
    border-bottom-width: 2px;
  }

  .prices-banner-small .prices-header h2 {
    font-size: clamp(18px, 4vw, 28px);
    letter-spacing: clamp(1px, 0.4vw, 3px);
    color: #4a4a4a;
  }

  .prices-banner-small .prices-grid {
    gap: clamp(10px, 2vw, 15px);
  }

  .prices-banner-small .price-item {
    padding: clamp(8px, 1.5vw, 12px) clamp(12px, 2vw, 18px);
    border-width: 1px;
  }

  .prices-banner-small .price-label {
    font-size: clamp(10px, 1.8vw, 12px);
  }

  .prices-banner-small .price-value {
    font-size: clamp(16px, 3vw, 22px);
    color: #4a4a4a;
  }
  
  .prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(15px, 3vw, 20px);
  }
  
  .price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(12px, 2vw, 18px) clamp(16px, 3vw, 24px);
    background-color: #f5f5f5;
    border: 2px solid #cccccc;
    /* Angular clips */
    clip-path: polygon(
      0 6px,
      6px 0,
      calc(100% - 6px) 0,
      100% 6px,
      100% calc(100% - 6px),
      calc(100% - 6px) 100%,
      6px 100%,
      0 calc(100% - 6px)
    );
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .price-item:hover {
    border-color: var(--color-red);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05), 0 0 15px rgba(216, 30, 30, 0.3);
    transform: translateY(-2px);
  }
  
  .price-label {
    font-family: "Inter", sans-serif;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 600;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .price-value {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    color: var(--color-red);
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  /* Form Styles */
  .form-wrapper {
    /* Changed form wrapper background to white */
    background-color: #ffffff;
    box-shadow: 0 0 0 3px var(--color-red), 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: clamp(25px, 6vw, 50px);
    /* Angular clips for rugged appearance */
    clip-path: polygon(
      0 12px,
      12px 0,
      calc(100% - 12px) 0,
      100% 12px,
      100% calc(100% - 12px),
      calc(100% - 12px) 100%,
      12px 100%,
      0 calc(100% - 12px)
    );
    /* Changed border to lighter color */
    border: 3px solid #e0e0e0;
  }
  
  .form-section {
    /* Changed section background to light gray */
    background-color: #f5f5f5;
    border: 3px solid var(--color-red);
    padding: clamp(25px, 5vw, 45px);
    margin-bottom: clamp(25px, 4vw, 35px);
    position: relative;
    /* Rough clipped corners */
    clip-path: polygon(
      0 8px,
      8px 0,
      calc(100% - 8px) 0,
      100% 8px,
      100% calc(100% - 8px),
      calc(100% - 8px) 100%,
      8px 100%,
      0 calc(100% - 8px)
    );
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05), 0 8px 25px rgba(0, 0, 0, 0.08);
  }
  
  /* Sharp corner accent marks */
  .form-section::before,
  .form-section::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: var(--color-red);
    box-shadow: 0 0 15px rgba(216, 30, 30, 0.8);
  }
  
  .form-section::before {
    top: -3px;
    left: -3px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }
  
  .form-section::after {
    bottom: -3px;
    right: -3px;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
  }
  
  .section-header {
    display: flex;
    align-items: center;
    gap: clamp(12px, 3vw, 20px);
    margin-bottom: clamp(20px, 4vw, 35px);
    padding-bottom: clamp(15px, 3vw, 25px);
    border-bottom: 3px solid var(--color-red);
    position: relative;
    flex-wrap: wrap;
  }
  
  /* Rough accent bar */
  .section-header::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: clamp(60px, 20%, 120px);
    height: 4px;
    background: linear-gradient(90deg, var(--color-blood) 0%, transparent 100%);
    box-shadow: 0 0 10px rgba(216, 30, 30, 0.6);
  }
  
  .section-number {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 700;
    color: var(--color-red);
    line-height: 1;
    /* Bold stroke for industrial look */
    text-shadow: 2px 2px 0 var(--color-blood), 4px 4px 0 rgba(0, 0, 0, 0.8), 0 0 8px rgba(216, 30, 30, 0.3);
    filter: drop-shadow(0 0 4px rgba(216, 30, 30, 0.25));
  }
  
  .section-header h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(20px, 4.5vw, 36px);
    font-weight: 700;
    letter-spacing: clamp(1.5px, 0.5vw, 3px);
    /* Changed section header color to black */
    color: #0a0a0a;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  .section-description {
    /* Changed description color */
    color: #4a4a4a;
    margin-bottom: 25px;
    font-size: clamp(13px, 2vw, 14px);
    line-height: 1.6;
  }
  
  /* Form Groups */
  .form-group {
    margin-bottom: clamp(20px, 3vw, 28px);
  }
  
  .form-group label {
    display: block;
    font-weight: 700;
    font-size: clamp(11px, 2vw, 13px);
    margin-bottom: 10px;
    /* Changed label color to black */
    color: #0a0a0a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: none;
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group textarea {
    width: 100%;
    padding: clamp(12px, 2vw, 16px) clamp(14px, 2vw, 18px);
    /* Changed input borders and background */
    border: 3px solid #cccccc;
    background-color: #ffffff;
    font-size: clamp(14px, 2vw, 16px);
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease;
    /* Changed input text color to black */
    color: #0a0a0a;
    /* Rough clipped corners on inputs */
    clip-path: polygon(
      0 6px,
      6px 0,
      calc(100% - 6px) 0,
      100% 6px,
      100% calc(100% - 6px),
      calc(100% - 6px) 100%,
      6px 100%,
      0 calc(100% - 6px)
    );
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    /* Changed placeholder color */
    color: #999999;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--color-red);
    background-color: #ffffff;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05), 0 0 0 3px rgba(216, 30, 30, 0.3), 0 0 20px rgba(216, 30, 30, 0.4);
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  /* Radio Buttons */
  .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(8px, 2vw, 12px);
  }
  
  .radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: clamp(12px, 2vw, 16px) clamp(16px, 3vw, 24px);
    /* Changed radio option styling for white background */
    border: 3px solid #cccccc;
    background-color: #ffffff;
    transition: all 0.3s ease;
    flex: 1 1 auto;
    min-width: clamp(120px, 40%, 160px);
    /* Angular clips on radio options */
    clip-path: polygon(
      0 6px,
      6px 0,
      calc(100% - 6px) 0,
      100% 6px,
      100% calc(100% - 6px),
      calc(100% - 6px) 100%,
      6px 100%,
      0 calc(100% - 6px)
    );
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05);
    position: relative;
  }
  
  .radio-option:hover {
    border-color: var(--color-red);
    background-color: #f9f9f9;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05), 0 0 15px rgba(216, 30, 30, 0.4);
  }
  
  .radio-option input[type="radio"] {
    display: none;
  }
  
  .radio-custom {
    width: 22px;
    height: 22px;
    /* Changed radio button border color */
    border: 3px solid #666666;
    margin-right: 12px;
    position: relative;
    flex-shrink: 0;
    /* Square with angled clip instead of circle */
    clip-path: polygon(
      0 4px,
      4px 0,
      calc(100% - 4px) 0,
      100% 4px,
      100% calc(100% - 4px),
      calc(100% - 4px) 100%,
      4px 100%,
      0 calc(100% - 4px)
    );
    background-color: #ffffff;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .radio-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--color-red);
    background-color: var(--color-blood);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 10px rgba(216, 30, 30, 0.8);
  }
  
  .radio-option input[type="radio"]:checked + .radio-custom::after {
    /* Fixed icon display */
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    text-shadow: 0 0 5px rgba(216, 30, 30, 0.8);
  }
  
  .radio-option input[type="radio"]:checked ~ .radio-label {
    font-weight: 700;
    color: var(--color-red);
    text-shadow: 0 0 10px rgba(216, 30, 30, 0.5);
  }
  
  .radio-label {
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    /* Changed label color */
    color: #4a4a4a;
  }
  
  /* Dependents */
  .dependent-item {
    /* Changed dependent item background */
    background-color: #ffffff;
    border: 3px solid var(--color-red);
    padding: clamp(20px, 4vw, 30px);
    margin-bottom: clamp(18px, 3vw, 25px);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05), 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    /* Angular clips */
    clip-path: polygon(
      0 8px,
      8px 0,
      calc(100% - 8px) 0,
      100% 8px,
      100% calc(100% - 8px),
      calc(100% - 8px) 100%,
      8px 100%,
      0 calc(100% - 8px)
    );
  }
  
  .dependent-item::before {
    content: "";
    position: absolute;
    top: -3px;
    right: -3px;
    width: 30px;
    height: 30px;
    background-color: var(--color-red);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    box-shadow: 0 0 15px rgba(216, 30, 30, 0.8);
  }
  
  .dependent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(18px, 3vw, 25px);
    padding-bottom: clamp(12px, 2vw, 20px);
    border-bottom: 2px solid var(--color-red);
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .dependent-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(18px, 3.5vw, 26px);
    font-weight: 700;
    letter-spacing: 1.5px;
    /* Changed dependent title color */
    color: #0a0a0a;
    text-shadow: none;
  }
  
  .remove-dependent {
    background-color: var(--color-red);
    color: var(--color-white);
    border: 2px solid var(--color-blood);
    width: clamp(32px, 6vw, 40px);
    height: clamp(32px, 6vw, 40px);
    font-size: clamp(18px, 3vw, 24px);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 900;
    /* Octagonal shape for brutal X button */
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .remove-dependent:hover {
    background-color: var(--color-blood);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(216, 30, 30, 0.8);
  }
  
  .dependent-fields {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 2.5vw, 20px);
  }
  
  .add-dependent-btn {
    width: 100%;
    padding: clamp(14px, 2.5vw, 20px);
    /* Changed add dependent button styling */
    background-color: #ffffff;
    border: 3px solid var(--color-red);
    color: #0a0a0a;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(16px, 3vw, 22px);
    font-weight: 700;
    letter-spacing: clamp(1.5px, 0.3vw, 3px);
    cursor: pointer;
    transition: all 0.3s ease;
    /* Angular clips */
    clip-path: polygon(
      0 8px,
      8px 0,
      calc(100% - 8px) 0,
      100% 8px,
      100% calc(100% - 8px),
      calc(100% - 8px) 100%,
      8px 100%,
      0 calc(100% - 8px)
    );
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05), 0 4px 15px rgba(0, 0, 0, 0.08);
  }
  
  .add-dependent-btn:hover {
    background-color: var(--color-red);
    color: #ffffff;
    border-color: var(--color-blood);
    box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.2), 0 6px 25px rgba(0, 0, 0, 0.15), 0 0 30px rgba(216, 30, 30, 0.6);
    transform: translateY(-2px);
  }
  
  /* Submit Button */
  .submit-button {
    width: 100%;
    padding: clamp(18px, 3vw, 28px);
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-blood) 100%);
    border: 4px solid var(--color-blood);
    color: #ffffff;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 700;
    letter-spacing: clamp(2px, 0.5vw, 4px);
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    /* Aggressive angular shape */
    clip-path: polygon(
      0 10px,
      10px 0,
      calc(100% - 10px) 0,
      100% 10px,
      100% calc(100% - 10px),
      calc(100% - 10px) 100%,
      10px 100%,
      0 calc(100% - 10px)
    );
    box-shadow: inset 0 -4px 10px rgba(0, 0, 0, 0.5), 0 8px 30px rgba(0, 0, 0, 0.2), 0 0 40px rgba(216, 30, 30, 0.5);
    position: relative;
    overflow: hidden;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  
  /* Removed diagonal stripe pattern from submit button */
  /* Commented out the ::before pseudo-element that creates the striped pattern
    .submit-button::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.2) 10px,
        rgba(0, 0, 0, 0.2) 20px
      );
      pointer-events: none;
    }
    */
  
  .submit-button:hover {
    background: linear-gradient(135deg, var(--color-blood) 0%, #6b0000 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: inset 0 -4px 10px rgba(0, 0, 0, 0.6), 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 50px rgba(216, 30, 30, 0.8);
  }
  
  .submit-button:active {
    transform: translateY(0) scale(0.98);
  }
  
  /* Loading Overlay */
  .loading-overlay,
  .success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.97);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    /* Added texture to overlay */
    background-image: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 4px
    );
  }
  
  .loading-overlay.show,
  .success-overlay.show {
    display: flex;
  }
  
  .loading-content,
  .success-content {
    text-align: center;
    color: var(--color-white);
  }
  
  .loading-spinner {
    width: clamp(60px, 12vw, 90px);
    height: clamp(60px, 12vw, 90px);
    border: clamp(4px, 1vw, 7px) solid var(--color-dirt);
    border-top: clamp(4px, 1vw, 7px) solid var(--color-red);
    /* Octagonal spinner */
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation: spin 1.2s linear infinite;
    margin: 0 auto clamp(20px, 4vw, 30px);
    box-shadow: 0 0 30px rgba(216, 30, 30, 0.6);
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .loading-text h3,
  .success-text h3 {
    /* Corrected and completed rule */
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 700;
    letter-spacing: clamp(1.5px, 0.5vw, 3px);
    text-transform: uppercase;
    color: var(--color-white);
    text-shadow: 2px 2px 0 var(--color-red), 0 0 20px rgba(216, 30, 30, 0.8);
  }
  
  .loading-text p,
  .success-text p {
    font-size: clamp(14px, 2.5vw, 18px);
    margin-top: 15px;
    color: var(--color-dirt);
    line-height: 1.5;
  }
  