* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #fef5f0 0%, #f9e8e0 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    direction: ltr;
}

.container {
    max-width: 600px;
    width: 100%;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(212, 134, 156, 0.15);
    padding: 50px 40px;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-section {
    text-align: center;
    margin-bottom: 40px;
}

.logo-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #fef5f0, #fce4ec);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(212, 134, 156, 0.2);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.brand-name {
    font-size: 2.5em;
    color: #d4869c;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 2px;
}

.tagline {
    color: #8b6f7d;
    font-size: 1em;
    opacity: 0.8;
    margin-bottom: 10px;
}

.designer {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #b8a0ac;
    font-style: italic;
}

.designer .heart {
    color: #e08b9a;
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.designer a {
    color: #d4a5b8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.designer a:hover {
    color: #e08b9a;
}

.designer a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #e08b9a, #d4a5b8);
    transition: width 0.3s ease;
}

.designer a:hover::after {
    width: 100%;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
}


.links-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.link-button {
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 20px 30px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.4s ease;
    z-index: 0;
}

.link-button:hover::before {
    width: 100%;
}

.link-button.shop {
    background: linear-gradient(135deg, #d4869c, #c97088);
    color: white;
    box-shadow: 0 10px 25px rgba(212, 134, 156, 0.3);
}

.link-button.shop:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 134, 156, 0.4);
}

.link-button.learn {
    background: linear-gradient(135deg, #b8a0ac, #9d8393);
    color: white;
    box-shadow: 0 10px 25px rgba(184, 160, 172, 0.3);
}

.link-button.learn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(184, 160, 172, 0.4);
}

.link-button .icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    margin-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.link-button .icon svg {
    width: 100%;
    height: 100%;
}

.link-button span {
    flex: 1;
    text-align: left;
    z-index: 1;
}

.link-button .arrow {
    font-size: 1.3em;
    transition: transform 0.3s ease;
    z-index: 1;
    margin-left: auto;
}

.link-button:hover .arrow {
    transform: translateX(5px);
}

.social-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef5f0, #fce4ec);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d4869c;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 134, 156, 0.15);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, #d4869c, #c97088);
    color: white;
    box-shadow: 0 10px 25px rgba(212, 134, 156, 0.3);
}

footer {
    text-align: center;
    color: #8b6f7d;
    font-size: 0.9em;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .container {
        padding: 40px 25px;
    }

    .brand-name {
        font-size: 2em;
    }

    .link-button {
        padding: 18px 25px;
        font-size: 1em;
    }

    .logo-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }

    .brand-name {
        font-size: 1.8em;
    }

    .tagline {
        font-size: 0.9em;
    }

    .designer {
        font-size: 0.85em;
    }

    .link-button {
        padding: 15px 20px;
        font-size: 0.95em;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .logo-image {
        width: 90px;
        height: 90px;
    }
}
