* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/bg.jpg') center/cover no-repeat;
    filter: brightness(0.5);
    z-index: -2;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.container {
    width: 92%;
    max-width: 520px;
    padding: 40px 30px;
    text-align: center;
    background: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    margin: 20px auto;
    position: relative;
    z-index: 1;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 25px;
}

h1 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

h2 {
    font-size: 1.2rem;
    color: #d4a853;
    font-weight: bold;
    margin-bottom: 25px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 55px;
}

.timer-item span:first-child {
    font-size: 2.3rem;
    font-weight: bold;
    line-height: 1;
}

.timer-label {
    font-size: 0.55rem;
    font-weight: bold;
    color: #999;
    letter-spacing: 2px;
    margin-top: 4px;
    text-transform: uppercase;
}

.benefits {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin-bottom: 30px;
}

.benefits li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.benefits li::before {
    content: "✓";
    color: #d4a853;
    font-weight: bold;
    font-size: 1rem;
    margin-right: 10px;
}

#leadForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, select {
    width: 100%;
    padding: 12px 16px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
}

input:focus, select:focus {
    border-color: #d4a853;
}

input::placeholder {
    color: #777;
}

select option {
    background: #111;
    color: #fff;
}

button {
    margin-top: 10px;
    padding: 14px;
    background: #d4a853;
    color: #000;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.95rem;
    cursor: pointer;
}

button:hover {
    background: #c39742;
}

.footer-text {
    margin-top: 25px;
    font-size: 0.7rem;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .container {
        padding: 25px 15px;
    }
    h1 {
        font-size: 1.3rem;
    }
    h2 {
        font-size: 1.1rem;
    }
    .timer {
        gap: 10px;
    }
    .timer-item span:first-child {
        font-size: 1.8rem;
    }
    .logo {
        width: 150px;
    }
}
@media (max-width: 480px) {
  body { height: auto; align-items: flex-start; padding: 10px 0; overflow-y: auto; overflow-x: hidden; }
  .container { width: 94%; max-width: 94%; padding: 20px 15px; margin: 10px auto; }
  .logo { width: 120px; margin-bottom: 15px; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.1rem; margin-bottom: 15px; }
  .timer { gap: 8px; margin-bottom: 18px; }
  .timer-item span:first-child { font-size: 1.6rem; }
  .benefits { margin-bottom: 18px; }
  .benefits li { font-size: 0.75rem; margin-bottom: 6px; }
  input, select { padding: 10px 12px; font-size: 0.85rem; }
  button { padding: 12px; font-size: 0.85rem; }
  .footer-text { font-size: 0.6rem; margin-top: 15px; }
  .watermark { display: none; }
}