/* Global Styles */
:root {
    --primary: #6c5ce7;
    --secondary: #a8a5e6;
    --dark: #2d2d44;
    --light: #f8f9fa;
    --accent: #ff6f61;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: radial-gradient(circle, #1a1a2e, #0f0c29);
    color: var(--light);
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

img,
a,
div,
span {
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1,
h2,
h3 {
    color: var(--accent);
}

/* Blurry Effects */
.blur-card:hover {
    border: 3px solid var(--primary);
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.5);
    transform: scale(1.03);
}

/* Buttons */
.btn-hire,
.btn-send {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-hire {
    margin-right: 5px;
}

.btn-hire:hover,
.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

/* Hero Section */
.hero {
    padding-top: 100px;
    position: relative;
    z-index: 1;
}

.portrait-frame {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 5px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.5);
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skill-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.skill-icons svg {
    font-size: 2rem;
    color: var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .portrait-frame {
        width: 200px;
        height: 200px;
    }
}