/* Small Download Button */
.tweak-btn-download-small {
    background: #10b981;
    color: #fff;
    font-size: 1rem;
    border-radius: 2.5rem;
    padding: 0.7rem 1.8rem;
    box-shadow: 0 4px 16px 0 rgba(16,185,129,0.18);
    transition: background 0.2s, transform 0.2s;
}
.tweak-btn-download-small:hover {
    background: #059669;
    transform: translateY(-2px) scale(1.04);
}
/* ==================== VARIABLES ==================== */
:root {
    /* Colors */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #f59e0b;
    --accent-color: #ec4899;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    
    /* Neutral Colors */
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --white: #ffffff;
    --black: #000000;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --bg-dark: #111827;
    
    /* Shadow */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Sizes */
    --header-height: 80px;
    --container-width: 1200px;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input,
textarea {
    font-family: inherit;
    outline: none;
}

/* ==================== UTILITIES ==================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section__description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section__footer {
    text-align: center;
    margin-top: 60px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* === TweakMods Hero Buttons === */
.tweak-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
    font-size: 0.9375rem; /* Reduced by 25% */
  border-radius: 1.75rem;
    padding: 0.825rem 1.875rem; /* Reduced by 25% */
  transition: box-shadow 0.2s, background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 6px 24px 0 rgba(0,0,0,0.18);
  outline: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.tweak-btn-premium {
  background: #ff2d3d;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(255,45,61,0.18);
}
.tweak-btn-premium:hover {
  background: #e02634;
  transform: translateY(-2px) scale(1.03);
}
.tweak-btn-reviews {
  background: none;
  color: #a3a3a3;
  font-weight: 500;
    font-size: 0.9375rem; /* Reduced by 25% */
  box-shadow: none;
    padding: 0.825rem 1.875rem; /* Reduced by 25% */
  border-radius: 1.75rem;
  transition: color 0.2s;
}
.tweak-btn-reviews:hover {
  color: #fff;
}
.tweak-btn-download {
  background: #10b981;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(16,185,129,0.18);
    font-size: 0.9375rem; /* Reduced by 25% */
  border-radius: 2rem;
}
.tweak-btn-download:hover {
  background: #059669;
  transform: translateY(-2px) scale(1.03);
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 2rem;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__link {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary-color);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__toggle,
.nav__close {
    display: none;
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 120px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero__description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

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

.stat {
    text-align: left;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat__text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero__image {
    position: relative;
}

.hero__image-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: var(--gradient-accent);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero__img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-2xl);
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero__scroll svg {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* ==================== MODS SECTION ==================== */
.mods {
    background: var(--bg-primary);
}

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

.mod-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.mod-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.mod-card__image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.mod-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.mod-card:hover .mod-card__image img {
    transform: scale(1.1);
}

.mod-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-new {
    background: var(--gradient-secondary);
}

.badge-premium {
    background: var(--gradient-accent);
}

.mod-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.mod-card:hover .mod-card__overlay {
    opacity: 1;
}

.mod-card__content {
    padding: 24px;
}

.mod-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.mod-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    flex: 1;
}

.mod-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.rating-stars {
    color: #fbbf24;
    font-size: 0.875rem;
}

.rating-value {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.mod-card__description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mod-card__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid var(--bg-tertiary);
    border-bottom: 1px solid var(--bg-tertiary);
    margin-bottom: 20px;
}

.mod-card__platform,
.mod-card__downloads {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.mod-card__button {
    margin-top: 20px;
}

/* ==================== CATEGORIES SECTION ==================== */
.categories {
    background: var(--bg-secondary);
}

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

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-primary);
}

.category-card:hover .category-card__icon {
    transform: scale(1.2);
}

.category-card:hover .category-card__title,
.category-card:hover .category-card__count {
    color: var(--white);
}

.category-card__icon {
    font-size: 3rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.category-card__title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    transition: var(--transition);
}

.category-card__count {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

/* ==================== FEATURES SECTION ==================== */
.features {
    background: var(--bg-primary);
}

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

.feature-card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: var(--border-radius);
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.feature-card__description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== BLOG SECTION ==================== */
.blog {
    background: var(--bg-secondary);
}

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

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-card__image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.1);
}

.blog-card__category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    background: var(--white);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card__content {
    padding: 24px;
}

.blog-card__date {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.blog-card__title {
    margin-bottom: 12px;
}

.blog-card__title a {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
}

.blog-card__title a:hover {
    color: var(--primary-color);
}

.blog-card__excerpt {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.blog-card__link:hover {
    gap: 10px;
}

/* ==================== CTA SECTION ==================== */
.cta {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 0;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.cta__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
}

.cta .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background: var(--bg-primary);
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact__info-item {
    display: flex;
    gap: 20px;
}

.contact__info-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: var(--border-radius);
    color: var(--primary-color);
}

.contact__info-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact__info-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.contact__form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.form__group {
    margin-bottom: 24px;
}

.form__label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--bg-tertiary);
    border-radius: var(--border-radius);
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--primary-color);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 40px;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__description {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.7);
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.footer__social-link:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer__newsletter-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer__newsletter {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__newsletter-input {
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer__newsletter-input:focus {
    border-color: var(--primary-color);
}

.footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer__bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__copyright {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.footer__disclaimer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ==================== RESPONSIVE ==================== */
@media screen and (max-width: 1024px) {
    .section__title {
        font-size: 2.5rem;
    }
    
    .hero__title {
        font-size: 3rem;
    }
    
    .mods__grid,
    .blog__grid,
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer__content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero__buttons {
        flex-direction: column;
    }
    
    .mods__grid,
    .blog__grid,
    .features__grid {
        grid-template-columns: 1fr;
    }
    
    .categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact__wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
    }
    
    .cta__title {
        font-size: 2rem;
    }
    
    .cta__buttons {
        flex-direction: column;
    }
    
    /* Mobile Menu */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 80px 40px 40px;
        transition: var(--transition);
        z-index: 1001;
    }
    
    .nav__menu.show {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav__link {
        font-size: 1.125rem;
    }
    
    .nav__toggle,
    .nav__close {
        display: flex;
        color: var(--text-primary);
        cursor: pointer;
    }
    
    .nav__close {
        position: absolute;
        top: 30px;
        right: 30px;
    }
}

@media screen and (max-width: 480px) {
    .section__title {
        font-size: 1.75rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .categories__grid {
        grid-template-columns: 1fr;
    }
    
    .mod-card__meta {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== LOADING STATES ==================== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.bg-primary {
    background: var(--bg-primary);
}

.bg-secondary {
    background: var(--bg-secondary);
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* ==================== SCROLL PROGRESS BAR ==================== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #ff6b6b);
    z-index: 9999;
    width: 0%;
    transition: width 0.05s linear;
    pointer-events: none;
}

/* ==================== ACTIVE NAV ==================== */
.nav-active {
    color: #ffffff !important;
    position: relative;
}
.nav-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ef4444;
    border-radius: 2px;
}

/* ==================== HERO GLOW ==================== */
.hero-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(239,68,68,0.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(30px);
    animation: hero-glow-pulse 6s ease-in-out infinite;
}
@keyframes hero-glow-pulse {
    0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

/* ==================== BUTTON MICROINTERACTION ==================== */
.btn-glow {
    transition: box-shadow 0.25s, transform 0.2s, background 0.2s !important;
}
.btn-glow:hover {
    box-shadow: 0 0 24px rgba(239,68,68,0.5), 0 0 48px rgba(239,68,68,0.15) !important;
    transform: translateY(-2px) scale(1.04) !important;
}

/* ==================== ANIMATED GRADIENT BORDER ==================== */
.gradient-border-animated {
    border: 2px solid transparent !important;
    animation: border-glow 3s ease-in-out infinite;
}
@keyframes border-glow {
    0%, 100% { border-color: rgba(239,68,68,0.8); box-shadow: 0 0 18px rgba(239,68,68,0.25); }
    33%  { border-color: rgba(251,191,36,0.7); box-shadow: 0 0 18px rgba(251,191,36,0.2); }
    66%  { border-color: rgba(239,68,68,1);    box-shadow: 0 0 24px rgba(239,68,68,0.35); }
}

/* ==================== TRUST BAR ==================== */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}
.trust-check {
    color: #22c55e;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ==================== GAME LOGOS MARQUEE ==================== */
.marquee-wrapper {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
    display: flex;
    gap: 1.5rem;
    animation: marquee-scroll 32s linear infinite;
    width: max-content;
    align-items: center;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #374151;
    white-space: nowrap;
    padding: 0.375rem 0.875rem;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 0.375rem;
    background: rgba(255,255,255,0.02);
    transition: color 0.2s, border-color 0.2s;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.marquee-item:hover { color: #6b7280; border-color: rgba(239,68,68,0.2); }
.marquee-dot {
    width: 5px;
    height: 5px;
    background: #ef4444;
    border-radius: 50%;
    opacity: 0.5;
    flex-shrink: 0;
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ==================== FLOATING CTA ==================== */
#floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.35s, transform 0.35s;
    pointer-events: none;
}
#floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ==================== PRICING TEASER ==================== */
.pricing-teaser-card {
    border-radius: 1rem;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
    border: 1px solid rgba(255,255,255,0.07);
}
.pricing-teaser-card:hover { transform: translateY(-5px); }

/* ==================== SWIPER TESTIMONIALS ==================== */
.testimonials-swiper { padding-bottom: 3rem !important; }
.testimonials-swiper .swiper-pagination-bullet {
    background: #374151;
    opacity: 1;
    width: 8px;
    height: 8px;
}
.testimonials-swiper .swiper-pagination-bullet-active {
    background: #ef4444;
    width: 24px;
    border-radius: 4px;
    transition: width 0.3s;
}
