* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.profile {
    margin-bottom: 40px;
    color: #ffffff;
}

.profile h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.profile p {
    font-size: 1.1rem;
    opacity: 0.8;
    color: #b8c5d6;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: #2a2d3a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3a3d4a;
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: #353845;
}

.link-button .icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

/* Platform-specific hover colors */
.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: white;
}

.twitter:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #f09433;
    color: white;
}

/* Platform-specific hover effects for icons */
.youtube:hover .icon,
.twitter:hover .icon,
.facebook:hover .icon,
.instagram:hover .icon {
    filter: brightness(0) invert(1);
}

/* Section Styling - Made smaller and less prominent */
.section {
    margin-bottom: 30px;
}

.section-title {
    color: #b8c5d6;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 12px;
    opacity: 0.8;
}

.projects,
.recommendations {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-item,
.recommendation-item {
    background: rgba(42, 45, 58, 0.5);
    border: 1px solid rgba(58, 61, 74, 0.5);
    border-radius: 8px;
    padding: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.2s ease;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.project-item:hover,
.recommendation-item:hover {
    transform: translateY(-1px);
    background: rgba(53, 56, 69, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.project-item h3,
.recommendation-item h3 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: #ffffff;
}

.project-description,
.recommendation-description {
    font-size: 0.8rem;
    color: #9ca3af;
    line-height: 1.3;
    margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .profile h1 {
        font-size: 2rem;
    }

    .link-button {
        padding: 14px 20px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .project-item h3,
    .recommendation-item h3 {
        font-size: 0.9rem;
    }

    .project-description,
    .recommendation-description {
        font-size: 0.75rem;
    }
}