* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

:root {
    --divine-gold: #ffd700;
    --divine-orange: #ffa500;
    --divine-text: linear-gradient(45deg, #ffd700, #ffa500);
    --divine-blue: #4a90e2;
    --divine-dark-blue: #2c3e50;
    --divine-white: #ffffff;
    --cloud-color: rgba(255, 255, 255, 0.9);
}

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #87ceeb, #e0f7ff);
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    position: relative;
    transition: background 0.3s ease;
    cursor: url('../assets/cursor.png'), auto;
}

.social-links {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 2rem;
    z-index: 2;
}

.social-icon {
    color: var(--divine-gold);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: rgba(255, 255, 255, 0.85);
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.left-nav {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: row;
    gap: 35px;
}

.nav-icon {
    color: var(--divine-gold);
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-icon:hover {
    color: var(--divine-white);
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

main {
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
}

.blog-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.blog-post {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.25);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.post-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.post-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    border-right: 2px solid rgba(255, 215, 0, 0.3);
    margin-right: 30px;
    min-width: 100px;
}

.post-date .day {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--divine-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    line-height: 1;
    margin-bottom: 5px;
}

.post-date .month {
    font-size: 1.2em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
}

.post-date .year {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.post-title {
    font-size: 2.2em;
    font-weight: 800;
    background: var(--divine-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.post-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
}

.post-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.1em;
    margin-bottom: 25px;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    padding: 0 10px;
}

.post-images {
    margin: 25px -30px -30px;
    position: relative;
    overflow: hidden;
}

.post-images img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.post-images:hover img {
    transform: scale(1.03);
}

.post-images::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
    pointer-events: none;
}

@media (max-width: 768px) {
    .blog-post {
        margin: 20px 10px;
    }

    .post-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .post-date {
        border-right: none;
        border-bottom: 2px solid rgba(255, 215, 0, 0.3);
        margin-right: 0;
        margin-bottom: 15px;
        padding: 10px 0;
    }

    .post-title {
        font-size: 1.8em;
    }

    .post-description {
        font-size: 1em;
        padding: 0;
    }

    .post-content {
        padding: 20px;
    }

    .post-images {
        margin: 20px -20px -20px;
    }

    .left-nav {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 1.5em;
    }

    .post-date .day {
        font-size: 2em;
    }

    .post-content {
        padding: 15px;
    }
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cursor-particles {
    position: fixed;
    pointer-events: none;
    width: 4px;
    height: 4px;
    background: var(--divine-gold);
    border-radius: 50%;
    animation: particle-fade 1s ease-out forwards;
    z-index: 9999;
}

.ascending-particle {
    position: fixed;
    bottom: -10px;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float-up 8s linear forwards;
    z-index: 1;
}

@keyframes particle-fade {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

@keyframes float-up {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
} 