/* Theme Name: Planet MCPE
   Description: Custom WordPress theme for Planet MCPE
   Version: 1.0
   Author: xAI
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #00ff88;
    --secondary: #ff6b6b;
    --accent: #4ecdc4;
    --bg-dark: #0a0a0f;
    --bg-card: #1a1a24;
    --bg-glass: rgba(26, 26, 36, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #d0d0d0;
}
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    padding-top: 80px;
}
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
}
.bg-animation::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
@keyframes ripple {
    to { transform: scale(2); opacity: 0; }
}
.floating-cube {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
    will-change: transform;
}
.floating-cube:nth-child(2) { top: 20%; left: 10%; animation-delay: -2s; }
.floating-cube:nth-child(3) { top: 60%; right: 10%; animation-delay: -4s; }
.floating-cube:nth-child(4) { bottom: 20%; left: 20%; animation-delay: -1s; }
.floating-cube:nth-child(5) { top: 30%; right: 15%; animation-delay: -3s; }
.floating-cube:nth-child(6) { bottom: 10%; left: 30%; animation-delay: -5s; }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-container {
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}
.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav-menu {
    display: flex;
    gap: 10px;
    list-style: none;
    align-items: center;
}
.nav-menu li {
    list-style: none;
}
.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
}
.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}
.nav-menu a:hover {
    color: var(--text-primary);
}
.nav-menu a:hover::before {
    width: 100%;
}
.language-toggle {
    position: relative;
    cursor: pointer;
}
.language-circle {
    width: 36px;
    height: 36px;
    background: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}
.language-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 600;
}
.language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    z-index: 1000;
    min-width: 150px;
}
.language-toggle:hover .language-dropdown {
    display: block;
}
.language-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.language-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
}
.flag-icon {
    width: 20px;
    height: 20px;
    background-size: cover;
}
.flag-ru { background-image: url('https://example.com/flags/ru.png'); }
.flag-ua { background-image: url('https://example.com/flags/ua.png'); }
.flag-en { background-image: url('https://example.com/flags/en.png'); }
.flag-ger { background-image: url('https://example.com/flags/ger.png'); }
.flag-de { background-image: url('https://example.com/flags/de.png'); }
.flag-es { background-image: url('https://example.com/flags/es.png'); }
.flag-is { background-image: url('https://example.com/flags/is.png'); }
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-primary);
}
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    padding: 60px 20px 20px;
    z-index: 999;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
}
.close-btn {
    display: none;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: var(--text-primary);
    cursor: pointer;
}
.nav-menu.active .close-btn {
    display: block;
}
.nav-menu.active li {
    margin: 10px 0;
}
.nav-menu.active a {
    font-size: 1.5rem;
    padding: 15px;
    text-align: center;
}
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    .nav-container {
        padding: 0 20px;
        height: 60px;
    }
    .hamburger {
        display: block;
    }
    .nav-menu {
        display: none;
    }
    .nav-right {
        gap: 10px;
    }
    .language-toggle {
        order: 2;
    }
    .hamburger {
        order: 1;
    }
}
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    padding: 0 40px;
    gap: 40px;
}
.hero-content {
    flex: 1;
    text-align: left;
    max-width: 50%;
}
.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroGlow 3s ease-in-out infinite alternate;
}
.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 400;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
}
.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.4);
}
.hero-download {
    flex: 1;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 40%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.hero-download h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}
.hero-download p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
    min-width: 200px;
    justify-content: center;
}
.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
    background: linear-gradient(135deg, var(--accent), var(--primary));
}
.download-btn .icon {
    width: 24px;
    height: 24px;
}
.download-btn .icon img {
    width: 100%;
    height: 100%;
}
.price-tag {
    position: absolute;
    top: -8px;
    right: 10px;
    background: linear-gradient(135deg, var(--secondary), #ff4d4d);
    color: var(--text-primary);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(5deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
@keyframes heroGlow {
    0% { filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3)); }
    100% { filter: drop-shadow(0 0 40px rgba(0, 255, 136, 0.6)); }
}
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    .hero-download {
        max-width: 100%;
        padding: 30px;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .download-buttons {
        flex-direction: column;
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-download h2 {
        font-size: 1.5rem;
    }
    .price-tag {
        top: -6px;
        font-size: 0.7rem;
    }
    .download-btn {
        min-width: auto;
        width: 100%;
    }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.content-section {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px 15px;
    margin: 40px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: var(--primary);
}
.versions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    align-items: center;
}
.version-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: 36px;
    flex: 0 0 auto;
    min-width: 120px;
    overflow: hidden;
    text-decoration: none;
}
.version-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}
.version-card.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}
.version-card.all-versions {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid #667eea;
    justify-content: center;
    padding: 8px 12px;
}
.version-card.all-versions:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}
.version-card.all-versions .version-number {
    color: white;
    padding: 0;
}
.version-number {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    padding: 0 8px;
    flex: 1;
    text-align: center;
    text-decoration: none;
}
.version-type {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0 12px;
    flex: 1;
    text-align: center;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    line-height: 36px;
    text-decoration: none;
}
.version-card.active .version-type {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-icon {
    font-size: 2rem;
    color: var(--primary);
}
.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}
.feature-description {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}
.tabs-container {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.tabs-header {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 255, 255, 0.03);
}
.tabs-header::-webkit-scrollbar {
    height: 3px;
}
.tabs-header::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
}
.tabs-header::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}
.tab-btn {
    flex: 0 0 auto;
    padding: 8px 16px;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.tab-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #93c5fd;
}
.tab-btn.active {
    background: #2f3432;
    color: white;
}
.tab-content {
    padding: 15px 0;
}
.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease-out;
}
.tab-panel.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
.content-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
}
.content-post {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    transition: transform 0.3s ease, background 0.3s ease;
    font-size: 0.85rem;
    position: relative;
}
.content-post:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
}
.content-post.highlighted {
    border: 2px solid var(--secondary); /* Красная рамка для всего поста */
}
.post-date {
    color: var(--text-secondary);
    font-size: 0.8rem;
    padding-right: 12px;
    min-width: 50px;
    flex-shrink: 0;
}
.content-post a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 60px);
    flex: 1;
}
.content-post a:hover {
    color: #93c5fd;
}
.important-label {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--secondary);
    color: var(--bg-dark);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(5deg);
    border: 2px solid var(--secondary);
}
.ad-block {
    background: rgba(255, 107, 107, 0.2);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 110px;
    transition: all 0.3s ease;
    position: relative;
}
.ad-block:hover {
    transform: translateY(-5px);
}
.ad-content {
    flex: 1;
    text-align: center;
    max-width: 80%;
}
.ad-content p {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.ad-label {
    position: absolute;
    top: -10px;
    left: 10px;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(-5deg);
}
.sales-link {
    position: absolute;
    bottom: 10px;
    right: 15px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}
.sales-highlight {
    background: var(--primary);
    color: var(--bg-dark);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}
.sales-link:hover .sales-highlight {
    background: var(--accent);
}
.seo-section {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 20px;
    margin: 40px 0;
}
.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.seo-card {
    position: relative;
    padding: 20px 20px 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid transparent;
    background-clip: padding-box;
    transition: transform 0.3s ease;
}
.seo-card:hover {
    transform: translateY(-5px);
}
.seo-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 2px 0 0 2px;
}
.seo-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}
.seo-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}
.seo-text a {
    color: #60a5fa;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.seo-text a:hover {
    color: #93c5fd;
}
footer {
    margin-top: 120px;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}
footer a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}
footer a:hover {
    color: var(--accent);
    text-decoration: underline;
}
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    .content-section {
        padding: 20px 10px;
        margin: 20px 0;
    }
    .versions-grid {
        gap: 8px;
    }
    .version-card {
        height: 32px;
        min-width: 100px;
    }
    .version-number {
        font-size: 0.9rem;
        padding: 0 6px;
    }
    .version-type {
        font-size: 0.8rem;
        padding: 0 8px;
        line-height: 32px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .feature-card {
        padding: 15px;
        flex-direction: row;
        align-items: center;
    }
    .feature-icon {
        font-size: 1.8rem;
    }
    .feature-title {
        font-size: 1.2rem;
    }
    .feature-description {
        font-size: 0.9rem;
    }
    .tabs-header {
        gap: 6px;
        padding: 6px;
    }
    .tab-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    .content-cards {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .content-post {
        padding: 6px 10px;
        flex-wrap: wrap;
    }
    .post-date {
        font-size: 0.75rem;
        min-width: 45px;
        padding-right: 8px;
    }
    .content-post a {
        font-size: 0.8rem;
        max-width: calc(100% - 45px); /* Уменьшено для мобильных */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .seo-section {
        padding: 20px 15px;
        margin: 20px 0;
    }
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .seo-card {
        padding: 15px 15px 15px 20px;
    }
    .seo-title {
        font-size: 1.1rem;
    }
    .seo-text {
        font-size: 0.9rem;
    }
    .ad-block {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .ad-content {
        text-align: center;
        max-width: 100%;
        margin-bottom: 15px;
    }
    .sales-link {
        position: static;
        display: block;
        text-align: center;
        margin-top: 10px;
    }
}
@media (max-width: 480px) {
    .content-section {
        padding: 15px 8px;
    }
    .section-title {
        font-size: 1.4rem;
    }
    .version-card {
        height: 30px;
        min-width: 90px;
    }
    .version-number {
        font-size: 0.85rem;
        padding: 0 5px;
    }
    .version-type {
        font-size: 0.75rem;
        padding: 0 6px;
        line-height: 30px;
    }
    .feature-card {
        padding: 12px;
    }
    .feature-icon {
        font-size: 1.6rem;
    }
    .feature-title {
        font-size: 1.1rem;
    }
    .feature-description {
        font-size: 0.85rem;
    }
    .tab-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    .content-post {
        padding: 5px 8px;
    }
    .seo-section {
        padding: 15px 10px;
    }
    .seo-card {
        padding: 10px 10px 10px 15px;
    }
}