body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 600px;
    width: 90%;
    padding: 20px;
}

.profile {
    text-align: center;
    margin-bottom: 30px;
}

.profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.profile h1 {
    color: white;
    margin: 10px 0;
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.profile p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.link-item:hover {
    transform: translateY(-2px);
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.link-item i {
    margin-right: 15px;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.footer {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bible-verse {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.verse-reference {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8em;
    margin-top: 5px;
}

.link-item.linkedin i { color: #0077B5; }
.link-item.github i { color: #333; }
.link-item.steam i { color: #171a21; }
.link-item.instagram i { color: #E4405F; }
.link-item.projects i { color: #28a745; }

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    .profile h1 {
        font-size: 20px;
    }

    .link-item {
        padding: 12px 15px;
    }

    @media (max-width: 480px) {
        .footer {
            margin-top: 30px;
            padding: 15px;
        }

        .bible-verse {
            font-size: 0.85em;
        }

        .verse-reference {
            font-size: 0.75em;
        }
    }
}