html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    overscroll-behavior-y: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-tap-highlight-color: transparent;
    font-size: 16px;
    overscroll-behavior-y: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

:root {
    --honey-yellow: #FDB813;
    --dark-honey: #D4A017;
    --honey-dark: #8B6914;
    --green-light: #7FBA00;
    --green-dark: #5A8600;
    --leaf-green: #90C952;
    --black: #1a1a1a;
    --dark-bg: #0d0d0d;
    --white: #fff;
    --honeycomb: #FFC837;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(ellipse at top, #1a1510 0%, #0d0d0d 50%, #000000 100%);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(253, 184, 19, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(212, 160, 23, 0.015) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(253, 184, 19, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.honeycomb-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.lightrope {
    display: flex;
    justify-content: space-evenly;
    position: fixed;
    z-index: 100;
    margin: 0;
    padding: 0 20px;
    pointer-events: none;
    width: 100%;
    top: 0;
    left: 0;
    box-sizing: border-box;
}

.lightrope::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    height: 2px;
    background: #2a2a2a;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.lightrope li {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 32px;
    border-radius: 50%;
    margin: 20px 0 0;
    list-style: none;
}

.lightrope li::before {
    content: '';
    position: absolute;
    background: #222;
    width: 10px;
    height: 12px;
    border-radius: 3px;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.lightrope li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 32px;
    border-radius: 50%;
    background: inherit;
    box-shadow: inherit;
}

.lightrope li:nth-child(1) {
    background: #ff0000;
    box-shadow: 0px 5px 30px 4px rgba(255, 0, 0, 0.8);
    animation: flash-1 2s infinite;
}

.lightrope li:nth-child(2) {
    background: #00ff00;
    box-shadow: 0px 5px 30px 4px rgba(0, 255, 0, 0.8);
    animation: flash-2 2s infinite;
}

.lightrope li:nth-child(3) {
    background: #0099ff;
    box-shadow: 0px 5px 30px 4px rgba(0, 153, 255, 0.8);
    animation: flash-3 2s infinite;
}

.lightrope li:nth-child(4) {
    background: #ffdd00;
    box-shadow: 0px 5px 30px 4px rgba(255, 221, 0, 0.8);
    animation: flash-4 2s infinite;
}

.lightrope li:nth-child(5) {
    background: #ff00ff;
    box-shadow: 0px 5px 30px 4px rgba(255, 0, 255, 0.8);
    animation: flash-1 2s infinite;
}

.lightrope li:nth-child(6) {
    background: #ff6600;
    box-shadow: 0px 5px 30px 4px rgba(255, 102, 0, 0.8);
    animation: flash-2 2s infinite;
}

.lightrope li:nth-child(7) {
    background: #00ffff;
    box-shadow: 0px 5px 30px 4px rgba(0, 255, 255, 0.8);
    animation: flash-3 2s infinite;
}

.lightrope li:nth-child(8) {
    background: #ff0099;
    box-shadow: 0px 5px 30px 4px rgba(255, 0, 153, 0.8);
    animation: flash-4 2s infinite;
}

.lightrope li:nth-child(9) {
    background: #99ff00;
    box-shadow: 0px 5px 30px 4px rgba(153, 255, 0, 0.8);
    animation: flash-1 2s infinite;
}

.lightrope li:nth-child(10) {
    background: #ff3300;
    box-shadow: 0px 5px 30px 4px rgba(255, 51, 0, 0.8);
    animation: flash-2 2s infinite;
}

.lightrope li:nth-child(11) {
    background: #3366ff;
    box-shadow: 0px 5px 30px 4px rgba(51, 102, 255, 0.8);
    animation: flash-3 2s infinite;
}

.lightrope li:nth-child(12) {
    background: #ffff00;
    box-shadow: 0px 5px 30px 4px rgba(255, 255, 0, 0.8);
    animation: flash-4 2s infinite;
}

.lightrope li:nth-child(13) {
    background: #ff0066;
    box-shadow: 0px 5px 30px 4px rgba(255, 0, 102, 0.8);
    animation: flash-1 2s infinite;
}

.lightrope li:nth-child(14) {
    background: #00ff99;
    box-shadow: 0px 5px 30px 4px rgba(0, 255, 153, 0.8);
    animation: flash-2 2s infinite;
}

.lightrope li:nth-child(15) {
    background: #ff6699;
    box-shadow: 0px 5px 30px 4px rgba(255, 102, 153, 0.8);
    animation: flash-3 2s infinite;
}

.lightrope li:nth-child(16) {
    background: #66ff00;
    box-shadow: 0px 5px 30px 4px rgba(102, 255, 0, 0.8);
    animation: flash-4 2s infinite;
}

.lightrope li:nth-child(17) {
    background: #0066ff;
    box-shadow: 0px 5px 30px 4px rgba(0, 102, 255, 0.8);
    animation: flash-1 2s infinite;
}

.lightrope li:nth-child(18) {
    background: #ff9900;
    box-shadow: 0px 5px 30px 4px rgba(255, 153, 0, 0.8);
    animation: flash-2 2s infinite;
}

.lightrope li:nth-child(19) {
    background: #9900ff;
    box-shadow: 0px 5px 30px 4px rgba(153, 0, 255, 0.8);
    animation: flash-3 2s infinite;
}

.lightrope li:nth-child(20) {
    background: #00ff66;
    box-shadow: 0px 5px 30px 4px rgba(0, 255, 102, 0.8);
    animation: flash-4 2s infinite;
}

@keyframes flash-1 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes flash-2 {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes flash-3 {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.4; }
}

@keyframes flash-4 {
    0%, 50%, 100% { opacity: 0.4; }
    25%, 75% { opacity: 1; }
}

.snowflake {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0;
    animation: snowfall linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.snowflake::before {
    content: '❄';
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.6));
}

.honeycomb-bg .snowflake:nth-child(1) { left: 5%; animation-duration: 10s; animation-delay: 0s; }
.honeycomb-bg .snowflake:nth-child(2) { left: 15%; animation-duration: 12s; animation-delay: 2s; }
.honeycomb-bg .snowflake:nth-child(3) { left: 25%; animation-duration: 8s; animation-delay: 4s; }
.honeycomb-bg .snowflake:nth-child(4) { left: 35%; animation-duration: 14s; animation-delay: 1s; }
.honeycomb-bg .snowflake:nth-child(5) { left: 45%; animation-duration: 11s; animation-delay: 3s; }
.honeycomb-bg .snowflake:nth-child(6) { left: 55%; animation-duration: 9s; animation-delay: 5s; }
.honeycomb-bg .snowflake:nth-child(7) { left: 65%; animation-duration: 13s; animation-delay: 0.5s; }
.honeycomb-bg .snowflake:nth-child(8) { left: 75%; animation-duration: 10s; animation-delay: 2.5s; }
.honeycomb-bg .snowflake:nth-child(9) { left: 85%; animation-duration: 12s; animation-delay: 4.5s; }
.honeycomb-bg .snowflake:nth-child(10) { left: 95%; animation-duration: 11s; animation-delay: 1.5s; }
.honeycomb-bg .snowflake:nth-child(11) { left: 10%; animation-duration: 13s; animation-delay: 6s; }
.honeycomb-bg .snowflake:nth-child(12) { left: 20%; animation-duration: 9s; animation-delay: 7s; }
.honeycomb-bg .snowflake:nth-child(13) { left: 30%; animation-duration: 11s; animation-delay: 1.5s; }
.honeycomb-bg .snowflake:nth-child(14) { left: 40%; animation-duration: 14s; animation-delay: 3.5s; }
.honeycomb-bg .snowflake:nth-child(15) { left: 50%; animation-duration: 10s; animation-delay: 5.5s; }
.honeycomb-bg .snowflake:nth-child(16) { left: 60%; animation-duration: 12s; animation-delay: 0.8s; }
.honeycomb-bg .snowflake:nth-child(17) { left: 70%; animation-duration: 8s; animation-delay: 2.8s; }
.honeycomb-bg .snowflake:nth-child(18) { left: 80%; animation-duration: 13s; animation-delay: 4.8s; }
.honeycomb-bg .snowflake:nth-child(19) { left: 90%; animation-duration: 11s; animation-delay: 6.5s; }
.honeycomb-bg .snowflake:nth-child(20) { left: 8%; animation-duration: 9s; animation-delay: 8s; }
.honeycomb-bg .snowflake:nth-child(21) { left: 18%; animation-duration: 12s; animation-delay: 2.2s; }
.honeycomb-bg .snowflake:nth-child(22) { left: 28%; animation-duration: 10s; animation-delay: 4.2s; }
.honeycomb-bg .snowflake:nth-child(23) { left: 38%; animation-duration: 14s; animation-delay: 6.2s; }
.honeycomb-bg .snowflake:nth-child(24) { left: 48%; animation-duration: 11s; animation-delay: 8.2s; }
.honeycomb-bg .snowflake:nth-child(25) { left: 58%; animation-duration: 13s; animation-delay: 1.2s; }

@keyframes snowfall {
    0% {
        top: -50px;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        top: 100vh;
        opacity: 0;
        transform: translateX(100px) rotate(360deg);
    }
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.main-layout {
    display: grid;
    grid-template-columns: 320px 1fr 320px;
    gap: 2rem;
    align-items: start;
}

.content-column {
    min-height: 100vh;
}

.sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 2rem;
}

.hero {
    text-align: center;
    padding: 3rem 2rem 2rem;
    position: relative;
}

.bee-icon {
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(253, 184, 19, 0.5));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(-5deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

h1 {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--honey-yellow), var(--honeycomb), var(--leaf-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
    position: relative;
    display: inline-block;
}

.glitch {
    position: relative;
    animation: glitch 5s infinite;
}

@keyframes glitch {
    0%, 90%, 100% { text-shadow: none; }
    92% { text-shadow: 3px 0 0 rgba(253, 184, 19, 0.7), -3px 0 0 rgba(127, 186, 0, 0.7); }
    94% { text-shadow: -3px 0 0 rgba(253, 184, 19, 0.7), 3px 0 0 rgba(127, 186, 0, 0.7); }
}

.subtitle {
    font-size: 1.3rem;
    color: var(--honeycomb);
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.about {
    margin: 2rem 0 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(253, 184, 19, 0.08), rgba(212, 160, 23, 0.05));
    border-left: 4px solid var(--honey-yellow);
    border-radius: 10px;
}

.about h2 {
    color: var(--honey-yellow);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about p {
    line-height: 1.8;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.skills {
    margin: 3rem 0;
}

.skills h2 {
    color: var(--honey-yellow);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.skill-cell {
    background: linear-gradient(135deg, rgba(253, 184, 19, 0.1), rgba(212, 160, 23, 0.08));
    padding: 1.5rem 1rem;
    border-radius: 10px;
    border: 2px solid rgba(253, 184, 19, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.skill-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(253, 184, 19, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-cell:hover::before {
    opacity: 1;
}

.skill-cell:hover {
    transform: translateY(-5px);
    border-color: var(--honey-yellow);
    box-shadow: 0 10px 30px rgba(253, 184, 19, 0.3), inset 0 0 20px rgba(253, 184, 19, 0.1);
    background: linear-gradient(135deg, rgba(253, 184, 19, 0.18), rgba(212, 160, 23, 0.12));
}

.skill-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.skill-cell:hover .skill-logo {
    transform: scale(1.1);
}

.skill-cell span:last-child {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--honeycomb);
    text-align: center;
}

.projects {
    margin: 3rem 0;
}

.projects h2 {
    color: var(--honey-yellow);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(253, 184, 19, 0.08), rgba(212, 160, 23, 0.06));
    border: 2px solid rgba(253, 184, 19, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 44px;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(253, 184, 19, 0.1), transparent);
    transition: left 0.5s ease;
}

.project-card:hover::before {
    left: 100%;
}

.project-card:hover {
    transform: translateX(10px);
    border-color: var(--honey-yellow);
    box-shadow: 0 10px 40px rgba(253, 184, 19, 0.3);
    background: linear-gradient(135deg, rgba(253, 184, 19, 0.15), rgba(212, 160, 23, 0.1));
}

.project-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.project-info {
    flex: 1;
}

.project-info h3 {
    color: var(--honeycomb);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.project-tech {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--leaf-green);
    font-weight: 600;
}

.profile-card {
    background: linear-gradient(135deg, rgba(253, 184, 19, 0.12), rgba(212, 160, 23, 0.08));
    border: 2px solid rgba(253, 184, 19, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(253, 184, 19, 0.05);
}

.profile-image-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.hexagon-frame {
    width: 180px;
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hexagon-frame::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--honey-yellow), var(--leaf-green));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.profile-image {
    width: 160px;
    height: 160px;
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    position: relative;
    z-index: 1;
    background: #333;
}

.profile-name {
    margin-bottom: 2rem;
}

.profile-name h3 {
    font-size: 1.6rem;
    color: var(--honey-yellow);
    margin-bottom: 0.5rem;
}

.profile-name p {
    color: var(--leaf-green);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, rgba(253, 184, 19, 0.2), rgba(212, 160, 23, 0.15));
    border: 2px solid rgba(253, 184, 19, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 44px;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(253, 184, 19, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-btn:hover::before {
    width: 300px;
    height: 300px;
}

.social-btn svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}

.social-btn span {
    position: relative;
    z-index: 1;
}

.social-btn:hover {
    transform: translateX(5px);
    border-color: var(--honey-yellow);
    background: linear-gradient(135deg, rgba(253, 184, 19, 0.35), rgba(212, 160, 23, 0.25));
    box-shadow: 0 5px 20px rgba(253, 184, 19, 0.4);
}

.social-btn.github:hover {
    border-color: #fff;
}

.social-btn.telegram:hover {
    border-color: #0088cc;
}

.social-btn.linkedin:hover {
    border-color: #0077b5;
}

.social-btn.email:hover {
    border-color: var(--leaf-green);
}

.status-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, rgba(127, 186, 0, 0.2), rgba(90, 134, 0, 0.1));
    border: 2px solid var(--leaf-green);
    border-radius: 25px;
    color: var(--leaf-green);
    font-weight: 600;
    font-size: 0.85rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--leaf-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.blog-preview {
    background: linear-gradient(135deg, rgba(253, 184, 19, 0.12), rgba(212, 160, 23, 0.08));
    border: 2px solid rgba(253, 184, 19, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(253, 184, 19, 0.05);
}

.blog-preview h3 {
    color: var(--honey-yellow);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.blog-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.blog-card {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(253, 184, 19, 0.15), rgba(212, 160, 23, 0.1));
    border: 2px solid rgba(253, 184, 19, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(253, 184, 19, 0.15), transparent);
    transition: left 0.5s ease;
}

.blog-card:hover::before {
    left: 100%;
}

.blog-card:hover {
    transform: translateY(-3px);
    border-color: var(--honey-yellow);
    box-shadow: 0 8px 25px rgba(253, 184, 19, 0.3);
    background: linear-gradient(135deg, rgba(253, 184, 19, 0.25), rgba(212, 160, 23, 0.15));
}

.blog-date {
    font-size: 0.7rem;
    color: var(--leaf-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h4 {
    color: var(--honeycomb);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.view-all-btn {
    display: block;
    text-align: center;
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(127, 186, 0, 0.2), rgba(90, 134, 0, 0.15));
    border: 2px solid var(--leaf-green);
    border-radius: 10px;
    color: var(--leaf-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(127, 186, 0, 0.3), rgba(90, 134, 0, 0.2));
    box-shadow: 0 5px 15px rgba(127, 186, 0, 0.3);
}

footer {
    text-align: center;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    border-top: 2px solid rgba(253, 184, 19, 0.2);
    color: var(--honeycomb);
}

.floating-bees {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bee {
    position: absolute;
    font-size: 2rem;
    opacity: 0.2;
    animation: fly 20s linear infinite;
}

.bee:nth-child(1) {
    top: 20%;
    left: -10%;
    animation-duration: 25s;
    font-size: 2rem;
}

.bee:nth-child(2) {
    top: 60%;
    left: -10%;
    animation-duration: 30s;
    animation-delay: 5s;
    font-size: 2.5rem;
}

.bee:nth-child(3) {
    top: 40%;
    left: -10%;
    animation-duration: 35s;
    animation-delay: 10s;
    font-size: 1.8rem;
}

.bee:nth-child(4) {
    top: 70%;
    left: -10%;
    animation-duration: 28s;
    animation-delay: 3s;
    font-size: 2.2rem;
}

.bee:nth-child(5) {
    top: 30%;
    left: -10%;
    animation-duration: 32s;
    animation-delay: 7s;
    font-size: 2rem;
}

.bee:nth-child(6) {
    top: 50%;
    left: -10%;
    animation-duration: 27s;
    animation-delay: 12s;
    font-size: 2.3rem;
}

.bee:nth-child(7) {
    top: 80%;
    left: -10%;
    animation-duration: 33s;
    animation-delay: 2s;
    font-size: 1.9rem;
}

.bee:nth-child(8) {
    top: 15%;
    left: -10%;
    animation-duration: 29s;
    animation-delay: 8s;
    font-size: 2.4rem;
}

@keyframes fly {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg) scaleX(-1);
    }
    25% {
        transform: translateX(50vw) translateY(-20px) rotate(-10deg) scaleX(-1);
    }
    50% {
        transform: translateX(100vw) translateY(20px) rotate(10deg) scaleX(-1);
    }
    75% {
        transform: translateX(150vw) translateY(-10px) rotate(-5deg) scaleX(-1);
    }
    100% {
        transform: translateX(200vw) translateY(0) rotate(0deg) scaleX(-1);
    }
}

@media (max-width: 1400px) {
    .main-layout {
        grid-template-columns: 300px 1fr 300px;
        gap: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .main-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar-sticky {
        position: static;
    }

    .sidebar-left {
        order: -1;
    }

    .sidebar-right {
        order: 1;
    }

    .content-column {
        order: 0;
    }

    .profile-card,
    .blog-preview {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    }

    .project-card {
        flex-direction: column;
        text-align: center;
    }

    .hexagon-frame {
        width: 150px;
        height: 150px;
    }

    .profile-image {
        width: 130px;
        height: 130px;
    }
}


/* ------------------------------------------------- */
.blog-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--honey-yellow);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.back-link:hover {
    color: var(--honeycomb);
    transform: translateX(-5px);
}

.blog-header {
    text-align: center;
    padding: 2rem 0 3rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid rgba(253, 184, 19, 0.2);
}

.blog-header .bee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-article-card {
    background: linear-gradient(135deg, rgba(253, 184, 19, 0.12), rgba(212, 160, 23, 0.08));
    border: 2px solid rgba(253, 184, 19, 0.3);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(253, 184, 19, 0.1), transparent);
    transition: left 0.5s ease;
}

.blog-article-card:hover::before {
    left: 100%;
}

.blog-article-card:hover {
    transform: translateY(-8px);
    border-color: var(--honey-yellow);
    box-shadow: 0 15px 40px rgba(253, 184, 19, 0.3);
    background: linear-gradient(135deg, rgba(253, 184, 19, 0.18), rgba(212, 160, 23, 0.12));
}

.article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.article-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, rgba(127, 186, 0, 0.3), rgba(90, 134, 0, 0.2));
    border: 1px solid var(--leaf-green);
    border-radius: 20px;
    color: var(--leaf-green);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.blog-article-card h2 {
    color: var(--honeycomb);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.article-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: linear-gradient(135deg, rgba(253, 184, 19, 0.2), rgba(212, 160, 23, 0.15));
    border: 2px solid rgba(253, 184, 19, 0.3);
    border-radius: 10px;
    color: var(--honey-yellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.read-more:hover {
    background: linear-gradient(135deg, rgba(253, 184, 19, 0.35), rgba(212, 160, 23, 0.25));
    border-color: var(--honey-yellow);
    box-shadow: 0 5px 20px rgba(253, 184, 19, 0.4);
    transform: translateX(5px);
}

.blog-footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 2px solid rgba(253, 184, 19, 0.2);
}

.blog-footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.blog-footer a {
    color: var(--honey-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-footer a:hover {
    color: var(--honeycomb);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-header h1 {
        font-size: 2.5rem;
    }

    .blog-subtitle {
        font-size: 1rem;
    }

    .blog-article-card {
        padding: 1.5rem;
    }

    .blog-article-card h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .article-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
