.about-section {
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0 2rem 0;
    background: #fff;
}
.about-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    gap: 3rem;
    margin: 0 auto;
    padding: 0 2rem;
}
.about-text {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-label {
    color: #8C979A;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    display: inline-block;
}
.about-title {
    font-size: 2.0rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.15;
    background: linear-gradient(90deg, #40C0FF, #7F7FFF 80%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.about-description {
    font-size: 1.08rem;
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    max-width: 600px;
}
.about-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(90deg, #40C0FF, #7F7FFF 80%);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(64,192,255,0.12);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    letter-spacing: 0.01em;
    max-width: 145px; 
}
.about-btn:hover {
    background: linear-gradient(90deg, #7F7FFF 0%, #40C0FF 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(64,192,255,0.18);
}
.about-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    max-width: 400px;
}
.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 32px rgba(64,192,255,0.10);
}
.samurai-tooltip {
    position: fixed;
    pointer-events: none;
    display: none;
    width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(64,192,255,0.18);
    z-index: 3000;
    transition: opacity 0.2s;
}
.samurai-hover {
    color: #8C979A;
    cursor: pointer;
    text-decoration: underline dotted;
    font-style: italic;
} 