/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #212529;
    line-height: 1.6;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Profile Section */
.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-name {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.profile-bio {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 20px;
    text-align: center;
}

/* Social Media Section */
.social-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
}

.social-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.social-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.twitter-icon {
    background-color: #f0f0f0;
}

.instagram-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.youtube-icon {
    background-color: #ffebee;
}

.tiktok-icon {
    background-color: #f0f0f0;
}

.discord-icon {
    background-color: #e9eeff;
}

.custom-icon {
    background-color: #e9f7fe;
}

.social-info {
    flex: 1;
}

.social-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.social-username, .social-desc {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.social-button {
    background-color: #4da7ff;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.youtube-button {
    background-color: #ff0000;
}

.instagram-button {
    background: linear-gradient(45deg, #f09433, #e6683c 50%, #dc2743);
}

.tiktok-button {
    background-color: #000000;
}

.discord-button {
    background-color: #5865F2;
}

.custom-button {
    background-color: #27ae60;
}

.social-button:hover {
    opacity: 0.9;
}

.social-card a {
    display: block;
    width: 100%;
    text-decoration: none;
}

/* Featured Content Section */
.featured-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    margin-bottom: 40px
}

.featured-container a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.featured-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.featured-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.featured-info {
    padding: 20px;
}

.featured-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.featured-desc {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Footer Section */
.footer {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #dee2e6;
    padding-top: 20px;
}

.footer-text {
    color: #6c757d;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #212529;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .profile-container {
        margin-bottom: 30px;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .profile-name {
        font-size: 2rem;
    }

    .social-container {
        grid-template-columns: 1fr;
    }

    .featured-container {
        grid-template-columns: 1fr;
    }

    .footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }

    .profile-name {
        font-size: 1.8rem;
    }

    .profile-bio {
        font-size: 1rem;
    }

    .social-card {
        padding: 15px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}