/* About Section */
.about-section {
    padding: 80px 50px;
    background: linear-gradient(to top, #16161a, var(--bg-color));
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.social-box {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    display: inline-block;
    width: 100%;
    max-width: 500px;
    transition: transform 0.3s;
}

.social-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 25px 0;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.social-icon:hover {
    transform: scale(1.2);
    color: white;
}

.social-icon.tiktok:hover {
    background: #000000;
    border-color: #ff0050;
    box-shadow: -2px -2px 10px rgba(0, 242, 234, 0.5), 2px 2px 10px rgba(255, 0, 80, 0.5);
}

.social-icon.facebook:hover {
    background: #1877f2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 5px 15px rgba(214, 36, 159, 0.4);
}

.brand-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}