.pt-section {
    background-color: var(--sky);
}

.hero {
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.2205) 0%, rgba(255, 255, 255, 0.35) 100%);
    box-shadow: 0px 4px 10.9px 0px #FFFFFF7A inset;
    box-shadow: 4px 4px 28.5px 0px #FFFFFF7A inset;
    box-shadow: -4px 19px 40.3px 0px #FFFFFF inset;
    border-radius: 16px;
    padding: 16px;
    max-width: 1080px;
    margin: 0 auto;

}

.fancytext {
    background: #FFFFFF;
    border: 1px solid var(--Accent, #1E2A38);
    border-radius: 12px;
    width: 100%;
    padding: 24px 20px;
}

.resultSection {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    max-width: 1080px;
    margin: 32px auto 0 auto;
    padding-bottom: 32px;
}

.font-type {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.style-type {
    background: #FFFFFF;
    text-align: left;
    color: #1E2A38;
    font-size: 18px;
    font-weight: 600;
    border: #FFFFFF;
    border-radius: 32px;
    padding: 12px 32px;
    min-width: 180px;
}

.style-type.active {
    background: rgba(30, 42, 56, 1);
    border: 2px solid rgba(255, 255, 255, 1);
    color: #FFFFFF;
}

.fc-row {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    position: relative;
    background: #FFFFFF;
    color: #1E2A38;
    font-size: 24px;
    font-weight: 600;
    padding: 16px 32px;
    width: 100%;
}
.copy-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #f3f4f6;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 14px;
  color: #1f2937;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.fc-row:hover .copy-btn {
  opacity: 1;
}
.fc-result {
    width: 100%;
    border-radius: 14px;

    max-height: 695px;
    overflow: auto;
}

.fonts-div {
    display: flex;
    flex-direction: column;
    gap: 1px;
    width: 100%;
    border-radius: 14px;
}

.fc-row input {
    color: #1E2A38;
    font-size: 24px;
    font-weight: 600;
    border: none;
}

.fc-row span {
    font-size: 16px;
    font-weight: 400;
    color: #646464;
    text-align: left;
}

.fonts-div label {
    font-size: 24px;
    font-weight: 600;
    color: #1E2A38;
    margin-bottom: 8px;
    text-align: left;
}

.font-type label {
    font-size: 20px;
    font-weight: 600;
    color: #1E2A38;
    margin-bottom: 8px;
    text-align: left;
}

.fc-row:hover {
    /* border-bottom: 2px solid #D2EAF5; */
    background: #f3efef;
    cursor: pointer;
}

.fc-row:hover input {
    background: #f3efef;
}

@media screen and (max-width: 768px) {
    .resultSection {
        flex-direction: column;
    }

    .font-type {
        margin-bottom: 20px;
        flex-direction: row;
        overflow: auto;
        align-items: center;
    }

    .style-type {
        min-width: unset;
    }

    .font-type label {
        min-width: 160px;
    }
}

.bgmi-how-to {
    background-color: #f7fafd;
    padding: 50px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.bgmi-how-to h2 {
    font-size: 24px;
    font-weight: 600;
    /* margin-bottom: 40px; */
    color: #1a1a1a;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-top:32px;   
}

.step {
    flex: 1 1 30%;
    padding: 20px;
    box-sizing: border-box;
    min-width: 250px;
}

.circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(30, 42, 56, 0.28);
    box-shadow: 0px 2px 2.6px 0px rgba(0, 0, 0, 0.13);

    color: rgba(0, 0, 0, 1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111827;
}

.step p {
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
}