/* ===============================================
   FLATSOME THEME - MAIN STYLESHEET
   =============================================== */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

html.loading-site {
    opacity: 0;
    transition: opacity 0.3s;
}

html.js {
    opacity: 1;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 100%;
    font-weight: 400;
    line-height: 1.7;
    color: #000000;
    background-color: #f3f4f6;
}

#wrapper {
    background-color: #fff;
}

#main {
    background-color: #f9fafb;
}

/* Container & Grid System */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1080px;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row-small {
    margin-right: -7.5px;
    margin-left: -7.5px;
}

.col {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-inner {
    padding: 10px 0;
}

/* Column sizes */
.small-12 { flex: 0 0 100%; max-width: 100%; }
.medium-6 { flex: 0 0 50%; max-width: 50%; }
.large-3 { flex: 0 0 25%; max-width: 25%; }
.large-6 { flex: 0 0 50%; max-width: 50%; }
.large-9 { flex: 0 0 75%; max-width: 75%; }
.large-12 { flex: 0 0 100%; max-width: 100%; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin-top: 0;
    margin-bottom: 0.75em;
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; }
h3 { font-size: 1.5em; }
h4 { font-size: 1.25em; }

p {
    margin-top: 0;
    margin-bottom: 1em;
}

a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #e18aaa;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-style: none;
}

/* Utility Classes */
.relative { position: relative; }
.absolute { position: absolute; }
.fill { position: absolute; top: 0; left: 0; height: 100%; width: 100%; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.flex-left { margin-right: auto; }
.flex-right { margin-left: auto; }
.flex-col { display: flex; flex-direction: column; }
.pull-left { float: left; }
.pull-right { float: right; }
.clearfix::after { content: ""; display: table; clear: both; }

/* Hide/Show utilities */
.hide-for-medium { display: block; }
.show-for-medium { display: none; }

@media (max-width: 849px) {
    .hide-for-medium { display: none; }
    .show-for-medium { display: block; }
}

/* Header */
.header {
    position: relative;
    z-index: 1000;
}

.header-wrapper {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-top {
    background-color: #3c3c67;
    color: #fff;
    font-size: 12px;
    padding: 8px 0;
}

.header-top .nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-top .nav li {
    padding: 0 10px;
}

.header-top .nav li:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.2);
}

.header-top a {
    color: #fff;
    font-size: 11px;
}

.header-top a:hover {
    color: #e18aaa;
}

.header-main {
    height: 65px;
    position: relative;
}

.header-inner {
    height: 100%;
    align-items: center;
    padding: 0 15px;
}

#logo {
    max-width: 131px;
}

#logo img {
    max-height: 65px;
    width: auto;
}

/* Navigation */
.nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav {
    align-items: center;
}

.nav-item {
    margin: 0 15px;
}

.nav-uppercase {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.header-nav a {
    color: #000;
    padding: 10px 0;
    display: inline-block;
}

.header-nav a:hover {
    color: #e18aaa;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000;
    transition: all 0.3s;
}

@media (max-width: 849px) {
    .header-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .header-nav.active {
        display: flex;
    }
    
    .header-nav .nav-item {
        margin: 10px 0;
        width: 100%;
    }
    
    .header-nav a {
        display: block;
        padding: 10px;
    }
}

/* Main Content */
#main {
    min-height: 100vh;
}

/* Section */
.section {
    padding: 50px 0;
    position: relative;
    background-color: #fff;
}

.section:nth-child(even) {
    background-color: #f9fafb;
}

.section-content {
    position: relative;
}

.section-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
    display: inline-block;
}

#row-features {
    margin-top: 30px;
}

#row-categories {
    margin-top: 30px;
}

/* Hero Section */
.section-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.section-hero .section-bg-overlay {
    background-color: rgba(0,0,0,0.1);
}

.hero-title {
    font-size: 3em;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.95);
}

.hero-button {
    margin-top: 30px;
}

/* Button */
.button {
    display: inline-block;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 99px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.button.primary {
    background-color: #fff;
    color: #667eea;
    border-color: #fff;
}

.button.primary:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.button span {
    position: relative;
}

/* Page Wrapper */
.page-wrapper {
    padding: 50px 0;
    background-color: #fff;
}

.page-wrapper.page-right-sidebar {
    background-color: #f9fafb;
}

.row-main {
    align-items: flex-start;
}

.content-area {
    background-color: #fff;
}

.page-inner {
    padding: 20px 0;
}

/* Box Component */
.box {
    position: relative;
    margin-bottom: 30px;
}

.box-text {
    padding: 25px;
}

.box-text-inner {
    position: relative;
}

.box-text h3 {
    color: #000;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.box-text p {
    line-height: 1.7;
    color: #4b5563;
}

.box-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.box-text ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #4b5563;
}

.box-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 16px;
}

.box.has-hover {
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.box.has-hover:hover {
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    transform: translateY(-5px);
    border-color: #667eea;
}

/* Image */
.img {
    position: relative;
    margin: 40px 0;
}

.img-inner {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.img-inner img {
    width: 100%;
    height: auto;
    display: block;
}

.img.has-hover img {
    transition: transform 0.5s ease;
}

.img.has-hover:hover img {
    transform: scale(1.05);
}

/* Text */
.text {
    margin-bottom: 20px;
}

.text p {
    line-height: 1.8;
    margin-bottom: 1.5em;
    color: #4b5563;
    font-size: 1.05em;
}

.text strong {
    color: #667eea;
    font-weight: 600;
}

/* Category Styles */
.col-inner h3 {
    margin-bottom: 12px;
    font-size: 1.25em;
}

.col-inner p {
    color: #4b5563;
    line-height: 1.7;
}

#row-categories .col-inner {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 15px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

#row-categories .col-inner:hover {
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
    transform: translateX(5px);
    border-left-color: #764ba2;
}

/* Accordion */
.accordion {
    margin: 20px 0;
}

.accordion-item {
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.accordion-title {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #000;
    transition: background-color 0.3s;
    text-decoration: none;
}

.accordion-title:hover {
    background-color: #f9fafb;
    color: #667eea;
}

.accordion-title .toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 50%;
    margin-right: 15px;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    font-size: 20px;
    flex-shrink: 0;
}

.accordion-title .toggle::before {
    content: "+";
    display: block;
    line-height: 1;
}

.accordion-item.active .toggle {
    transform: rotate(45deg);
    background-color: #764ba2;
}

.accordion-title span {
    flex: 1;
}

.accordion-inner {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
    background-color: #f9fafb;
}

.accordion-item.active .accordion-inner {
    max-height: 500px;
    padding: 20px;
    border-top: 1px solid #e5e7eb;
}

.accordion-inner p {
    margin: 0;
    line-height: 1.7;
}

/* Sidebar */
.post-sidebar {
    padding-top: 20px;
}

.widget {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.widget-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.textwidget p {
    font-size: 14px;
    line-height: 1.6;
}

/* Social Icons */
.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.social-icons .facebook {
    background-color: #1877f2;
    color: #fff;
}

.social-icons .twitter {
    background-color: #1da1f2;
    color: #fff;
}

.social-icons .discord {
    background-color: #5865f2;
    color: #fff;
}

.social-icons .pinterest {
    background-color: #e60023;
    color: #fff;
}

.social-icons .website {
    background-color: #667eea;
    color: #fff;
}

.social-icons .youtube {
    background-color: #ff0000;
    color: #fff;
}

.social-icons a:hover {
    opacity: 0.85;
    transform: translateX(5px);
}

/* Footer */
.footer-wrapper {
    background-color: #1f2937;
    color: #e5e7eb;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.absolute-footer {
    padding: 20px 0;
}

.copyright-footer {
    font-size: 13px;
    color: #9ca3af;
}

.nav-footer .nav {
    justify-content: flex-end;
}

.nav-footer .nav li {
    margin-left: 20px;
}

.nav-footer a {
    color: #9ca3af;
    font-size: 12px;
}

.nav-footer a:hover {
    color: #fff;
}

.nav-divided li:not(:last-child)::after {
    content: "|";
    margin-left: 20px;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 849px) {
    .medium-6 { flex: 0 0 100%; max-width: 100%; }
    .large-9 { flex: 0 0 100%; max-width: 100%; }
    .large-3 { flex: 0 0 100%; max-width: 100%; }
    
    .header-main {
        height: 70px;
    }
    
    #logo img {
        max-height: 70px;
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    .hero-subtitle {
        font-size: 1em;
    }
    
    .section {
        padding: 30px 0;
    }
    
    .section-hero {
        padding: 60px 0;
        min-height: 400px;
    }
    
    .post-sidebar {
        margin-top: 30px;
    }
    
    .footer-primary,
    .footer-secondary {
        float: none !important;
        text-align: center;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .nav-footer .nav {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-footer .nav li {
        margin: 5px 10px;
    }
}

@media (max-width: 549px) {
    .container {
        padding-right: 10px;
        padding-left: 10px;
    }
    
    .hero-title {
        font-size: 1.75em;
    }
    
    .section-title {
        font-size: 1.5em;
    }
    
    h3 {
        font-size: 1.25em;
    }
    
    .button {
        padding: 12px 30px;
        font-size: 13px;
    }
    
    .box.has-hover {
        padding: 15px;
    }
    
    .widget {
        padding: 20px;
    }
    
    .col {
        padding-right: 10px;
        padding-left: 10px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeIn 0.6s ease-out;
}

/* Toplist Styles */
.toplist-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.toplist-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.toplist-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.toplist-rank {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.toplist-rank.rank-1 {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.toplist-rank.rank-2 {
    background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%);
}

.toplist-rank.rank-3 {
    background: linear-gradient(135deg, #CD7F32 0%, #8B4513 100%);
}

.toplist-content {
    flex: 1;
}

.toplist-content h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #333;
}

.toplist-meta {
    margin-bottom: 10px;
}

.toplist-meta span {
    display: inline-block;
    padding: 4px 12px;
    margin-right: 8px;
    font-size: 12px;
    border-radius: 4px;
    background: #f0f0f0;
}

.toplist-meta .genre {
    background: #667eea;
    color: white;
}

.toplist-meta .status {
    background: #e18aaa;
    color: white;
}

.toplist-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.toplist-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #888;
}

/* Review Styles */
.review-article {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.review-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.review-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.review-rating {
    color: #FFD700;
    font-weight: bold;
}

.review-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.review-content h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #667eea;
}

.review-content p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.review-highlights {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.review-highlights ul {
    margin: 10px 0 0 20px;
}

.review-highlights li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.review-verdict {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
}

.rating-bars {
    margin: 20px 0;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.rating-label {
    min-width: 100px;
    font-weight: 500;
}

.rating-bar {
    flex: 1;
    height: 24px;
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.rating-score {
    min-width: 60px;
    text-align: right;
    font-weight: bold;
    color: #667eea;
}

.verdict-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #667eea;
}

.verdict-recommend {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
}

/* Contact Form */
.contact-info-box {
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    text-align: center;
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-info-box h3 {
    margin-bottom: 10px;
    color: #333;
}

.contact-info-box p {
    color: #666;
    margin-bottom: 10px;
}

.contact-link {
    color: #667eea;
    font-weight: 500;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-row {
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.required {
    color: #e74c3c;
}

.form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.button.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.form-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 6px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.social-icon {
    font-size: 36px;
}

.social-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.social-text strong {
    font-size: 18px;
    color: #333;
    margin-bottom: 4px;
}

.social-text small {
    font-size: 14px;
    color: #666;
}

.facebook-btn:hover {
    border-left: 4px solid #1877f2;
}

.discord-btn:hover {
    border-left: 4px solid #5865F2;
}

.website-btn:hover {
    border-left: 4px solid #667eea;
}

.youtube-btn:hover {
    border-left: 4px solid #FF0000;
}

/* Mobile Responsive - Toplist */
@media (max-width: 849px) {
    .toplist-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .toplist-rank {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .toplist-content h3 {
        font-size: 18px;
    }
    
    .toplist-stats {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 549px) {
    .toplist-item {
        padding: 15px;
    }
    
    .toplist-rank {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .toplist-content h3 {
        font-size: 16px;
    }
    
    .toplist-desc {
        font-size: 14px;
    }
    
    .toplist-stats {
        font-size: 12px;
    }
}

/* Mobile Responsive - Review */
@media (max-width: 849px) {
    .review-article {
        padding: 20px;
    }
    
    .rating-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .rating-label {
        min-width: auto;
    }
    
    .rating-bar {
        width: 100%;
    }
    
    .rating-score {
        min-width: auto;
    }
}

@media (max-width: 549px) {
    .review-article {
        padding: 15px;
    }
    
    .review-header .section-title {
        font-size: 1.3em;
    }
    
    .review-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .review-content h3 {
        font-size: 1.2em;
    }
    
    .review-highlights {
        padding: 15px;
    }
    
    .verdict-box {
        padding: 15px;
    }
}

/* Mobile Responsive - Contact */
@media (max-width: 849px) {
    .social-links-large {
        grid-template-columns: 1fr;
    }
    
    .contact-info-box {
        padding: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 549px) {
    .contact-icon {
        font-size: 36px;
    }
    
    .contact-info-box {
        padding: 15px;
    }
    
    .contact-form {
        padding: 15px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .button.primary {
        width: 100%;
        padding: 12px 20px;
    }
    
    .social-btn {
        padding: 15px;
    }
    
    .social-icon {
        font-size: 28px;
    }
    
    .social-text strong {
        font-size: 16px;
    }
    
    .social-text small {
        font-size: 12px;
    }
}