
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f0f0f5;
    color: #1a1a1a;
    line-height: 1.6;
    font-family: 'Rubik', sans-serif;
}
header{
    margin-bottom: 20px;
}
.logo img {
    width: 300px;
    height: auto;
}
.header-contnet a {
  text-decoration: none;
  color: #000;
}
.header-contnet a h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
  text-shadow: 4px 4px #ffd700;
}
.header-contnet p {
  font-size: 16px;
  margin-top: 10px;
}
nav{
    background-color: #ffd700;
    border: 3px solid #000;
    box-shadow: 7px 7px 0px #000;
}
.nav-flex {
  display: flex;
  justify-content: space-between;
  padding: 0 !important;
}
.menu-item ul li a{
    margin-top: 8px;
}
nav ul li {
  list-style: none;
  display: inline-flex;
} 
nav ul li a {
  text-decoration: none;
  padding: 10px 20px;
  color: #000;
  font-weight: 600;
}
nav ul li a:hover {
  text-decoration: underline;
}
.menu-icons ul li a{
    padding: 10px 5px;
}

.menu-icons ul li a i {
  border: 2px solid #000;
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 50%;
  transition: .8s all;
}

.menu-icons ul li a i:hover{
    background-color: #000;
    color: #fff;
}

/* Main Container */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
.container p {
    font-size: 16px;
	padding-top: 6px;
	padding-bottom: 6px;
	line-height: 30px;
}


/* Layout Grid */
.blog-layout {
    display: flex;
    gap: 2rem;
}

/* Main Content Area */
.main-content {
    flex: 1;
}

/* Sidebar */
.sidebar {
    width: 400px;
    flex-shrink: 0;
}

/* Blog Card Styles */
.blog-card {
    background: white;
    border: 3px solid #000;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 7px 7px 0px #000;
}
.blog-card a {
    color: #E2BF03;
	text-decoration: none;
}

.blog-card-content {
    display: flex;
    align-items: center;
    padding: 40px;
}

.blog-card-image {
    width: 240px;
    height: auto;
    flex-shrink: 0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-text {
    flex: 1;
    padding: 1rem;
}
.blog-card-text img {
    padding-bottom: 10px;
	padding-top: 10px;
}
.blog-card-text h2 {
    padding-top: 10px;
}
.blog-card-text li {
    margin-left: 30px;
}

.category-tag {
    background-color: #ffd700;
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
    border: 3px solid #000;
    text-decoration: none;
    transition: .3s all;
}

.category-tag:hover{
    color: #fff;
}

.blog-title {
    font-size: 1.65rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.blog-meta .author {
    font-weight: 500;
    color: #1a1a1a;
}

.blog-meta .separator {
    margin: 0 0.5rem;
}

.blog-excerpt {
    color: #1a1a1a;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Sidebar Card Styles */
.sidebar-card {
    background: white;
    border: 3px solid #000;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 7px 7px 0px #000;
    padding: 20px;
}

.sidebar-card-header {
    background-color: #ffd700;
    padding: 0.25rem 1rem;
    border: 3px solid #000;
    margin-top: 15px;
    border-radius: 20px 20px 0px 0px;
}

.sidebar-card-header a {
    color: #8d412b;
	text-decoration: none;
}

.sidebar-card-header a:hover {
    text-decoration: underline;
}

.sidebar-card-header h3 {
    font-weight: bold;
    color: #000;
    text-align: center;
    font-size: 1.2rem;
}

.sidebar-card-content {
    padding: 1rem 0;
}

/* Search Box */
.search-container {
    display: flex;
    gap: 0.5rem;
}

.search-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
}

.search-button {
    background-color: #ffd700;
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.875rem;
}

.search-button:hover {
    background-color: #e6c200;
}

/* Sidebar Lists */
.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.875rem;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list li a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: .3s all;
}

.sidebar-list li a:hover {
    color: #ffd700;
}

.sidebar-text-light {
    color: #666;
    font-size: 0.875rem;
}

/* Recent Posts */
.recent-post {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0.75rem;
}

.recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.recent-post-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.3;
}

/* You Missed Section */
.missed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
}

.missed-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    border-radius: 15px;
    box-shadow: 7px 7px 0px #000;
}

.missed-item-details {
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    padding: 20px;
}

.missed-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.missed-image-1{
 background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0) 100%, #000), url(../images/blog-1.jpg);
}
.missed-image-2{
 background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0) 100%, #000), url(../images/blog-2.jpg);
}
.missed-image-3{
 background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0) 100%, #000), url(../images/blog-3.jpg);
}
.missed-image-4{
 background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0) 100%, #000), url(../images/blog-4.jpg);
}
.missed-image-5{
 background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0) 100%, #000), url(../images/blog-5.jpg);
}
.missed-image-6{
 background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0) 100%, #000), url(../images/blog-6.jpg);
}
.missed-image-7{
 background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0) 100%, #000), url(../images/blog-7.jpg);
}
.missed-image-8{
 background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0) 100%, #000), url(../images/blog-8.jpg);
}
.missed-image-9{
 background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0) 100%, #000), url(../images/blog-9.jpg);
}
.missed-image-10{
 background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0) 100%, #000), url(../images/blog-10.jpg);
}
.missed-image-11{
 background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0) 100%, #000), url(../images/blog-11.jpg);
}
.missed-image-12{
 background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0) 100%, #000), url(../images/blog-12.jpg);
}
.missed-image-13{
 background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0) 100%, #000), url(../images/blog-13.jpg);
}
.missed-image-14{
 background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0) 100%, #000), url(../images/blog-14.jpg);
}
.missed-image-15{
 background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0) 100%, #000), url(../images/blog-15.jpg);
}
.missed-image-16{
 background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0) 100%, #000), url(../images/blog-16.jpg);
}

.missed-image img {
    width: 100%;
    height: 100%;

}

.missed-tag {
    background-color: #ffd700;
    color: #000;
    padding: 0.125rem 0.5rem;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
    border: 3px solid #000;
    box-shadow: 1px 1px 0px #000;
    text-decoration: none;
    transition: .3s all;
}

.missed-tag:hover{
    color: #fff;
}

.missed-title a {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    margin-top: .75rem;
    text-decoration: none;
    display: block;
    transition: .3s all;
}
.missed-title a:hover{
    color: #ffd700;
} 
/* Modern Footer Styles */
.modern-footer {
    background-color: #000;
    color: white;
    padding: 1rem 0;
    margin-top: 4rem;
}
.modern-footer a {
    color: #FFFFFF;
	text-decoration: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    padding: 0;
    line-height: 1.2;
}

.footer-brand p {
    color: #fff;
    margin: 0;
    padding: 0;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
    font-size: 18px;
}

.social-icon.facebook {
    background-color: #3b82f6;
}

.social-icon.facebook:hover {
    background-color: #2563eb;
}

.social-icon.twitter {
    background-color: #0ea5e9;
}

.social-icon.twitter:hover {
    background-color: #0284c7;
}

.social-icon.instagram {
    background: linear-gradient(135deg, #9333ea, #ec4899);
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, #7c3aed, #db2777);
}

.social-icon.youtube {
    background-color: #dc2626;
}

.social-icon.youtube:hover {
    background-color: #b91c1c;
}

.social-icon.telegram {
    background-color: #3b82f6;
}

.social-icon.telegram:hover {
    background-color: #2563eb;
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
}

.footer-copyright p {
    color: #bbb;
    font-size: 17px;
    margin: 0;
    padding: 0;
}
.d-version{
    display: block;
}
.m-version{
    display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .missed-grid{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .d-version{
        display: none;
    }
  .m-version{
        display: block;
    }
	.missed-grid{
        grid-template-columns: 1fr;
    }
    .blog-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .blog-card-content {
        flex-direction: column;
    }

    .blog-card-image {
        width: 100%;
        height: 200px;
    }
    .header-contnet a h1{
        font-size: 50px;
        font-weight: 600;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}
@media (max-width: 500px) {
    .blog-card-content{
        padding: 0px;
    }
}

