/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0f2027;  /* dark techie gradient */
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    background: rgba(30, 30, 30, 0.85);
    border-radius: 15px;
    padding: 30px 30px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    text-align: center;
}

@media (min-width: 768px) {
    .container {
        max-width: 700px; /* You can increase or decrease this as needed */
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 800px;
    }
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #00fff7;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 0 15px #00fff7;
}

.name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #00fff7;
    text-shadow: 0 0 8px #00fff7;
}

.about {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #a0f0f7;
    font-style: italic;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-item {
    display: block;
    background: #142a3a;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 10px #00fff7;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.link-item:hover {
    background: #00fff7;
    color: #0f2027;
    box-shadow: 0 0 20px #00fff7;
    cursor: pointer;
}

.link-item:hover .link-description {
    color: #ffffff;
}

.link-item * {
    text-decoration: none;
    color: inherit;
}

.link-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 5px;
}

.link-description {
    font-size: 15px;
    font-weight: 500;
    color: #b0e7eb;
}
