/*
Theme Name: GoFishDating Theme
Theme URI: https://gofishdating.com
Description: Premium AI Dating Apps Review Theme - Modern glassmorphism design with dark mode aesthetic
Author: GoFishDating
Author URI: https://gofishdating.com
Template: twentytwentyfive
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gofishdating
Tags: ai-dating, reviews, dark-mode, glassmorphism, responsive

GoFishDating Theme - AI Dating Apps Reviews
A spectacular WordPress child theme for AI girlfriend/boyfriend app reviews.
*/

/* ==========================================================================
   CSS Variables & Root Styles
   ========================================================================== */

:root {
    /* Brand Colors */
    --gfd-primary: #6C63FF;
    --gfd-secondary: #FF6B9D;
    --gfd-gradient: linear-gradient(135deg, #6C63FF 0%, #FF6B9D 100%);
    --gfd-gradient-hover: linear-gradient(135deg, #7B73FF 0%, #FF7DAD 100%);
    
    /* Dark Theme */
    --gfd-bg-dark: #0F0F23;
    --gfd-bg-card: #1A1A2E;
    --gfd-bg-card-hover: #242442;
    --gfd-bg-glass: rgba(26, 26, 46, 0.7);
    
    /* Text Colors */
    --gfd-text-primary: #FFFFFF;
    --gfd-text-secondary: rgba(255, 255, 255, 0.7);
    --gfd-text-muted: rgba(255, 255, 255, 0.5);
    
    /* Accents */
    --gfd-success: #00D9A5;
    --gfd-warning: #FFB800;
    --gfd-hot: #FF4757;
    
    /* Glassmorphism */
    --gfd-glass-bg: rgba(255, 255, 255, 0.05);
    --gfd-glass-border: rgba(255, 255, 255, 0.1);
    --gfd-glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Typography */
    --gfd-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --gfd-font-heading: 'Poppins', var(--gfd-font-primary);
    
    /* Spacing */
    --gfd-section-padding: clamp(3rem, 8vw, 6rem);
    --gfd-container-width: 1200px;
    
    /* Transitions */
    --gfd-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gfd-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --gfd-radius-sm: 8px;
    --gfd-radius-md: 12px;
    --gfd-radius-lg: 20px;
    --gfd-radius-xl: 24px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--gfd-font-primary);
    background-color: var(--gfd-bg-dark);
    color: var(--gfd-text-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Override flavor flavor flavor flavor defaults */
body.flavor flavor flavor flavor-template-flavor-flavor-flavor-flavor flavor flavor flavor,
.wp-site-blocks {
    background-color: var(--gfd-bg-dark) !important;
}

a {
    color: var(--gfd-primary);
    text-decoration: none;
    transition: var(--gfd-transition);
}

a:hover {
    color: var(--gfd-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--gfd-font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem;
    color: var(--gfd-text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.25rem); }

p {
    margin: 0 0 1rem;
    color: var(--gfd-text-secondary);
}

.gradient-text {
    background: var(--gfd-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   Container & Layout
   ========================================================================== */

.gfd-container {
    width: 100%;
    max-width: var(--gfd-container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gfd-section {
    padding: var(--gfd-section-padding) 0;
    position: relative;
}

.gfd-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gfd-section-header h2 {
    margin-bottom: 0.5rem;
}

.gfd-section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.gfd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--gfd-font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--gfd-radius-md);
    cursor: pointer;
    transition: var(--gfd-transition);
    text-decoration: none;
}

.gfd-btn-primary {
    background: var(--gfd-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.4);
}

.gfd-btn-primary:hover {
    background: var(--gfd-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.5);
    color: white;
}

.gfd-btn-secondary {
    background: var(--gfd-glass-bg);
    color: var(--gfd-text-primary);
    border: 1px solid var(--gfd-glass-border);
    backdrop-filter: blur(10px);
}

.gfd-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gfd-primary);
    color: var(--gfd-primary);
}

.gfd-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.gfd-btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ==========================================================================
   Cards - Glassmorphism
   ========================================================================== */

.gfd-card {
    background: var(--gfd-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--gfd-glass-border);
    border-radius: var(--gfd-radius-lg);
    padding: 1.5rem;
    transition: var(--gfd-transition);
    position: relative;
    overflow: hidden;
}

.gfd-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.gfd-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 99, 255, 0.3);
    box-shadow: var(--gfd-glass-shadow), 0 0 30px rgba(108, 99, 255, 0.1);
}

/* ==========================================================================
   Header Styles
   ========================================================================== */

.gfd-top-bar {
    background: var(--gfd-gradient);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    text-align: center;
}

.gfd-top-bar a {
    color: white;
    font-weight: 600;
}

.gfd-top-bar a:hover {
    text-decoration: underline;
}

.gfd-header {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gfd-glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.gfd-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.gfd-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--gfd-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gfd-text-primary);
}

.gfd-logo:hover {
    color: var(--gfd-text-primary);
}

.gfd-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gfd-gradient);
    border-radius: var(--gfd-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.gfd-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.gfd-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.gfd-nav-link {
    color: var(--gfd-text-secondary);
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
}

.gfd-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gfd-gradient);
    transition: var(--gfd-transition);
    transform: translateX(-50%);
}

.gfd-nav-link:hover,
.gfd-nav-link.active {
    color: var(--gfd-text-primary);
}

.gfd-nav-link:hover::after,
.gfd-nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.gfd-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.gfd-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gfd-text-primary);
    transition: var(--gfd-transition);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.gfd-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.gfd-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gfd-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(108, 99, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(108, 99, 255, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

.gfd-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.gfd-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.gfd-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gfd-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: var(--gfd-text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gfd-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.gfd-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.gfd-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gfd-glass-bg);
    border: 1px solid var(--gfd-glass-border);
    border-radius: var(--gfd-radius-sm);
    font-size: 0.875rem;
    color: var(--gfd-text-secondary);
}

.gfd-badge-icon {
    color: var(--gfd-success);
}

/* ==========================================================================
   Featured Apps Grid
   ========================================================================== */

.gfd-apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gfd-app-card {
    background: var(--gfd-glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gfd-glass-border);
    border-radius: var(--gfd-radius-lg);
    padding: 1.75rem;
    transition: var(--gfd-transition);
    position: relative;
}

.gfd-app-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--gfd-radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(108,99,255,0.3), transparent, rgba(255,107,157,0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--gfd-transition);
}

.gfd-app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gfd-app-card:hover::before {
    opacity: 1;
}

.gfd-app-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.gfd-app-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--gfd-radius-md);
    background: var(--gfd-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.gfd-app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--gfd-radius-md);
}

.gfd-app-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.gfd-app-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gfd-stars {
    display: flex;
    gap: 2px;
    color: var(--gfd-warning);
}

.gfd-rating-score {
    font-weight: 600;
    color: var(--gfd-text-primary);
}

.gfd-app-description {
    color: var(--gfd-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.gfd-app-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gfd-app-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(108, 99, 255, 0.15);
    color: var(--gfd-primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* ==========================================================================
   Categories Grid
   ========================================================================== */

.gfd-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
}

.gfd-category-card {
    background: var(--gfd-glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gfd-glass-border);
    border-radius: var(--gfd-radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: var(--gfd-transition);
    position: relative;
    overflow: hidden;
}

.gfd-category-card:hover {
    transform: translateY(-5px);
    border-color: var(--gfd-primary);
    background: rgba(108, 99, 255, 0.1);
}

.gfd-category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.gfd-category-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--gfd-text-primary);
}

.gfd-category-count {
    font-size: 0.85rem;
    color: var(--gfd-text-muted);
}

.gfd-category-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.2rem 0.5rem;
    background: var(--gfd-hot);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

/* ==========================================================================
   Latest Reviews
   ========================================================================== */

.gfd-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.gfd-review-card {
    background: var(--gfd-glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gfd-glass-border);
    border-radius: var(--gfd-radius-lg);
    overflow: hidden;
    transition: var(--gfd-transition);
}

.gfd-review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gfd-glass-shadow);
}

.gfd-review-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.gfd-review-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--gfd-transition-slow);
}

.gfd-review-card:hover .gfd-review-thumbnail img {
    transform: scale(1.05);
}

.gfd-review-thumbnail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 35, 0.8) 0%, transparent 50%);
}

.gfd-review-content {
    padding: 1.5rem;
}

.gfd-review-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: var(--gfd-text-muted);
}

.gfd-review-category {
    color: var(--gfd-primary);
    font-weight: 600;
}

.gfd-review-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.gfd-review-card h3 a {
    color: var(--gfd-text-primary);
}

.gfd-review-card h3 a:hover {
    color: var(--gfd-primary);
}

.gfd-review-excerpt {
    color: var(--gfd-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   Comparison Table
   ========================================================================== */

.gfd-table-wrapper {
    overflow-x: auto;
    background: var(--gfd-glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gfd-glass-border);
    border-radius: var(--gfd-radius-lg);
    padding: 0.5rem;
}

.gfd-comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.gfd-comparison-table th,
.gfd-comparison-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--gfd-glass-border);
}

.gfd-comparison-table th {
    background: rgba(108, 99, 255, 0.1);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gfd-text-secondary);
}

.gfd-comparison-table tr:last-child td {
    border-bottom: none;
}

.gfd-comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.gfd-table-app {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gfd-table-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--gfd-radius-sm);
    background: var(--gfd-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gfd-table-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gfd-table-price {
    font-weight: 600;
}

.gfd-table-price.free {
    color: var(--gfd-success);
}

/* ==========================================================================
   Newsletter / CTA Section
   ========================================================================== */

.gfd-newsletter {
    background: var(--gfd-glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gfd-glass-border);
    border-radius: var(--gfd-radius-xl);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gfd-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
    animation: newsletterGlow 10s linear infinite;
}

@keyframes newsletterGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gfd-newsletter-content {
    position: relative;
    z-index: 1;
}

.gfd-newsletter h2 {
    margin-bottom: 0.75rem;
}

.gfd-newsletter p {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.gfd-newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

.gfd-newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gfd-glass-border);
    border-radius: var(--gfd-radius-md);
    color: var(--gfd-text-primary);
    font-size: 1rem;
    font-family: var(--gfd-font-primary);
    transition: var(--gfd-transition);
}

.gfd-newsletter-input::placeholder {
    color: var(--gfd-text-muted);
}

.gfd-newsletter-input:focus {
    outline: none;
    border-color: var(--gfd-primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.gfd-footer {
    background: var(--gfd-bg-card);
    border-top: 1px solid var(--gfd-glass-border);
    padding: 3rem 0 1.5rem;
}

.gfd-footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.gfd-footer-brand p {
    font-size: 0.9rem;
    margin-top: 1rem;
}

.gfd-footer-links h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--gfd-text-muted);
}

.gfd-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gfd-footer-links li {
    margin-bottom: 0.5rem;
}

.gfd-footer-links a {
    color: var(--gfd-text-secondary);
    font-size: 0.95rem;
}

.gfd-footer-links a:hover {
    color: var(--gfd-primary);
}

.gfd-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gfd-glass-border);
    font-size: 0.85rem;
    color: var(--gfd-text-muted);
}

.gfd-footer-social {
    display: flex;
    gap: 1rem;
}

.gfd-footer-social a {
    color: var(--gfd-text-secondary);
    font-size: 1.25rem;
}

.gfd-footer-social a:hover {
    color: var(--gfd-primary);
}

/* ==========================================================================
   Sticky Bottom Bar
   ========================================================================== */

.gfd-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--gfd-glass-border);
    padding: 0.75rem 0;
    z-index: 999;
    transform: translateY(100%);
    transition: var(--gfd-transition);
}

.gfd-sticky-bar.visible {
    transform: translateY(0);
}

.gfd-sticky-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.gfd-sticky-bar-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.gfd-sticky-bar-emoji {
    font-size: 1.25rem;
}

/* ==========================================================================
   Sidebar
   ========================================================================== */

.gfd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gfd-widget {
    background: var(--gfd-glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gfd-glass-border);
    border-radius: var(--gfd-radius-lg);
    padding: 1.5rem;
}

.gfd-widget-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gfd-glass-border);
}

.gfd-widget-app-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gfd-widget-app-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gfd-widget-app-item:last-child {
    border-bottom: none;
}

.gfd-widget-app-rank {
    width: 24px;
    height: 24px;
    background: var(--gfd-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.gfd-widget-app-info {
    flex: 1;
    min-width: 0;
}

.gfd-widget-app-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gfd-widget-app-name a {
    color: var(--gfd-text-primary);
}

.gfd-widget-app-rating {
    font-size: 0.8rem;
    color: var(--gfd-warning);
}

/* ==========================================================================
   In-Article CTA Box
   ========================================================================== */

.gfd-cta-box {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.15) 0%, rgba(255, 107, 157, 0.15) 100%);
    border: 1px solid rgba(108, 99, 255, 0.3);
    border-radius: var(--gfd-radius-lg);
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.gfd-cta-box h4 {
    margin-bottom: 0.5rem;
}

.gfd-cta-box p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* ==========================================================================
   Single Post Styles
   ========================================================================== */

.gfd-single-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.gfd-post-header {
    margin-bottom: 2rem;
}

.gfd-post-header h1 {
    margin-bottom: 1rem;
}

.gfd-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--gfd-text-muted);
    font-size: 0.9rem;
}

.gfd-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.gfd-post-content h2,
.gfd-post-content h3,
.gfd-post-content h4 {
    margin-top: 2rem;
}

.gfd-post-content p {
    margin-bottom: 1.5rem;
    color: var(--gfd-text-secondary);
}

.gfd-post-content ul,
.gfd-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--gfd-text-secondary);
}

.gfd-post-content li {
    margin-bottom: 0.5rem;
}

.gfd-post-content img {
    border-radius: var(--gfd-radius-md);
    margin: 2rem auto;
}

.gfd-after-post-cta {
    background: var(--gfd-glass-bg);
    border: 1px solid var(--gfd-glass-border);
    border-radius: var(--gfd-radius-lg);
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    .gfd-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--gfd-bg-card);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: var(--gfd-transition);
        z-index: 1001;
    }
    
    .gfd-nav.active {
        right: 0;
    }
    
    .gfd-nav-list {
        flex-direction: column;
        width: 100%;
    }
    
    .gfd-menu-toggle {
        display: flex;
        z-index: 1002;
    }
    
    .gfd-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--gfd-transition);
        z-index: 1000;
    }
    
    .gfd-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    :root {
        --gfd-section-padding: 3rem;
    }
    
    .gfd-hero {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .gfd-hero h1 {
        font-size: 2rem;
    }
    
    .gfd-trust-badges {
        gap: 0.75rem;
    }
    
    .gfd-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    
    .gfd-apps-grid,
    .gfd-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .gfd-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gfd-newsletter {
        padding: 2rem 1.5rem;
    }
    
    .gfd-comparison-table th,
    .gfd-comparison-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .gfd-sticky-bar {
        display: none; /* Hide on mobile */
    }
    
    .gfd-footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .gfd-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gfd-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .gfd-hero-cta {
        flex-direction: column;
    }
    
    .gfd-btn {
        width: 100%;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--gfd-primary);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ============================================
   Category Page App Cards
   ============================================ */

.gfd-category-apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gfd-category-app-card {
    background: var(--gfd-glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gfd-glass-border);
    border-radius: var(--gfd-radius-lg);
    padding: 1.75rem;
    transition: var(--gfd-transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.gfd-category-app-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--gfd-radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.3), transparent, rgba(255, 107, 157, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--gfd-transition);
    pointer-events: none;
}

.gfd-category-app-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gfd-gradient);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.3s;
}

.gfd-category-app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gfd-category-app-card:hover::before {
    opacity: 1;
}

.gfd-category-app-card:hover::after {
    opacity: 0.3;
}

.gfd-category-app-card .app-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.gfd-category-app-card .app-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--gfd-radius-md);
    background: var(--gfd-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.gfd-category-app-card .app-info h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.15rem;
}

.gfd-category-app-card .app-info h3 a {
    color: var(--gfd-text-primary);
    text-decoration: none;
}

.gfd-category-app-card .app-info h3 a:hover {
    color: var(--gfd-primary);
}

.gfd-category-app-card .app-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gfd-warning);
    font-size: 0.9rem;
}

.gfd-category-app-card .app-rating span {
    font-weight: 600;
    color: var(--gfd-text-primary);
}

.gfd-category-app-card .app-description {
    color: var(--gfd-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.gfd-category-app-card .app-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gfd-category-app-card .app-price {
    color: var(--gfd-success, #10B981);
    font-weight: 600;
    font-size: 0.9rem;
}

.gfd-category-app-card .app-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(108, 99, 255, 0.15);
    color: var(--gfd-primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.gfd-category-app-card .app-cta {
    display: block;
    text-align: center;
    padding: 0.65rem 1.25rem;
    background: var(--gfd-gradient);
    color: white !important;
    border-radius: var(--gfd-radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--gfd-transition);
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.4);
}

.gfd-category-app-card .app-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.5);
}

@media (max-width: 768px) {
    .gfd-category-apps-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .gfd-category-apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
