        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html, body {
            height: 100%;
            width: 100%;
            overflow-x: hidden;
        }

        body {
            background: linear-gradient(135deg, #2d2d44 0%, #4a3a5a 100%);
            color: #e0e0e0;
            line-height: 1.6;
            min-height: 100vh;
        }

        .container {
            display: flex;
            width: 100%;
            height: 100vh;
            background-color: rgba(40, 35, 55, 0.8);
            overflow: hidden;
        }

        /* Sidebar Styles */
        .sidebar {
            width: 250px;
            background: linear-gradient(135deg, #3a2a4a 0%, #2d2340 100%);
            padding: 30px 20px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border-right: 1px solid #5a4a6a;
        }

        .sidebar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.1),
                transparent
            );
            transition: left 0.7s;
        }

        .sidebar:hover::before {
            left: 100%;
        }

        .sidebar h2 {
            color: #c9a0dc;
            margin-bottom: 25px;
            text-align: center;
            font-size: 1.8rem;
            text-shadow: 0 0 10px rgba(201, 160, 220, 0.5);
            border-bottom: 2px solid #5a4a6a;
            padding-bottom: 10px;
        }

        .sidebar ul {
            list-style: none;
        }

        .sidebar li {
            margin-bottom: 15px;
            padding: 12px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
            background-color: rgba(50, 40, 65, 0.7);
        }

        .sidebar li:hover {
            background-color: rgba(90, 70, 110, 0.7);
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .sidebar a {
            color: #d8c3e8;
            text-decoration: none;
            display: flex;
            align-items: center;
            font-size: 1.1rem;
        }

        .sidebar a::before {
            content: "✦";
            margin-right: 10px;
            color: #c9a0dc;
        }

        /* Main Content Styles */
        .main-content {
            flex: 1;
            padding: 30px 40px;
            overflow-y: auto;
            height: 100vh;
        }

        .main-content h1 {
            color: #d8c3e8;
            margin-bottom: 30px;
            font-size: 2.5rem;
            text-align: center;
            text-shadow: 0 0 10px rgba(201, 160, 220, 0.5);
        }

        .blog-entry {
            background: rgba(50, 40, 65, 0.7);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            border-left: 4px solid #c9a0dc;
        }

        .blog-entry:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .blog-entry h2 {
            color: #c9a0dc;
            margin-bottom: 15px;
            font-size: 1.6rem;
        }

        .blog-entry .date {
            color: #a090b0;
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: block;
        }

        .blog-entry p {
            margin-bottom: 15px;
        }

        .read-more {
            display: inline-block;
            background: linear-gradient(135deg, #5a4a6a 0%, #7a6a8a 100%);
            color: #e0e0e0;
            padding: 8px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            background: linear-gradient(135deg, #7a6a8a 0%, #9a8aaa 100%);
            transform: translateY(-2px);
        }

        footer {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            color: #a090b0;
            border-top: 1px solid #5a4a6a;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                height: auto;
            }
            
            .sidebar {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid #5a4a6a;
                height: auto;
            }
            
            .main-content {
                height: auto;
                overflow-y: visible;
            }
            
            .sidebar li:hover {
                transform: translateY(-3px);
            }
        }