* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Huakang';
    src: url('huakang7.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Huakang', 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

h1 {
    font-size: 3rem;
    color: #E55198;
    font-weight: bold;
}

.hearts {
    display: flex;
    justify-content: center;
    align-items: center;
}

.heart {
    font-size: 1rem;
    margin: 0 1rem;
    transition: transform 0.3s ease;
}

.heart:hover {
    transform: scale(1.2);
}

.heart-red {
    color: #E55198;
}

.heart-yellow {
    color: #ffb74d;
}

.heart-green {
    color: #81c784;
}

.quote {
    margin: 0;
}

.quote-text {
    font-size: 1.5rem;
    color: #f8ae40;
}

.quote-author {
    font-size: 1rem;
    color: #E55198;
    text-indent: 9rem;
}

.links {
    margin: 2rem 0;
}

.links a {
    color: #3498db;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1rem;
    position: relative;
}

.links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.links a:hover::after {
    width: 100%;
}

.location {
    color: #E55198;
    font-size: 0.9rem;
    margin: 2rem 0;
}

/* Core content - Tag design */
.tags-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
    position: relative;
    height: 400px;
}

.tag {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: absolute;
    cursor: pointer;
}

.tag:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.tag i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

/* Individual tag styles */
.tag-branding {
    background-color: #64b5f6;
    top: 0;
    transform: rotate(-5deg);
    z-index: 5;
}

.tag-website {
    background-color: #81c784;
    top: 80px;
    transform: rotate(3deg);
    z-index: 4;
}

.tag-interface {
    background-color: #4db6ac;
    top: 160px;
    transform: rotate(-2deg);
    z-index: 3;
}

.tag-illustration {
    background-color: #ffb74d;
    top: 240px;
    transform: rotate(4deg);
    z-index: 2;
}

.tag-animation {
    background-color: #ba68c8;
    top: 320px;
    transform: rotate(-3deg);
    z-index: 1;
}