/* Pastel Color Palette */
:root {
    --pastel-pink: #FFD1DC;
    --pastel-blue: #AEC6CF;
    --pastel-green: #B5EAD7;
    --pastel-yellow: #FDFD96;
    --pastel-purple: #DDA0DD;
    --pastel-orange: #FFCBA4;
    --pastel-mint: #C7CEDB;
    --soft-white: #FEFEFE;
    --soft-gray: #F5F5F5;
    --text-dark: #4A4A4A;
    --text-light: #6B6B6B;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-blue) 50%, var(--pastel-green) 100%);
    min-height: 100vh;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 5px solid var(--pastel-purple);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 300;
}

.bio {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

/* Social Media Section */
.social-media {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.social-media h2 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 300;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.social-link.twitter { background: linear-gradient(45deg, #1DA1F2, var(--pastel-blue)); }
.social-link.instagram { background: linear-gradient(45deg, #E4405F, var(--pastel-pink)); }
.social-link.discord { background: linear-gradient(45deg, #7289DA, var(--pastel-purple)); }
.social-link.youtube { background: linear-gradient(45deg, #FF0000, var(--pastel-orange)); }

/* Game Sections */
.game-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    
}

.game-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.game-contents{
    overflow-y: auto;
    max-height: 400px;
     align-items: center;
    
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.game-card {
    background: var(--soft-white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--pastel-mint);
}

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

.game-card:nth-child(3n+1) { border-left-color: var(--pastel-pink); }
.game-card:nth-child(3n+2) { border-left-color: var(--pastel-blue); }
.game-card:nth-child(3n+3) { border-left-color: var(--pastel-green); }

.game-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 500;
}

.game-card p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 10px;
}

.status.completed {
    background: var(--pastel-green);
    color: #2d5a3d;
}

.status.insane {
    background: var(--pastel-orange);
    color: #8b4513;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header {
        padding: 30px 20px;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
    
    .game-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .name {
        font-size: 1.8rem;
    }
    
    .bio {
        font-size: 1rem;
    }
}
