/* ========================================
   Game News Template - Main Stylesheet
   Modern, Responsive Gaming News Website
   ======================================== */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #1a1a2e;
    --accent-color: #00d9ff;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --bg-primary: #0f0f1e;
    --bg-secondary: #16162a;
    --bg-card: #1e1e3a;
    --hover-color: #ff8555;
    --border-color: #2a2a4a;
    --success-color: #00ff88;
    --container-width: 1200px;
}

/* ===== Performance Optimizations ===== */
/* GPU Acceleration for animations */
.article-item,
.game-card,
.popular-item,
.tag {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Contain layout shifts */
img {
    content-visibility: auto;
}

/* Optimize font rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header & Navigation ===== */
.game-header {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 3px solid var(--primary-color);
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.main-nav a:hover::before {
    width: 80%;
}

.main-nav a:hover {
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.main-nav li.active a,
.main-nav a.active {
    background-color: var(--primary-color);
    color: white;
}

.main-nav li.active a::before {
    display: none;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-trigger {
    background-color: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.search-trigger:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-modal.active {
    display: flex;
    opacity: 1;
}

.search-modal-content {
    width: 90%;
    max-width: 800px;
    position: relative;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.search-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.search-form-modal {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-form-modal input[type="text"] {
    background-color: var(--bg-card);
    border: 3px solid var(--border-color);
    color: var(--text-primary);
    padding: 20px 25px;
    border-radius: 12px;
    outline: none;
    font-size: 20px;
    transition: all 0.3s ease;
    width: 100%;
}

.search-form-modal input[type="text"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
}

.search-form-modal input[type="text"]::placeholder {
    color: var(--text-secondary);
}

.search-form-modal button {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.search-form-modal button:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    padding: 8px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    border-color: var(--primary-color);
    background-color: rgba(255, 107, 0, 0.1);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background-color: var(--primary-color);
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(15, 15, 30, 0.9));
    padding: 60px 0;
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.featured-post {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-5px);
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px;
}

.featured-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.featured-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.featured-excerpt {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.featured-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.trending-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trending-item {
    background-color: var(--bg-card);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.trending-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.trending-image {
    width: 100px;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
}

.trending-content {
    flex: 1;
}

.trending-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.trending-date {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ===== Section Titles ===== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--primary-color);
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.view-all {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.view-all:hover {
    transform: translateX(5px);
}

/* ===== Category Tabs ===== */
.category-tabs {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    overflow-x: auto;
    padding-bottom: 10px;
}

.category-tab {
    background-color: var(--bg-card);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* ===== Game Cards Grid ===== */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.game-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .card-image {
    transform: scale(1.1);
}

.card-image-wrapper {
    overflow: hidden;
    position: relative;
}

.card-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-excerpt {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-secondary);
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.card-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== Article List ===== */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.article-item {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.article-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.article-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.article-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.article-category {
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.article-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== Sidebar ===== */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin: 30px 0;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 25px;
    border: 2px solid var(--border-color);
}

.widget-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    text-transform: uppercase;
    color: var(--primary-color);
}

.popular-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-item {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.popular-item:hover {
    transform: translateX(5px);
}

.popular-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-number {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    width: 30px;
    flex-shrink: 0;
}

/* Rank Colors */
.popular-number.rank-1 {
    color: #ff3b3b;
}

.popular-number.rank-2 {
    color: #ff8c00;
}

.popular-number.rank-3 {
    color: #ffd700;
}

.popular-content {
    flex: 1;
}

.popular-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.popular-views {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Tags */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* ===== Article Navigation & Related ===== */
.article-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.article-nav-item {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.article-nav-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.article-nav-item.prev {
    border-left: 3px solid var(--primary-color);
}

.article-nav-item.next {
    border-right: 3px solid var(--accent-color);
    text-align: right;
}

.article-nav-item a {
    font-size: 16px;
    font-weight: 600;
    display: block;
    line-height: 1.4;
    color: var(--text-primary);
}

.article-nav-item a:hover {
    color: var(--primary-color);
}

.related-articles {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.related-articles h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
}

/* Mobile responsive for article nav */
@media (max-width: 768px) {
    .article-nav {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .article-nav-item.next {
        text-align: left;
        border-right: none;
        border-left: 3px solid var(--accent-color);
    }
}

/* ===== Footer ===== */
.game-footer {
    background-color: var(--bg-secondary);
    padding: 50px 0 20px;
    margin-top: 80px;
    border-top: 3px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.social-icon:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}

/* ===== Article Detail ===== */
.article-detail {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 40px;
    color: var(--text-primary);
}

.article-detail-title {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-detail-meta {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 14px;
}

.article-detail-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
}

.article-detail-content {
    line-height: 1.8;
    font-size: 17px;
    color: var(--text-primary);
}

.article-detail-content p {
    margin-bottom: 15px;
}

.article-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px 0;
}

.page-link {
    background-color: var(--bg-card);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .content-wrapper > main {
        order: 1 !important;
    }
    
    .sidebar {
        order: 2 !important;
        width: 100% !important;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .article-image {
        width: 250px;
        height: 180px;
    }
    
    .header-content {
        grid-template-columns: auto 1fr auto;
        gap: 20px;
    }
    
    .logo {
        font-size: 22px;
        letter-spacing: 2px;
    }
    
    .main-nav ul {
        gap: 5px;
    }
    
    .main-nav a {
        padding: 8px 12px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .header-content {
        grid-template-columns: 1fr auto;
        gap: 15px;
    }
    
    .logo {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-secondary);
        border-top: 2px solid var(--primary-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .main-nav.mobile-open {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 10px 0;
    }
    
    .main-nav a {
        text-align: center;
        padding: 15px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .search-modal-content {
        width: 95%;
        padding: 0 15px;
    }
    
    .search-form-modal input[type="text"] {
        font-size: 16px;
        padding: 15px 20px;
    }
    
    .search-form-modal button {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .game-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .article-item {
        flex-direction: column;
    }
    
    .article-image {
        width: 100%;
        height: 200px;
    }
    
    .featured-title {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .search-box input[type="text"] {
        width: 150px;
    }
    
    .search-box input[type="text"]:focus {
        width: 180px;
    }
    
    /* Article detail mobile styles */
    .article-detail {
        padding: 25px 20px;
    }
    
    .article-detail-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .article-detail-meta {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .article-detail-content {
        font-size: 16px;
        line-height: 1.7;
    }
    
    /* Sidebar mobile styles */
    .sidebar {
        gap: 20px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .widget-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .game-grid {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        gap: 10px;
    }
    
    .category-tab {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Article detail extra small screens */
    .article-detail {
        padding: 20px 15px;
    }
    
    .article-detail-title {
        font-size: 20px;
    }
    
    .article-detail-content {
        font-size: 15px;
    }
    
    /* Sidebar extra small screens */
    .sidebar-widget {
        padding: 15px;
    }
    
    .widget-title {
        font-size: 16px;
    }
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}
