* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b5998 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #333;
}

.container {
    max-width: 800px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

header {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.auction-handle {
    overflow-wrap: normal;
}

.handle-word {
    display: inline-block;
}

.handle-word:nth-of-type(even) {
    color: #bfdbfe;
}

.handle-word:nth-of-type(odd) {
    color: #fff7ed;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

main {
    padding: 40px 30px 20px 30px;
}

.auction-info {
    text-align: center;
    margin-bottom: 40px;
}

.auction-info h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #dc2626;
    font-weight: 700;
}

.eyebrow {
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
}

.countdown-status {
    color: #1e3a8a;
    font-size: 1.25rem;
    font-weight: 650;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.time-block {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    padding: 20px 30px;
    border-radius: 12px;
    min-width: 100px;
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.5);
    border: 3px solid white;
}

.time-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.time-label {
    display: block;
    font-size: 0.9rem;
    margin-top: 8px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auction-details {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.auction-details p {
    font-size: 1.1rem;
    margin: 10px 0;
}

.auction-details .detail-note {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 14px auto 18px;
    max-width: 620px;
}

.auction-cta {
    display: inline-block;
    text-decoration: none;
}

.auction-cta.is-disabled {
    background: #94a3b8;
    box-shadow: none;
    cursor: default;
    pointer-events: none;
}

.notification-section {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.notification-section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #dc2626;
    font-weight: 700;
}

.notification-section > p {
    margin-bottom: 20px;
    color: #64748b;
}

.email-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.email-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.email-form input:focus {
    outline: none;
    border-color: #dc2626;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.5);
}

.btn:focus-visible, a:focus-visible, input:focus-visible {
    outline: 3px solid #f59e0b;
    outline-offset: 3px;
}

.btn-secondary {
    background: white;
    color: #dc2626;
    border: 2px solid #dc2626;
    width: 100%;
}

.btn-secondary:hover {
    background: #dc2626;
    color: white;
}

.calendar-section {
    text-align: center;
}

.calendar-section p {
    margin-bottom: 15px;
    color: #64748b;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

.telegram-join {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
    color: white;
}

.telegram-join h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.telegram-join p {
    margin-bottom: 20px;
    opacity: 0.95;
}

.btn-telegram {
    background: white;
    color: #0088cc;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.btn-telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

.info-box {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.info-box h3 {
    color: #92400e;
    margin-bottom: 10px;
}

.info-box p {
    color: #78350f;
    line-height: 1.6;
}

footer {
    background: #f8fafc;
    padding: 20px;
    text-align: center;
    color: #64748b;
}

footer a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

/* Share Section */
.share-section {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.share-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-icon {
    font-size: 1.2rem;
}

.twitter-btn {
    background: #000000;
    color: white;
}

.twitter-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.telegram-btn {
    background: #0088cc;
    color: white;
}

.telegram-btn:hover {
    background: #006699;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}

.truth-btn {
    background: #e81c28;
    color: white;
}

.truth-btn:hover {
    background: #c71820;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 28, 40, 0.4);
}

/* Social Proof Counter */
.social-proof {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.social-proof p {
    margin: 0;
    font-size: 1rem;
}

.social-proof strong {
    font-size: 1.3rem;
    color: #fff;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 2px solid #e2e8f0;
}

.faq-section h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #dc2626;
    font-weight: 700;
    text-align: center;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h4 {
    font-size: 1.1rem;
    color: #1e3a8a;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 600px) {
    body {
        padding: 0;
        align-items: flex-start;
    }

    .container {
        border-radius: 0;
    }

    main {
        padding: 28px 16px 12px;
    }

    header {
        padding: 30px 16px;
    }

    header h1 {
        font-size: clamp(1.35rem, 7vw, 1.8rem);
        line-height: 1.15;
    }

    .time-block {
        padding: 15px 20px;
        min-width: 0;
    }

    .countdown {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        margin: 0 auto;
        max-width: 300px;
    }

    .time-value {
        font-size: 2rem;
    }

    .email-form {
        flex-direction: column;
    }

    .email-form input {
        min-width: 100%;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
    }

    .faq-section {
        padding: 20px;
    }

    .faq-section h3 {
        font-size: 1.5rem;
    }
}
