body {
    width: 100%;
    padding-bottom: 130px;
}

.header-container {
    display: flex;
    align-items: center;
    padding: 0 16px 0 16px;
}

.overlay-container {
    position: absolute;
    margin-left: 16px;
    margin-top: 10px;
}

.title-text-container {
    display: flex;
    margin: 0;
}

.main-title {
    font-size: 32px;
    color: var(--primary-accent);
    margin: 0;
    font-family: 'Gilroy';
    font-weight: 200;
    line-height: 1;
}

.main-title-secondary {
    font-size: 32px;
    color: var(--primary-accent);
    margin: 0;
    font-family: 'Gilroy';
    font-weight: 600;
    line-height: 1;
}

.main-subtitle {
    font-size: 9px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    margin-left: 3px;
    font-family: 'Gilroy';
    font-weight: 600;
}

.icon-arrow-left {
    width: 18px;
    height: 18px;
}

.text-container {
    margin: 0 16px;
    padding-bottom: 24px;
}

.text-block, .link-block {
    padding-bottom: 16px;
}

.title-text, .title-text-accent { 
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 18px;
}

.title-text {
    color: var(--primary-color);
}

.title-text-accent {
    color: var(--primary-accent);
}

.desc-text-container {
    margin: 12px 0;
}

.desc-text, .desc-text-accent {
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 14px;
    
}

.desc-text-normal {
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 14px;
}

.desc-text, .desc-text-normal {
    color: var(--primary-color);
}

.desc-text-accent {
    color: var(--primary-accent);
}

.desc-text-link {
    color: #2563EB;
    text-decoration: none;
}

.link-placeholder {
    cursor: pointer;
}

.link-placeholder {
    display: flex;
    justify-content: space-between;
    background: #1A1A1A;
    border: 1px solid rgba(81, 81, 81, 0.8);
    border-radius: 8px;
    padding: 12px 14px 12px 14px;
    margin-top: 12px;
}

.link-text {
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 14px;
    text-decoration: underline;
    opacity: 50%;
    color: var(--primary-color);
}

.icon-copy {
    opacity: 50%;
    width: 16px;
    height: 16px;
}

.partnership-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
}

.partnership-form input {
    border: 1px solid rgba(81, 81, 81, 0.8);
    border-radius: 8px;
    background: #1A1A1A;
    padding: 12px 14px;
    color: var(--primary-color);
}

.submit-partnership-button {
    background: #2563EB;
    border-radius: 8px;
    border: none;
    padding: 14px 36px;
    color: var(--primary-color);
    cursor: pointer;
}

.form-successfull-container {
    position: fixed;
    display: none;
    bottom: 0;
    box-sizing: border-box;
    width: 100%;
    background: #1A1A1A;
    border: 1px solid #3B3B3B;
    border-radius: 24px 24px 0px 0px;
    padding: 24px 24px 40px 24px;
}

.form-successfull-container.active {
    display: flex;
}

.text-success-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.text-success {
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    color: var(--primary-color);
    text-align: center;
}

.subtext-success {
    font-family: 'Gilroy';
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: var(--primary-color);
    opacity: 50%;
    text-align: center;
}

.emoji-success {
    font-size: 24px;
}






.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 300px;
    text-align: center;
    margin: 20% auto;
}
.close {
    float: right;
    font-size: 20px;
    cursor: pointer;
}
