body {
    background: #121212 url('/assets/bg.svg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    height: 100vh;
    font-family: 'Inter', sans-serif;
}

.header,
.footer {
    height: 120px;
    background-color: #121212;
    display: flex;
    align-items: center;
    z-index: 2;
    padding: 0 80px;
}

.header {
    border-bottom: 3px solid red;
    justify-content: space-between;
}

.footer {
    border-top: 3px solid red;
    justify-content: center;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    height: calc(100% - 245px);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.copied-btn {
    background: white;
    color: black;
    font-size: 0.8rem;
    border-radius: 6px;
    padding: 4px 10px;
    margin-left: 5px;
}

a {
    text-decoration: none;
}

.custom-btn {
    background-color: #fff;
    border: none;
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 24px;
    cursor: pointer;
    height: 53px;
    max-width: 185px;
    width: 100%;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    transform: scale(1);
}

.custom-btn:hover {
    box-shadow: 0 0 32px rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

.custom-btn span {
    background: linear-gradient(to bottom, #000, #00000086);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.copyright-text {
    font-size: 18px;
    color: #fff;
    opacity: 0.8;
}

.gradient-custom-text {
    background: linear-gradient(to bottom left, rgba(255, 255, 255, 0.6) 15%, white 35%, white 100%);
    background-position: top right;
    background-size: 150% 150%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-title-text {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 68px;
    font-weight: 600;
}

.custom-description-text {
    color: #fff;
    opacity: 0.7;
    margin-bottom: 1.4rem;
    font-size: 22px;
}

.custom-dark-text {
    color: #424242;
    font-size: 18px;
    margin-right: 8px;
}

#copy-password {
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.underline-word {
    position: relative;
    display: inline-block;
}

.underline-word::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #fff;
}

.action-tag {
    border-radius: 12px;
    background-color: #fff;
    color: #000;
    padding: 5px 10px;
    position: absolute;
    right: -90px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.5s;
}