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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-image: url("images/prism.png");
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
}

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

header {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.about-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.intro {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 800px;
    color: #2c3e50;
}

.highlight {
    color: #610e77;
    background-color: rgba(208, 120, 235, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.social-links {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.social-links h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.links {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    justify-content: center;
}

.links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 60px;
    font-size: 0.95rem;
}

.links a:nth-child(1) { background-color: #24292e; } 
.links a:nth-child(1):hover { background-color: #0d1117; }

.links a:nth-child(2) { background-color: #0077b5; } 
.links a:nth-child(2):hover { background-color: #006699; }

.links a:nth-child(3) { background-color: #ff0000; } 
.links a:nth-child(3):hover { background-color: #cc0000; }

.links a:nth-child(4) { background-color: #1877f2; } 
.links a:nth-child(4):hover { background-color: #166fe5; }

.links a:nth-child(5) { background-color: #e4405f; } 
.links a:nth-child(5):hover { background-color: #d12b4b; }

.links a:nth-child(6) { background-color: #bd081c; } 
.links a:nth-child(6):hover { background-color: #9c0718; }

.links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .links {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .profile {
        padding: 20px;
    }
    
    .profile-img {
        width: 150px;
        height: 150px;
    }
    
    .intro {
        font-size: 1rem;
    }
    
    .links {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .links a {
        padding: 12px 8px;
        font-size: 0.9rem;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .profile-img {
        width: 120px;
        height: 120px;
    }
    
    .social-links {
        padding: 20px;
    }
    
    .social-links h2 {
        font-size: 1.5rem;
    }
    
    .links {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .links a {
        padding: 15px 20px;
        min-height: 55px;
    }
}