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

::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}
.blog-container {
    margin-top: 120px;
    padding: 0 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

.blog-title {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #8b45c5, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.blog-subtitle {
    font-size: 18px;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.carousel-container {
    position: relative;
    margin-bottom: 80px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 69, 197, 0.2);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-post {
    min-width: 100%;
    padding: 60px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.post-content {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInContent 0.8s ease-out forwards;
}

.post-image {
    flex: 0 0 300px;
    height: 300px;
    background: linear-gradient(45deg, #8b45c5, #4a90e2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.8s ease-out 0.3s forwards;
}

.post-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

.post-category {
    display: inline-block;
    background: rgba(139, 69, 197, 0.2);
    color: #8b45c5;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(139, 69, 197, 0.3);
}

.post-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.post-date {
    color: #8b45c5;
    font-size: 14px;
    margin-bottom: 20px;
}

.post-excerpt {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 16px;
}

.read-more-btn {
    background: transparent;
    border: 2px solid #8b45c5;
    color: #8b45c5;
    padding: 15px 30px;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}

.read-more-btn:hover {
    background: #8b45c5;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 197, 0.3);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #8b45c5;
    background: transparent;
    color: #8b45c5;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.carousel-btn:hover {
    background: #8b45c5;
    color: #ffffff;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    background: transparent;
    color: #8b45c5;
    transform: scale(1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 69, 197, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot.active {
    background: #8b45c5;
    transform: scale(1.2);
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(139, 69, 197, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dot.active::before {
    opacity: 1;
}

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

.floating-shape {
    position: absolute;
    background: rgba(139, 69, 197, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-shape:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(30px) rotate(240deg);
    }
}

@media (max-width: 768px) {
    .blog-container {
        padding: 0 20px;
        margin-top: 100px;
    }

    .blog-post {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .post-image {
        flex: 0 0 250px;
        height: 250px;
        width: 100%;
        max-width: 250px;
    }

    .blog-title {
        font-size: 36px;
    }

    .post-title {
        font-size: 24px;
    }

    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }
}