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

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background: url('bg-img.png') center center/cover no-repeat;
}
.background::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 15, 20, 0.7);
    backdrop-filter: blur(6px);
    z-index: 1;
}

.main-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.logo {
    width: 120px;
    margin-bottom: 32px;
}

.main-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 2px 16px #0008;
}

.subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 32px;
    color: #e0e0e0;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-shadow: 0 2px 16px #0008;
}

.cta-button {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    background-color: #75fbb8;
    color: #0b0b11;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-bottom: 32px;
    box-shadow: 0 2px 16px #0006;
}
.cta-button:hover {
    background-color: #5ce8a5;
}

.microcopy {
    font-size: 14px;
    color: #cccccc;
    font-weight: 400;
    margin-top: 16px;
    text-shadow: 0 2px 16px #0008;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}
.modal.active {
    display: flex;
}
.modal-content {
    background-color: #18161c;
    border-radius: 17px;
    padding: 40px 32px 32px 32px;
    width: 100%;
    max-width: 420px;
    border: 1px solid #2e2d33;
    box-shadow: 0 4px 32px #000a;
    position: relative;
    text-align: center;
}
.close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    color: #888;
    cursor: pointer;
    background: none;
    border: none;
}
.modal-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #75fbb8;
}
.form-group {
    margin-bottom: 16px;
    text-align: left;
}
.form-label {
    display: block;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 400;
}
.form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    background-color: #0b0b11;
    border: 1px solid #2e2d33;
    border-radius: 6px;
    color: #ffffff;
    transition: border-color 0.2s ease;
}
.form-input::placeholder {
    color: #888888;
}
.form-input:focus {
    outline: none;
    border-color: #75fbb8;
}
.modal .cta-button {
    margin-top: 8px;
    margin-bottom: 0;
}

/* Success Modal Styles */
.success-modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.success-message {
    text-align: center;
}

.success-title {
    font-size: 24px;
    font-weight: 600;
    color: #75fbb8;
    margin-bottom: 16px;
    line-height: 1.3;
}

.success-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.5;
    max-width: 320px;
}
@media (max-width: 480px) {
    .modal-content {
        padding: 32px 12px 24px 12px;
    }
    .main-title {
        font-size: 22px;
    }
    .subtitle {
        font-size: 14px;
    }
    .success-title {
        font-size: 20px;
    }
    .success-subtitle {
        font-size: 14px;
    }
} 