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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #FFE5F1 0%, #FFF0E5 50%, #E5F5FF 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 500px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    background: linear-gradient(135deg, #FF6B9D 0%, #C44569 100%);
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.logo-image {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 300;
}

main {
    padding-top: 30px;
}

.about-section {
    padding: 20px 30px;
    background: linear-gradient(135deg, #FFF9FC 0%, #FFF5F0 100%);
    margin: 0 20px 20px;
    border-radius: 16px;
    border: 2px solid #FFE5F1;
}

.about-section h2 {
    color: #C44569;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.about-section p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: left;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.links-section {
    padding: 20px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-button {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    background: linear-gradient(135deg, #FFE5F1 0%, #FFF0E5 100%);
    border: 2px solid #FFB6D9;
    border-radius: 16px;
    text-decoration: none;
    color: #C44569;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.15);
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
    background: linear-gradient(135deg, #FFD4E5 0%, #FFE5F1 100%);
    border-color: #FF6B9D;
}

.link-button:active {
    transform: translateY(-1px);
}

.link-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.link-text {
    flex: 1;
}

.link-arrow {
    font-size: 1.3rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.link-button:hover .link-arrow {
    transform: translateX(5px);
}

footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.footer-text {
    color: #999;
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 8px;
}

.copyright {
    color: #999;
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 600px) {
    .logo-image {
        max-height: 100px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .link-button {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    main {
        padding-top: 20px;
    }
    
    .about-section {
        padding: 15px 20px;
        margin: 0 15px 15px;
    }
    
    .about-section h2 {
        font-size: 1.3rem;
    }
    
    .about-section p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

