.site-header {
    position: relative;
    width: 100%;
    height: 450px;
    background-image: url('background.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    width: 100%;
    height: 200%;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(22, 27, 31, 0) 0%, 
        rgba(22, 27, 31, 0) 35%,
        rgba(22, 27, 31, 0.05) 50%,
        rgba(22, 27, 31, 0.1) 60%,
        rgba(22, 27, 31, 0.2) 68%,
        rgba(22, 27, 31, 0.35) 74%,
        rgba(22, 27, 31, 0.5) 78%,
        rgba(22, 27, 31, 0.65) 82%,
        rgba(22, 27, 31, 0.8) 86%,
        rgba(22, 27, 31, 0.9) 91%,
        rgba(22, 27, 31, 0.97) 96%,
        #161b1f 100%);
}

.site-header-inner {
    position: relative;
    max-width: 73.75rem;
    height: 100%;
    margin: 0 auto;
    color: #fff;
    font-size: 0.88rem;
    font-family: Poppins, sans-serif;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 2rem;
    padding-top: 8rem;
    z-index: 10;
}

.info-left {
    position: absolute;
    left: 2rem;
    top: 13rem;
    width: auto;
    height: 3.313rem;
    padding: 0;
    color: #fff;
    font-size: 0.88rem;
    font-family: Poppins, sans-serif;
    line-height: 1.375rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-right {
    position: absolute;
    right: 2rem;
    top: 13rem;
    width: auto;
    height: 3.125rem;
    padding: 0;
    color: #f7d674;
    font-size: 0.88rem;
    font-family: Poppins, sans-serif;
    line-height: 1.375rem;
    text-align: right;
    transition: 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.logo-image {
    width: 12rem;
    height: 12rem;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.6));
}

.logo-image:hover {
    transform: scale(1.05);
}

.icon-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-icon {
    position: relative;
    width: 3.625rem;
    height: 3.625rem;
    border: 0.125rem solid rgb(247, 214, 116);
    border-radius: 1.813rem;
    background-color: rgba(247, 214, 116, 0.25);
    color: #fff;
    font-size: 1.50rem;
    font-family: Poppins, sans-serif;
    line-height: 3.625rem;
    text-align: center;
    transition: all 0.3s ease;
    border-width: 0.125rem;
    border-style: solid;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-icon:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    border-color: currentColor;
}

.icon-link:hover .copy-icon {
    border-color: #f7d674;
}

.icon-link i {
    font-size: 1.5rem;
}

.link-text {
    display: flex;
    flex-direction: column;
}

.link-title {
    width: 11.625rem;
    height: 1.75rem;
    color: #fff;
    font-size: 1.13rem;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    line-height: 1.75rem;
    text-align: right;
    transition: all 0.3s ease;
}

.link-subtitle {
    width: 11.625rem;
    height: 1.375rem;
    color: #f2e3b7;
    font-family: Poppins, sans-serif;
    line-height: 1.375rem;
    text-align: right;
    transition: color 0.15s ease-in-out;
}

.info-left .link-title,
.info-left .link-subtitle {
    text-align: left;
}