/* ============================================
   FLATPLAY - Material Design Flat Theme CSS
   Theme: moban-53
   Colors: #6200EA (purple), #03DAC6 (teal), #CF6679 (pink), #000 (black), #fff (white)
   Style: FLAT - No shadows, no gradients, solid color blocks
   ============================================ */

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    box-shadow: none !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s, background 0.2s;
}

a:hover {
    color: #6200EA;
}

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: 'Rubik', sans-serif;
}

input, textarea, select {
    font-family: 'Roboto', sans-serif;
    outline: none;
    border: 2px solid #ddd;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 0;
    box-shadow: none;
}

input:focus, textarea:focus, select:focus {
    border-color: #6200EA;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* === FLAT GLOBAL RULES === */
* {
    box-shadow: none !important;
    text-shadow: none !important;
}

::selection {
    background: #6200EA;
    color: #fff;
}

::-moz-selection {
    background: #6200EA;
    color: #fff;
}

/* === HEADER === */
.flat-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.flat-header-bar {
    background-color: #6200EA;
    padding: 0;
}

.flat-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.flat-logo a {
    display: flex;
    align-items: center;
}

.flat-logo img {
    height: 45px;
    width: auto;
}

.flat-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.flat-btn-login {
    display: inline-block;
    padding: 8px 24px;
    border: 2px solid #fff;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
}

.flat-btn-login:hover {
    background: #fff;
    color: #6200EA;
}

.flat-btn-register {
    display: inline-block;
    padding: 8px 24px;
    border: 2px solid #03DAC6;
    color: #000;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #03DAC6;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
}

.flat-btn-register:hover {
    background: transparent;
    color: #03DAC6;
}

.flat-mobile-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

/* === NAVIGATION === */
.flat-nav {
    background-color: #000;
}

.flat-nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.flat-nav-menu .nav-item {
    position: relative;
}

.flat-nav-menu .nav-link {
    display: block;
    padding: 14px 18px;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.flat-nav-menu .nav-link i {
    margin-right: 6px;
    font-size: 12px;
}

.flat-nav-menu .nav-link:hover {
    background: #6200EA;
    color: #fff;
}

.flat-nav-menu .nav-item.active .nav-link {
    background: #6200EA;
    color: #fff;
}

/* Dropdown */
.flat-nav-menu .has-dropdown .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    min-width: 200px;
    z-index: 100;
    border-top: 3px solid #6200EA;
}

.flat-nav-menu .has-dropdown:hover .sub-menu {
    display: block;
}

.flat-nav-menu .sub-menu .nav-link {
    padding: 10px 20px;
    font-size: 12px;
    border-bottom: 1px solid #222;
}

.flat-nav-menu .sub-menu .nav-link:hover {
    background: #6200EA;
}

/* === HERO SECTION - PURPLE BG === */
.flat-hero {
    background-color: #6200EA;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.flat-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #6200EA;
    z-index: 0;
}

.flat-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.flat-hero-badge {
    display: inline-block;
    padding: 6px 24px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: flatFadeIn 0.6s ease;
}

.flat-hero-title {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: flatSlideIn 0.8s ease;
}

.flat-hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.7;
    animation: flatFadeIn 1s ease;
}

.flat-hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    animation: flatFadeIn 1.2s ease;
}

.flat-btn-hero {
    display: inline-block;
    padding: 14px 40px;
    background: #fff;
    color: #6200EA;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #fff;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
}

.flat-btn-hero:hover {
    background: transparent;
    color: #fff;
}

.flat-btn-hero-outline {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #fff;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
}

.flat-btn-hero-outline:hover {
    background: #fff;
    color: #6200EA;
}

.flat-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    animation: flatFadeIn 1.4s ease;
}

.flat-hero-stat {
    text-align: center;
}

.flat-hero-stat-num {
    display: block;
    font-family: 'Rubik', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.flat-hero-stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === SECTION HEADERS === */
.flat-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.flat-section-tag {
    display: inline-block;
    padding: 4px 16px;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #6200EA;
    border: 2px solid #6200EA;
    margin-bottom: 16px;
}

.flat-section-header.light .flat-section-tag {
    color: #fff;
    border-color: #fff;
}

.flat-section-title {
    font-size: 38px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.flat-section-header.light .flat-section-title {
    color: #fff;
}

.flat-section-desc {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.flat-section-header.light .flat-section-desc {
    color: rgba(255,255,255,0.9);
}

/* === GAMES SECTION - WHITE BG === */
.flat-games {
    background-color: #fff;
    padding: 80px 0;
}

.flat-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.flat-game-card {
    background: #fff;
    border: 2px solid #eee;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s;
    border-radius: 0;
}

.flat-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #6200EA;
}

.flat-game-card[data-color="teal"]::before {
    background: #03DAC6;
}

.flat-game-card[data-color="pink"]::before {
    background: #CF6679;
}

.flat-game-card:hover {
    border-color: #6200EA;
}

.flat-game-card[data-color="teal"]:hover {
    border-color: #03DAC6;
}

.flat-game-card[data-color="pink"]:hover {
    border-color: #CF6679;
}

.flat-game-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #6200EA;
    border-radius: 0;
}

.flat-game-card[data-color="teal"] .flat-game-icon {
    background: #03DAC6;
}

.flat-game-card[data-color="pink"] .flat-game-icon {
    background: #CF6679;
}

.flat-game-icon i {
    font-size: 32px;
    color: #fff;
}

.flat-game-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.flat-game-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.flat-game-link {
    display: inline-block;
    padding: 8px 24px;
    border: 2px solid #6200EA;
    color: #6200EA;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
}

.flat-game-link:hover {
    background: #6200EA;
    color: #fff;
}

.flat-game-card[data-color="teal"] .flat-game-link {
    border-color: #03DAC6;
    color: #03DAC6;
}

.flat-game-card[data-color="teal"] .flat-game-link:hover {
    background: #03DAC6;
    color: #fff;
}

.flat-game-card[data-color="pink"] .flat-game-link {
    border-color: #CF6679;
    color: #CF6679;
}

.flat-game-card[data-color="pink"] .flat-game-link:hover {
    background: #CF6679;
    color: #fff;
}

/* === FEATURES SECTION - TEAL BG === */
.flat-features {
    background-color: #03DAC6;
    padding: 80px 0;
}

.flat-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.flat-feature-item {
    text-align: center;
    padding: 30px 20px;
}

.flat-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    border: 2px solid #fff;
}

.flat-feature-icon i {
    font-size: 28px;
    color: #fff;
}

.flat-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.flat-feature-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

/* === STATS SECTION - BLACK BG === */
.flat-stats {
    background-color: #000;
    padding: 80px 0;
}

.flat-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.flat-stat-item {
    text-align: center;
    padding: 30px 20px;
}

.flat-stat-number {
    font-family: 'Rubik', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1;
}

.flat-stat-accent {
    width: 60px;
    height: 4px;
    background: #03DAC6;
    margin: 0 auto 16px;
}

.flat-stat-label {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* === PROMOTIONS SECTION - PINK BG === */
.flat-promos {
    background-color: #CF6679;
    padding: 80px 0;
}

.flat-promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.flat-promo-card {
    background: transparent;
    border: 2px solid #fff;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: background 0.2s;
    border-radius: 0;
}

.flat-promo-card:hover {
    background: rgba(255,255,255,0.1);
}

.flat-promo-badge {
    display: inline-block;
    padding: 4px 16px;
    background: #fff;
    color: #CF6679;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-radius: 0;
}

.flat-promo-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.flat-promo-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 24px;
}

.flat-promo-btn {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid #fff;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
}

.flat-promo-btn:hover {
    background: #fff;
    color: #CF6679;
}

/* === TESTIMONIALS SECTION - WHITE BG === */
.flat-testimonials {
    background-color: #fff;
    padding: 80px 0;
}

.flat-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.flat-testimonial-card {
    background: #fff;
    border: 2px solid #eee;
    border-left: 4px solid #6200EA;
    padding: 30px;
    position: relative;
    border-radius: 0;
}

.flat-testimonial-stars {
    margin-bottom: 16px;
}

.flat-testimonial-stars i {
    color: #6200EA;
    font-size: 16px;
    margin-right: 2px;
}

.flat-testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.flat-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.flat-testimonial-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #6200EA;
    border-radius: 0;
    flex-shrink: 0;
}

.flat-testimonial-avatar i {
    color: #fff;
    font-size: 20px;
}

.flat-testimonial-info strong {
    display: block;
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
}

.flat-testimonial-info span {
    font-size: 13px;
    color: #888;
}

/* === FOOTER CTA SECTION - PURPLE BG === */
.flat-footer-cta {
    background-color: #6200EA;
    padding: 80px 0;
    text-align: center;
}

.flat-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.flat-cta-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.flat-cta-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 36px;
}

.flat-btn-cta {
    display: inline-block;
    padding: 16px 50px;
    background: #fff;
    color: #6200EA;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 2px solid #fff;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
}

.flat-btn-cta:hover {
    background: transparent;
    color: #fff;
}

/* === FOOTER === */
.flat-footer {
    background-color: #000;
    padding: 60px 0 0;
    color: #fff;
}

.flat-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #222;
}

.flat-footer-col h4 {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #6200EA;
    display: inline-block;
}

.flat-footer-col ul li {
    margin-bottom: 8px;
}

.flat-footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.2s;
    display: block;
    padding: 4px 0;
}

.flat-footer-col ul li a:hover {
    color: #03DAC6;
}

.flat-footer-logo {
    margin-bottom: 16px;
}

.flat-footer-logo img {
    height: 45px;
    width: auto;
}

.flat-footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.flat-footer-social {
    display: flex;
    gap: 12px;
}

.flat-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #444;
    color: #fff;
    font-size: 16px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    border-radius: 0;
}

.flat-footer-social a:hover {
    background: #6200EA;
    border-color: #6200EA;
    color: #fff;
}

/* Footer License */
.flat-footer-license {
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid #222;
}

.flat-footer-license h4 {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.flat-license-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.flat-license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.flat-license-item i {
    font-size: 28px;
    color: #03DAC6;
}

.flat-license-item span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Bottom */
.flat-footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.flat-footer-copyright {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}

.flat-footer-disclaimer {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

/* === BREADCRUMB === */
.flat-breadcrumb {
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #888;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
}

.flat-breadcrumb a {
    color: #6200EA;
    transition: color 0.2s;
}

.flat-breadcrumb a:hover {
    color: #03DAC6;
}

.flat-breadcrumb span {
    color: #aaa;
}

/* === CONTENT AREA === */
.flat-content-area {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 20px 0 60px;
}

.flat-main-content {
    min-width: 0;
}

/* === ARTICLE GRID === */
.flat-article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.flat-article-card {
    background: #fff;
    border: 2px solid #eee;
    overflow: hidden;
    transition: border-color 0.2s;
    border-radius: 0;
    position: relative;
}

.flat-article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #6200EA;
    z-index: 1;
}

.flat-article-card:nth-child(even)::before {
    background: #03DAC6;
}

.flat-article-card:hover {
    border-color: #6200EA;
}

.flat-article-thumb {
    overflow: hidden;
    height: 200px;
}

.flat-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.flat-article-card:hover .flat-article-thumb img {
    transform: scale(1.05);
}

.flat-article-title {
    padding: 20px 20px 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.flat-article-title a {
    color: #000;
    transition: color 0.2s;
}

.flat-article-title a:hover {
    color: #6200EA;
}

.flat-article-meta {
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.flat-article-meta i {
    margin-right: 4px;
    color: #6200EA;
}

.flat-article-excerpt {
    padding: 0 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.flat-article-more {
    display: inline-block;
    padding: 8px 20px;
    margin: 0 20px 20px;
    border: 2px solid #6200EA;
    color: #6200EA;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
}

.flat-article-more:hover {
    background: #6200EA;
    color: #fff;
}

/* === PAGINATION === */
.flat-pagination {
    text-align: center;
    padding: 20px 0;
}

.flat-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.flat-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #eee;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    border-radius: 0;
}

.flat-pagination .page-numbers:hover,
.flat-pagination .page-numbers.current {
    background: #6200EA;
    color: #fff;
    border-color: #6200EA;
}

/* === CATEGORY HEADER === */
.flat-category-header {
    margin-bottom: 30px;
    padding: 30px;
    background: #6200EA;
    color: #fff;
    border-radius: 0;
}

.flat-category-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.flat-category-title i {
    margin-right: 10px;
}

.flat-category-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* === FILTER TABS === */
.flat-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.flat-filter-tab {
    padding: 8px 20px;
    border: 2px solid #eee;
    background: #fff;
    color: #333;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    border-radius: 0;
}

.flat-filter-tab:hover,
.flat-filter-tab.active {
    background: #6200EA;
    color: #fff;
    border-color: #6200EA;
}

/* === SINGLE ARTICLE === */
.flat-single-article {
    background: #fff;
    border: 2px solid #eee;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 0;
}

.flat-article-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.flat-article-single-title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.flat-article-img {
    margin-bottom: 30px;
    overflow: hidden;
    border: 2px solid #eee;
    border-radius: 0;
}

.flat-article-img img {
    width: 100%;
    height: auto;
}

.flat-article-content {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}

.flat-article-content p {
    margin-bottom: 20px;
}

.flat-article-content h2,
.flat-article-content h3 {
    color: #000;
    margin: 30px 0 15px;
}

.flat-article-content h2 {
    font-size: 24px;
    padding-left: 16px;
    border-left: 4px solid #6200EA;
}

.flat-article-content h3 {
    font-size: 20px;
    color: #6200EA;
}

.flat-article-content blockquote {
    border-left: 4px solid #6200EA;
    padding: 20px;
    background: #f8f8f8;
    margin: 20px 0;
    font-style: italic;
    color: #555;
    border-radius: 0;
}

.flat-article-content img {
    border-radius: 0;
    border: 2px solid #eee;
    margin: 20px 0;
}

.flat-article-content a {
    color: #6200EA;
    text-decoration: underline;
}

.flat-article-content ul,
.flat-article-content ol {
    margin: 15px 0;
    padding-left: 30px;
    list-style: disc;
}

.flat-article-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* === ARTICLE TAGS === */
.flat-article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
    border-top: 2px solid #eee;
    margin-top: 30px;
}

.flat-article-tags i {
    color: #6200EA;
    font-size: 16px;
}

.flat-article-tags span {
    display: inline-block;
    padding: 4px 14px;
    background: #f5f5f5;
    color: #555;
    font-size: 13px;
    border: 1px solid #ddd;
    border-radius: 0;
}

.flat-article-tags span:hover {
    background: #6200EA;
    color: #fff;
    border-color: #6200EA;
}

/* === ARTICLE NAV === */
.flat-article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 2px solid #eee;
    margin-top: 20px;
}

.flat-article-nav a {
    color: #6200EA;
    font-weight: 600;
    font-size: 14px;
}

.flat-article-nav a:hover {
    color: #03DAC6;
}

/* === RELATED POSTS === */
.flat-related-posts {
    margin-bottom: 40px;
}

.flat-related-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid #6200EA;
    display: inline-block;
}

.flat-related-title i {
    color: #6200EA;
    margin-right: 8px;
}

.flat-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.flat-related-item {
    background: #fff;
    border: 2px solid #eee;
    overflow: hidden;
    transition: border-color 0.2s;
    border-radius: 0;
    display: block;
}

.flat-related-item:hover {
    border-color: #6200EA;
}

.flat-related-thumb {
    height: 140px;
    overflow: hidden;
}

.flat-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.flat-related-item:hover .flat-related-thumb img {
    transform: scale(1.05);
}

.flat-related-item-title {
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
}

/* === PAGE ARTICLE === */
.flat-page-article {
    background: #fff;
    border: 2px solid #eee;
    padding: 40px;
    border-radius: 0;
}

.flat-page-title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid #6200EA;
}

.flat-page-img {
    margin-bottom: 24px;
    overflow: hidden;
    border: 2px solid #eee;
    border-radius: 0;
}

.flat-page-img img {
    width: 100%;
    height: auto;
}

.flat-page-content {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}

.flat-page-content p {
    margin-bottom: 20px;
}

/* === SIDEBAR (Floating) === */
.flat-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.flat-sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #6200EA;
    color: #fff;
    font-size: 20px;
    transition: width 0.2s, background 0.2s;
    position: relative;
    border-radius: 0;
}

.flat-sidebar-btn:hover {
    width: 160px;
    justify-content: flex-start;
    padding-left: 14px;
    color: #fff;
}

.flat-sidebar-label {
    display: none;
    margin-left: 10px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.flat-sidebar-btn:hover .flat-sidebar-label {
    display: inline;
}

.flat-sidebar-btn-facebook {
    background: #1877F2;
}

.flat-sidebar-btn-telegram {
    background: #0088CC;
}

/* === NO POSTS === */
.flat-no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.flat-no-posts i {
    font-size: 48px;
    color: #6200EA;
    margin-bottom: 16px;
    display: block;
}

.flat-no-posts p {
    font-size: 16px;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes flatSlideIn {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes colorPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes flatFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes flatSlideLeft {
    0% {
        transform: translateX(-30px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes flatSlideRight {
    0% {
        transform: translateX(30px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* === SCROLL REVEAL === */
.flat-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.flat-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.flat-reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.flat-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.flat-reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.flat-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.flat-reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.flat-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* === UTILITY CLASSES === */
.text-purple { color: #6200EA; }
.text-teal { color: #03DAC6; }
.text-pink { color: #CF6679; }
.text-black { color: #000; }
.text-white { color: #fff; }

.bg-purple { background-color: #6200EA; }
.bg-teal { background-color: #03DAC6; }
.bg-pink { background-color: #CF6679; }
.bg-black { background-color: #000; }
.bg-white { background-color: #fff; }

.flat-divider {
    height: 4px;
    background: #6200EA;
    border: none;
    margin: 40px 0;
}

.flat-divider.teal { background: #03DAC6; }
.flat-divider.pink { background: #CF6679; }

/* === ADDITIONAL FLAT BUTTON STYLES === */
.flat-btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
    background: transparent;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
    cursor: pointer;
}

.flat-btn-purple {
    border-color: #6200EA;
    color: #6200EA;
}
.flat-btn-purple:hover {
    background: #6200EA;
    color: #fff;
}

.flat-btn-teal {
    border-color: #03DAC6;
    color: #03DAC6;
}
.flat-btn-teal:hover {
    background: #03DAC6;
    color: #fff;
}

.flat-btn-pink {
    border-color: #CF6679;
    color: #CF6679;
}
.flat-btn-pink:hover {
    background: #CF6679;
    color: #fff;
}

.flat-btn-black {
    border-color: #000;
    color: #000;
}
.flat-btn-black:hover {
    background: #000;
    color: #fff;
}

.flat-btn-white {
    border-color: #fff;
    color: #fff;
}
.flat-btn-white:hover {
    background: #fff;
    color: #000;
}

/* === FLAT CARDS GENERAL === */
.flat-card {
    background: #fff;
    border: 2px solid #eee;
    padding: 30px;
    border-radius: 0;
    transition: border-color 0.2s;
}

.flat-card:hover {
    border-color: #6200EA;
}

.flat-card-accent-purple {
    border-left: 4px solid #6200EA;
}

.flat-card-accent-teal {
    border-left: 4px solid #03DAC6;
}

.flat-card-accent-pink {
    border-left: 4px solid #CF6679;
}

/* === FLAT BADGES === */
.flat-badge {
    display: inline-block;
    padding: 3px 12px;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
}

.flat-badge-purple {
    background: #6200EA;
    color: #fff;
}

.flat-badge-teal {
    background: #03DAC6;
    color: #000;
}

.flat-badge-pink {
    background: #CF6679;
    color: #fff;
}

.flat-badge-black {
    background: #000;
    color: #fff;
}

/* === FLAT ICON STYLES === */
.flat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    color: #fff;
}

.flat-icon-purple { background: #6200EA; }
.flat-icon-teal { background: #03DAC6; }
.flat-icon-pink { background: #CF6679; }
.flat-icon-black { background: #000; }

.flat-icon-square { border-radius: 0; }

/* === FLAT SECTION ALTERNATING === */
.flat-section-alt:nth-child(odd) {
    background: #f5f5f5;
}

.flat-section-alt:nth-child(even) {
    background: #fff;
}

/* === FLAT LIST STYLES === */
.flat-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flat-list li i {
    color: #6200EA;
    font-size: 14px;
    flex-shrink: 0;
}

.flat-list li:last-child {
    border-bottom: none;
}

/* === SWIPER OVERRIDES === */
.swiper-pagination-bullet {
    background: #6200EA;
    opacity: 0.3;
    border-radius: 0;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #6200EA;
}

.swiper-button-next,
.swiper-button-prev {
    color: #6200EA;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #6200EA;
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: #4a00b8;
}

/* === FORM STYLES === */
.flat-form-group {
    margin-bottom: 20px;
}

.flat-form-group label {
    display: block;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flat-form-group input,
.flat-form-group textarea,
.flat-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #eee;
    font-size: 15px;
    transition: border-color 0.2s;
    border-radius: 0;
    box-shadow: none;
}

.flat-form-group input:focus,
.flat-form-group textarea:focus,
.flat-form-group select:focus {
    border-color: #6200EA;
}

.flat-form-submit {
    padding: 14px 40px;
    background: #6200EA;
    color: #fff;
    border: 2px solid #6200EA;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
}

.flat-form-submit:hover {
    background: transparent;
    color: #6200EA;
}

/* === TABLE STYLES === */
.flat-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #eee;
}

.flat-table th {
    background: #6200EA;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 16px;
    text-align: left;
}

.flat-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #555;
}

.flat-table tr:nth-child(even) {
    background: #f8f8f8;
}

.flat-table tr:hover {
    background: #f0e6ff;
}

/* === NOTIFICATION / ALERT === */
.flat-alert {
    padding: 16px 20px;
    border-left: 4px solid;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    border-radius: 0;
}

.flat-alert-purple {
    border-color: #6200EA;
    background: #f3e8ff;
    color: #4a00b8;
}

.flat-alert-teal {
    border-color: #03DAC6;
    background: #e0f7f5;
    color: #006e63;
}

.flat-alert-pink {
    border-color: #CF6679;
    background: #fce4ec;
    color: #a44055;
}

.flat-alert-black {
    border-color: #000;
    background: #f5f5f5;
    color: #333;
}

/* === TOOLTIP === */
.flat-tooltip {
    position: relative;
}

.flat-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    border-radius: 0;
}

.flat-tooltip:hover::after {
    opacity: 1;
}

/* === PROGRESS BAR === */
.flat-progress {
    height: 8px;
    background: #eee;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 10px;
}

.flat-progress-bar {
    height: 100%;
    transition: width 0.6s ease;
}

.flat-progress-purple { background: #6200EA; }
.flat-progress-teal { background: #03DAC6; }
.flat-progress-pink { background: #CF6679; }

/* === ACCORDION === */
.flat-accordion-item {
    border: 2px solid #eee;
    margin-bottom: 10px;
    border-radius: 0;
}

.flat-accordion-header {
    padding: 16px 20px;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s, color 0.2s;
}

.flat-accordion-header:hover {
    background: #f8f8f8;
}

.flat-accordion-header.active {
    background: #6200EA;
    color: #fff;
}

.flat-accordion-header i {
    transition: transform 0.3s;
}

.flat-accordion-header.active i {
    transform: rotate(180deg);
}

.flat-accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.flat-accordion-body.open {
    padding: 20px;
    max-height: 500px;
}

/* === COUNTER ANIMATION === */
.flat-counter-animated {
    transition: all 0.3s ease;
}

/* === IMAGE OVERLAY === */
.flat-img-overlay {
    position: relative;
    overflow: hidden;
}

.flat-img-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(98, 0, 234, 0.7);
    opacity: 0;
    transition: opacity 0.3s;
}

.flat-img-overlay:hover::after {
    opacity: 1;
}

/* === GRID HELPERS === */
.flat-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.flat-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.flat-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* === SPACING HELPERS === */
.mt-0 { margin-top: 0; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.pt-0 { padding-top: 0; }
.pt-40 { padding-top: 40px; }
.pt-60 { padding-top: 60px; }
.pt-80 { padding-top: 80px; }
.pb-0 { padding-bottom: 0; }
.pb-40 { padding-bottom: 40px; }
.pb-60 { padding-bottom: 60px; }
.pb-80 { padding-bottom: 80px; }

/* === TEXT HELPERS === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-uppercase { text-transform: uppercase; }
.text-bold { font-weight: 700; }
.text-sm { font-size: 14px; }
.text-lg { font-size: 20px; }
.text-xl { font-size: 28px; }
.text-xxl { font-size: 40px; }

/* === FLEX HELPERS === */
.flex { display: flex; }
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }

/* === VISIBILITY === */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

/* === OPACITY HELPERS === */
.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
