:root {
    /* Dark Night Blue-Purple Color Palette */
    --primary: #4F46E5;           /* Deep indigo */
    --secondary: #6366F1;         /* Bright indigo */
    --accent: #8B5CF6;            /* Purple */
    --dark-purple: #312E81;       /* Dark purple */
    --night-blue: #1E1B4B;        /* Night blue */
    --deep-blue: #0F172A;         /* Deep blue */
    --violet: #7C3AED;            /* Violet accent */
    --lavender: #A78BFA;          /* Light lavender */
    
    /* Neutral Base Colors */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F8FAFC;        /* Very light gray */
    --medium-gray: #64748B;       /* Slate gray */
    --dark-gray: #1E293B;         /* Dark slate */
    --text-primary: #0F172A;      /* Dark blue-gray */
    --text-secondary: #64748B;    /* Medium slate */
    --text-light: #94A3B8;        /* Light slate */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4F46E5 0%, #6366F1 50%, #8B5CF6 100%);
    --gradient-dark: linear-gradient(135deg, #312E81 0%, #1E1B4B 100%);
    --gradient-glass: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    --gradient-night: linear-gradient(135deg, #0F172A 0%, #1E1B4B 50%, #312E81 100%);
    
    /* Apple-inspired spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-purple: 0 8px 32px rgba(79, 70, 229, 0.25);
    --shadow-dark: 0 8px 32px rgba(15, 23, 42, 0.3);
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Google Sans', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: var(--text-primary);
    background-color: var(--white);
    margin: 0;
    padding-top: 80px; /* Account for fixed navbar */
    font-size: 16px;
    letter-spacing: -0.01em;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fixed Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    height: 80px;
    border-bottom: 0.5px solid rgba(134, 134, 139, 0.2);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    transition: all 0.2s ease;
}

.nav-logo a:hover {
    color: var(--primary);
}

.nav-logo img {
    width: 36px;
    height: 36px;
    margin-right: var(--space-md);
}

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

.nav-item {
    position: relative;
    margin-left: var(--space-xl);
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: var(--text-primary);
    background-color: var(--light-gray);
}

.dropdown-arrow {
    margin-left: var(--space-xs);
    font-size: 0.75rem;
    transition: transform 0.2s ease;
    color: var(--text-secondary);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + var(--space-sm));
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    border: 0.5px solid rgba(134, 134, 139, 0.2);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-var(--space-sm)) scale(0.95);
    transition: all 0.2s ease;
    list-style: none;
    padding: var(--space-sm);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--text-primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--white);
    color: var(--text-primary);
    text-align: center;
    padding: var(--space-3xl) var(--space-lg) var(--space-lg);
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    z-index: 1;
}

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

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.4;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    letter-spacing: -0.01em;
    white-space: nowrap;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-subtitle {
        white-space: normal;
    }
}

/* Featured Game Section */
.featured-game-section {
    background: var(--light-gray);
    padding: var(--space-3xl) var(--space-lg);
    margin: var(--space-lg) 0 var(--space-3xl) 0;
}

.game-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.game-container h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--space-2xl);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

/* Game Options */
.game-options {
    padding: var(--space-3xl) var(--space-lg);
    background: var(--white);
}

.options-container {
    max-width: 1200px;
    margin: 0 auto;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.option-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(134, 134, 139, 0.1);
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-purple);
    border-color: #6aaa64;
}

.option-card:hover::before {
    opacity: 1;
}

.option-card.active {
    border-color: #6aaa64;
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-purple);
}

.option-card.active::before {
    opacity: 0;
}

.option-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--primary);
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.option-card.active .option-number {
    color: white;
}

.option-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
}

.option-card p {
    color: var(--text-secondary);
    margin: 0;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    line-height: 1.4;
}

.option-card.active p {
    color: rgba(255, 255, 255, 0.9);
}

/* Button Styles */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    letter-spacing: -0.01em;
}

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

.btn-secondary {
    background: var(--light-gray);
    color: var(--text-primary);
    border: 1px solid rgba(134, 134, 139, 0.2);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.01em;
}

.btn-secondary:hover {
    background: #6aaa64;
    color: white;
    border-color: #6aaa64;
    transform: translateY(-2px);
}

.btn-gradient {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    letter-spacing: -0.01em;
}

.btn-gradient:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-purple);
}

/* Game Header */
.game-header {
    background: var(--gradient-glass);
    color: var(--text-primary);
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    border-bottom: 1px solid rgba(134, 134, 139, 0.1);
}

.game-header-content h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: -0.01em;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: var(--space-xl) 0;
}

.comparison-item {
    background: #f8f9fa;
    padding: var(--space-lg);
    border-radius: 8px;
    text-align: center;
}

.comparison-item h4 {
    color: #667eea;
    margin-bottom: var(--space-md);
    font-size: 1.2rem;
}

.comparison-item p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
}

.page-header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-md);
}

/* Guide Section */
.guide-section {
    margin-bottom: var(--space-3xl);
}

.guide-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.rule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.rule-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: var(--space-xl);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.rule-number {
    background: #667eea;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.rule-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.rule-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Color Guide */
.color-guide {
    margin-bottom: var(--space-3xl);
}

.color-guide h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.color-examples {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.color-example {
    background: white;
    padding: var(--space-xl);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.example-tiles,
.example-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
    justify-content: center;
    align-items: center;
}

.example-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
    align-items: center;
}

.example-tile {
    width: 50px;
    height: 50px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    background: white;
    flex-shrink: 0;
    flex-grow: 0;
}

.example-tile.correct {
    background: #6aaa64;
    color: white;
    border-color: #6aaa64;
}

.example-tile.present {
    background: #c9b458;
    color: white;
    border-color: #f59e0b;
}

.example-tile.absent {
    background: #787c7e;
    color: white;
    border-color: var(--gray-600);
}

.example-explanation {
    text-align: center;
}

.example-explanation h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.color-indicator {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.color-indicator.green { background: #6aaa64; }
.color-indicator.yellow { background: #c9b458; }
.color-indicator.gray { background: #787c7e; }

/* Strategy Section */
.strategy-section {
    margin-bottom: var(--space-3xl);
}

.strategy-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.strategy-tabs {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    background: #f8f9fa;
}

.tab-button {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.tab-button.active {
    background: #667eea;
    color: white;
}

.tab-content {
    padding: var(--space-xl);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.strategy-list {
    list-style: none;
    padding: 0;
}

.strategy-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
    line-height: 1.6;
}

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

/* Word Length Guide */
.word-length-guide {
    margin-bottom: var(--space-3xl);
}

.word-length-guide h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.length-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.length-card {
    background: white;
    padding: var(--space-xl);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.length-card h3 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.length-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

/* Tips Section */
.tips-section {
    margin-bottom: var(--space-3xl);
}

.tips-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: white;
    padding: var(--space-xl);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-card h3 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
}

.tip-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Ready Section */
.ready-section {
    text-align: center;
}

.ready-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.ready-card h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.ready-card p {
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.ready-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.nav-link.active {
    color: #667eea;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: var(--space-xl);
    margin-bottom: var(--space-md);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
}

.faq-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.faq-item a {
    color: #667eea;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Legal Content */
.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: #34495e;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem 0;
}

.legal-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.legal-content ul {
    color: #555;
    line-height: 1.6;
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #667eea;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Word Categories */
.word-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: var(--space-xl) 0;
}

.category-card {
    background: #f8f9fa;
    padding: var(--space-lg);
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #667eea;
}

.category-card h4 {
    color: #667eea;
    margin-bottom: var(--space-md);
    font-size: 1.2rem;
}

.category-card p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Featured Game Section */
.featured-game-section {
    padding: var(--space-3xl) var(--space-md);
    background: var(--gray-50);
    margin-bottom: 0;
}

.featured-game-section .game-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 10px;
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.featured-game-section h2 {
    font-size: 1.8rem;
    margin-bottom: var(--space-xl);
    color: #2c3e50;
}

.game-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    background: transparent;
    border-radius: 0;
    padding: 20px 0;
}

.game-info p {
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

/* Game Section */
.game-section {
    padding: 2rem 1rem;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.game-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

/* Game Board */
.game-board {
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    gap: 5px;
    margin: 0 auto 1rem auto;
    width: fit-content;
    padding: 1rem;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    overflow-x: auto;
    justify-content: center;
    align-items: center;
}

.game-row {
    display: flex;
    gap: clamp(2px, 0.5vw, 8px);
    justify-content: center;
    width: 100%;
    max-width: calc(100vw - 20px);
    overflow-x: visible;
    margin: 0 auto;
}

/* Larger gaps for shorter words - increased for bigger cells */
.game-row.letters-4,
.game-row.letters-5,
.game-row.letters-6 {
    gap: clamp(6px, 1.2vw, 15px);
}

/* Dynamic responsive sizing for different word lengths */

.game-cell {
    flex: 1;
    aspect-ratio: 1;
    max-width: 70px;
    min-width: 18px;
    border: 2px solid #d3d6da;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.7rem, 4vw, 2.2rem);
    font-weight: 700;
    text-transform: uppercase;
    background: #ffffff;
    transition: all 0.2s ease;
    cursor: pointer;
    color: #000000;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
}

.game-cell:not(:empty) {
    border-color: #878a8c;
    animation: zoom 0.2s ease;
}

.game-cell.filled {
    border-color: #565758;
}

@keyframes zoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Different max-width for different word lengths - 50% larger */
.game-row.letters-4 .game-cell {
    max-width: 135px;
    min-width: 68px;
    font-size: clamp(1.8rem, 6vw, 3.2rem);
}

.game-row.letters-5 .game-cell {
    max-width: 128px;
    min-width: 64px;
    font-size: clamp(1.7rem, 5.8vw, 3rem);
}

.game-row.letters-6 .game-cell {
    max-width: 113px;
    min-width: 57px;
    font-size: clamp(1.5rem, 5.5vw, 2.8rem);
}

.game-row.letters-7 .game-cell,
.game-row.letters-8 .game-cell {
    max-width: 60px;
    font-size: clamp(0.8rem, 3.5vw, 1.8rem);
}

.game-row.letters-9 .game-cell,
.game-row.letters-10 .game-cell,
.game-row.letters-11 .game-cell {
    max-width: 50px;
    font-size: clamp(0.7rem, 3vw, 1.5rem);
}

/* Responsive cell sizing for longer words */
.game-row.letters-7 .game-cell,
.game-row.letters-8 .game-cell {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
}

.game-row.letters-9 .game-cell,
.game-row.letters-10 .game-cell {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
}

.game-row.letters-11 .game-cell {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

/* Enhanced centering for longer word games */
.game-board {
    max-width: 100%;
}

/* Specific adjustments for 10 and 11 letter games */
.game-row.letters-10,
.game-row.letters-11 {
    justify-content: center;
    justify-items: center;
}

/* Game section centering improvements */
.game-section .game-container,
.featured-game-section .game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.game-cell:not(:empty) {
    border-color: #6b7280;
    color: #1f2937;
}

.game-cell.cell-correct {
    background: #6aaa64;
    color: white;
    border-color: #6aaa64;
}

.game-cell.cell-present {
    background: #c9b458;
    color: white;
    border-color: #c9b458;
}

.game-cell.cell-absent {
    background: #787c7e;
    color: white;
    border-color: #787c7e;
}

.game-cell.flip {
    animation: flip 0.6s ease-in-out;
}

/* Keyboard */
.keyboard {
    margin: 15px auto;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.keyboard-row {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 6px;
    width: 100%;
    max-width: 100%;
}

.keyboard-key {
    background: #d3d6da;
    color: #000000;
    border: none;
    border-radius: 4px;
    padding: 12px 8px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 43px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.keyboard-key:hover {
    background: #9ca3af;
}

.keyboard-key.wide-key {
    min-width: 65px;
    font-size: 12px;
}

.keyboard-key.key-correct {
    background: #6aaa64;
    color: white;
}

.keyboard-key.key-present {
    background: #c9b458;
    color: white;
}

.keyboard-key.key-absent {
    background: #787c7e;
    color: white;
}

/* Game Controls */
.game-controls {
    margin-top: 30px;
    display: flex;
    gap: 16px;
    justify-content: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #6aaa64;
    color: white;
}

.btn-primary:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 212, 191, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: #6aaa64;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 212, 191, 0.4);
}

/* Hints Container */
.hints-container {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 142, 83, 0.05) 100%);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    display: none;
}

.hints-title {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.hints-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hint-item {
    background: var(--white);
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    border-left: 4px solid var(--primary);
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: 0 2px 4px rgba(45, 212, 191, 0.1);
    animation: slideInHint 0.3s ease-out;
}

.hint-item:last-child {
    margin-bottom: 0;
}

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

/* Content Section */
.content-section {
    max-width: 800px;
    margin: var(--space-3xl) auto var(--space-xl) auto;
    padding: 0 var(--space-md);
}

.content-container {
    background: white;
    padding: var(--space-3xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.content-container h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: var(--space-xl);
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.content-container h3 {
    font-size: 1.5rem;
    color: var(--text-medium);
    margin: var(--space-xl) 0 var(--space-md) 0;
    border-bottom: 2px solid var(--primary);
    padding-bottom: var(--space-sm);
    letter-spacing: -0.01em;
    font-weight: 600;
}

.content-container p {
    margin-bottom: var(--space-lg);
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.content-container ul, .content-container ol {
    margin: var(--space-md) 0 var(--space-xl) var(--space-xl);
}

.content-container li {
    margin-bottom: var(--space-sm);
    color: var(--text-light);
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.content-container strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: white;
    margin-top: var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-md) var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-section h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    font-weight: 600;
    letter-spacing: -0.005em;
}

.footer-section p {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    letter-spacing: 0.01em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

/* Footer Social Media */
.footer-social {
    text-align: center;
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(79, 70, 229, 0.1);
}

.footer-social h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    font-weight: 600;
    letter-spacing: -0.005em;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--light-gray);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.social-icon.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #E4405F, #F56040, #FFAD33);
    border-color: #E4405F;
}

.social-icon.twitter:hover {
    background: #000000;
    border-color: #000000;
}

.social-icon.pinterest:hover {
    background: #E60023;
    border-color: #E60023;
}

.social-icon svg {
    transition: transform 0.2s ease;
}

.social-icon:hover svg {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .social-icons {
        gap: var(--space-sm);
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding-top: var(--space-md);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-primary);
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

/* Animations */
@keyframes flip {
    0% { transform: rotateY(0); }
    50% { transform: rotateY(90deg); }
    100% { transform: rotateY(0); }
}

.game-tile.reveal {
    animation: flip 0.6s ease-in-out;
}

@keyframes shake {
    0%, 20%, 40%, 60%, 80%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
}

.game-row.invalid {
    animation: shake 0.5s ease-in-out;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    /* Mobile: 4-6 letters 50% larger */
    .game-row.letters-4 .game-cell {
        max-width: 105px !important;
        min-width: 53px !important;
        font-size: clamp(1.5rem, 5.5vw, 2.8rem) !important;
    }
    
    .game-row.letters-5 .game-cell {
        max-width: 98px !important;
        min-width: 49px !important;
        font-size: clamp(1.4rem, 5.2vw, 2.6rem) !important;
    }
    
    .game-row.letters-6 .game-cell {
        max-width: 87px !important;
        min-width: 44px !important;
        font-size: clamp(1.3rem, 5vw, 2.4rem) !important;
    }
    
    /* Mobile specific adjustments for long words */
    .game-row.letters-9 .game-cell,
    .game-row.letters-10 .game-cell,
    .game-row.letters-11 .game-cell {
        max-width: 32px !important;
        min-width: 16px !important;
        font-size: clamp(0.6rem, 2.8vw, 1.2rem) !important;
    }
    
    .game-row.letters-7 .game-cell,
    .game-row.letters-8 .game-cell {
        max-width: 40px !important;
        min-width: 18px !important;
        font-size: clamp(0.7rem, 3.2vw, 1.4rem) !important;
    }
    
    /* Tighter spacing for long words on mobile */
    .game-row.letters-9,
    .game-row.letters-10,
    .game-row.letters-11 {
        gap: clamp(0px, 0.3vw, 2px) !important;
    }
    
    .navbar {
        height: 60px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        margin: 0;
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .options-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-md);
    }
    
    .option-card {
        padding: var(--space-lg);
    }
    
    .option-number {
        font-size: 2.5rem;
    }
    
    .game-cell {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
    }
    
    /* Responsive design handled by flex layout */
    
    /* Mobile centering enhancements */
    .game-board {
        justify-self: center;
        align-self: center;
    }
    
    .game-row.letters-10,
    .game-row.letters-11 {
        justify-self: center;
        width: 100%;
        max-width: fit-content;
        margin: 0 auto;
    }
    
    .keyboard {
        max-width: 100%;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .keyboard-key {
        padding: 10px 4px;
        font-size: 10px;
        min-width: 30px;
        height: 48px;
        flex: 1;
        max-width: 45px;
    }
    
    .keyboard-key.wide-key {
        min-width: 45px;
        font-size: 9px;
        flex: 1.5;
    }
    
    .content-container {
        padding: var(--space-xl);
        margin: 2rem 1rem;
    }
    
    .content-container h2 {
        font-size: 1.8rem;
    }
    
    .content-container h3 {
        font-size: 1.3rem;
    }
    
    .game-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .game-section {
        padding: 1rem 0.5rem;
    }
    
    /* Mobile 480px: 4-6 letters still large but fit screen */
    .game-row.letters-4 .game-cell {
        max-width: 90px !important;
        min-width: 45px !important;
        font-size: clamp(1.3rem, 5vw, 2.4rem) !important;
    }
    
    .game-row.letters-5 .game-cell {
        max-width: 85px !important;
        min-width: 43px !important;
        font-size: clamp(1.2rem, 4.8vw, 2.2rem) !important;
    }
    
    .game-row.letters-6 .game-cell {
        max-width: 75px !important;
        min-width: 38px !important;
        font-size: clamp(1.1rem, 4.5vw, 2rem) !important;
    }
    
    /* Extra mobile adjustments for longest words */
    .game-row.letters-10 .game-cell,
    .game-row.letters-11 .game-cell {
        max-width: 28px !important;
        min-width: 14px !important;
        font-size: clamp(0.5rem, 2.5vw, 1rem) !important;
    }
    
    .game-row.letters-9 .game-cell {
        max-width: 30px !important;
        min-width: 15px !important;
        font-size: clamp(0.55rem, 2.7vw, 1.1rem) !important;
    }
    
    /* Minimal gap for longest words */
    .game-row.letters-10,
    .game-row.letters-11 {
        gap: clamp(0px, 0.2vw, 1px) !important;
    }
    
    .game-cell {
        width: 46px;
        height: 46px;
        font-size: 1.4rem;
    }
    
    /* Auto-responsive design */
    
    /* Extra small screen centering */
    .game-board {
        padding: 0.5rem;
        margin: 0 auto 1rem auto;
    }
    
    .game-row.letters-10,
    .game-row.letters-11 {
        justify-content: center;
        justify-items: center;
        margin: 0 auto;
    }
    
    .keyboard {
        max-width: 100%;
        width: 100%;
        padding: 0 8px;
    }
    
    .keyboard-key {
        min-width: 28px;
        height: 44px;
        padding: 8px 3px;
        font-size: 9px;
        flex: 1;
        max-width: 40px;
    }
    
    .keyboard-key.wide-key {
        min-width: 42px;
        font-size: 8px;
        flex: 1.5;
    }
    
    .content-container {
        padding: var(--space-lg);
    }
    
    .content-container p {
        font-size: 1rem;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #e5e5e5;
    }
    
    .game-cell {
        background: #2d2d2d;
        border-color: #4a4a4a;
        color: #e5e5e5;
    }
    
    .content-container {
        background: #2d2d2d;
        color: #e5e5e5;
    }
    
    .content-container h2, .content-container h3 {
        color: #f1f1f1;
    }
    
    .content-container p, .content-container li {
        color: #d1d1d1;
    }
}

/* Accessibility */
/* Ultra small screens (320px and below) */
@media (max-width: 320px) {
    /* Ultra-compact layout for longest words */
    .game-row.letters-11 .game-cell {
        max-width: 24px !important;
        min-width: 12px !important;
        font-size: clamp(0.45rem, 2.2vw, 0.8rem) !important;
        border-width: 1px !important;
    }
    
    .game-row.letters-10 .game-cell {
        max-width: 26px !important;
        min-width: 13px !important;
        font-size: clamp(0.5rem, 2.4vw, 0.9rem) !important;
        border-width: 1px !important;
    }
    
    .game-row.letters-9 .game-cell {
        max-width: 28px !important;
        min-width: 14px !important;
        font-size: clamp(0.55rem, 2.6vw, 1rem) !important;
    }
    
    /* Zero gap for ultra-compact layout */
    .game-row.letters-11 {
        gap: 0px !important;
    }
    
    .game-row.letters-10 {
        gap: clamp(0px, 0.1vw, 1px) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .game-cell.flip,
    .game-row.invalid,
    .btn-primary:hover,
    .btn-secondary:hover,
    .keyboard-key:hover {
        animation: none;
        transform: none;
    }
}

/* Contact Page Styles */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
}

.contact-card {
    background: white;
    padding: var(--space-xl);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

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

.contact-form {
    background: white;
    padding: var(--space-xl);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: var(--space-xl) 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin: 1rem 0;
}

.quick-link-card {
    background: #f8f9fa;
    padding: var(--space-lg);
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease;
}

.quick-link-card:hover {
    background: #e9ecef;
}

/* About Page Styles */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
}

.feature-card {
    background: white;
    padding: var(--space-xl);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-section {
    background: #f8f9fa;
    padding: var(--space-xl);
    border-radius: 12px;
    text-align: center;
    margin: var(--space-xl) 0;
}

/* Blog Page Styles */
.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-xl);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.blog-post:hover {
    box-shadow: var(--shadow-warm);
    transform: translateY(-2px);
}

.blog-post.featured-post {
    border-left: 5px solid var(--primary);
    position: relative;
}

.featured-post::before {
    content: "✨ Featured Article";
    position: absolute;
    top: -10px;
    right: 20px;
    background: #6aaa64;
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.post-content-preview {
    margin: var(--space-xl) 0;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.post-content-preview.collapsed {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.post-content-preview.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, white);
}

.post-content-preview h4 {
    color: var(--text-dark);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    font-size: 1.3rem;
    letter-spacing: -0.01em;
    font-weight: 600;
}

.post-content-preview h5 {
    color: var(--text-medium);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
    letter-spacing: -0.005em;
    font-weight: 600;
}

.post-content-preview ul, 
.post-content-preview ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-xl);
}

.post-content-preview li {
    margin-bottom: var(--space-sm);
    letter-spacing: 0.01em;
}

.read-more {
    text-align: center;
    margin-top: var(--space-xl);
}

.toggle-content {
    transition: all 0.3s ease;
}

.toggle-content:hover {
    transform: translateY(-2px);
}

.post-title-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.post-title-link:hover {
    color: var(--primary);
}

.post-excerpt {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #667eea;
}

.reading-time {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-left: 1rem;
}

.read-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
}

/* Article Page Styles */
.article-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0 2rem;
    text-align: center;
}

.article-header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.breadcrumb {
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    font-weight: 700;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.article-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.article-content {
    background: white;
    padding: var(--space-xl);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.article-content h2 {
    color: #333;
    margin-top: 2.5rem;
    margin-bottom: var(--space-md);
    font-size: 1.8rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content h3 {
    color: #555;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    font-size: 1.4rem;
}

.article-content p {
    margin-bottom: var(--space-md);
}

.article-content ul, 
.article-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-conclusion {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.article-tags {
    margin-bottom: var(--space-xl);
}

.article-tags h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.share-article h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.article-share-buttons {
    display: flex;
    gap: var(--space-md);
    margin-top: 0.5rem;
}

.share-btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.twitter { background: #1DA1F2; }
.share-btn.facebook { background: #4267B2; }
.share-btn.email { background: #34495e; }

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.related-articles,
.article-toc {
    background: white;
    padding: var(--space-lg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.related-articles h3,
.article-toc h3 {
    margin-bottom: var(--space-md);
    color: #333;
    font-size: 1.2rem;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.related-item {
    padding: 1rem;
    border-radius: 8px;
    background: #f8f9fa;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease;
}

.related-item:hover {
    background: #e9ecef;
}

.related-item h4 {
    margin-bottom: 0.5rem;
    color: #667eea;
}

.related-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.article-toc ul {
    list-style: none;
    padding: 0;
}

.article-toc li {
    margin-bottom: 0.5rem;
}

.article-toc a {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.25rem 0;
    display: block;
    border-radius: 4px;
    padding-left: 0.5rem;
    transition: background-color 0.3s ease;
}

.article-toc a:hover {
    background: #f0f0f0;
    padding-left: 1rem;
}

/* Mobile responsiveness for article pages */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .article-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .article-content {
        padding: var(--space-lg);
    }
    
    .article-share-buttons {
        flex-direction: column;
    }
    
    .read-more {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

.post-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.post-category {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #FF9A7B 100%);
    color: white;
    padding: var(--space-3xl) 0;
    margin-bottom: var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-background {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    margin-top: var(--space-xl);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Blog Content Layout */
.blog-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-3xl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Featured Articles Grid */
.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
    grid-column: 1 / -1;
}

.featured-article {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.main-feature {
    display: flex;
    flex-direction: column;
}

.article-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    position: relative;
    z-index: 2;
}

.wordle-tiles {
    display: flex;
    gap: 8px;
}

.tile {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 4px;
    color: white;
}

.tile.correct { background: #6aaa64; }
.tile.present { background: #c9b458; }
.tile.absent { background: #787c7e; }

.article-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 3;
}

.article-content {
    padding: var(--space-xl);
    flex: 1;
}

.post-title-link {
    color: #333;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: var(--space-md);
    display: block;
    transition: color 0.3s ease;
}

.post-title-link:hover {
    color: #667eea;
}

.article-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-highlights {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: var(--space-lg);
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.article-highlights h4 {
    margin-bottom: var(--space-md);
    color: #333;
}

.article-highlights ul {
    margin: 0;
    padding-left: 1.5rem;
}

.article-highlights li {
    margin-bottom: 0.5rem;
    color: #555;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-xl);
    padding-top: 1.5rem;
    border-top: 2px solid rgba(79, 70, 229, 0.1);
    background: var(--light-gray);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.btn-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    color: white;
}

.social-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: scale(1.2);
}

/* Featured Sidebar */
.featured-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.featured-mini {
    background: white;
    border-radius: 12px;
    padding: var(--space-lg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.featured-mini:hover {
    transform: translateY(-3px);
}

.mini-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.featured-mini h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.featured-mini p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: var(--space-md);
}

.mini-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.mini-link:hover {
    color: #764ba2;
}

/* Blog Posts Grid */
.blog-posts-grid {
    grid-column: 1 / 2;
}

.section-title {
    font-size: 2rem;
    margin-bottom: var(--space-xl);
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.posts-container {
    display: grid;
    gap: var(--space-xl);
}

.blog-post.modern {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    gap: var(--space-xl);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.blog-post.modern:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-warm);
}

.post-thumbnail {
    flex-shrink: 0;
    width: 120px;
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-content {
    color: white;
    font-size: 2rem;
}

.post-category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-category-badge.advanced { background: #e74c3c; color: white; }
.post-category-badge.science { background: #3498db; color: white; }
.post-category-badge.beginner { background: #27ae60; color: white; }
.post-category-badge.vocabulary { background: #9b59b6; color: white; }
.post-category-badge.wellness { background: #1abc9c; color: white; }
.post-category-badge.tech { background: #34495e; color: white; }

.post-content {
    flex: 1;
    padding: var(--space-lg);
    padding-left: 0;
}

.post-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: block;
    transition: color 0.3s ease;
}

.post-link:hover {
    color: #667eea;
}

.read-more-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #764ba2;
}

/* Blog Sidebar */
.blog-sidebar {
    grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.sidebar-section {
    background: white;
    border-radius: 12px;
    padding: var(--space-lg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.sidebar-section h3 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.2rem;
}

/* Quick Tips */
.quick-tips {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.tip-number {
    background: #667eea;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.tip-item p {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Category List */
.category-list.modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: #f8f9fa;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.category-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.category-icon {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.category-info {
    flex: 1;
}

.category-name {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.category-count {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Newsletter Card */
.newsletter-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: var(--space-lg);
    border-radius: 12px;
    text-align: center;
}

.newsletter-card p {
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.newsletter-form.compact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: var(--space-md);
}

.newsletter-form.compact input {
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
}

.newsletter-form.compact .btn-gradient {
    background: white;
    color: #667eea;
    padding: 0.75rem;
    font-weight: 600;
}

.newsletter-form.compact .btn-gradient:hover {
    background: #f8f9fa;
    transform: none;
    box-shadow: none;
}

.newsletter-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Trending List */
.trending-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: #f8f9fa;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.trending-item:hover {
    background: #e9ecef;
}

.trend-rank {
    background: #667eea;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.trend-title {
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .blog-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-post.modern {
        flex-direction: column;
        gap: 0;
    }
    
    .post-thumbnail {
        width: 100%;
        height: 120px;
    }
    
    .post-content {
        padding: var(--space-lg);
    }
    
    .article-footer {
        flex-direction: column;
        gap: var(--space-md);
        align-items: stretch;
    }
    
    .social-share {
        justify-content: center;
    }
}

.tag {
    background: #f1f3f4;
    color: #5f6368;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.category-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin: 1rem 0;
}

.category-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: var(--space-md);
    max-width: 400px;
    margin: 1rem 0;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
}

/* Share Page Styles */
.share-content {
    max-width: 800px;
    margin: 0 auto;
}

.social-share-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: transform 0.3s ease;
    text-align: center;
    justify-content: center;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.social-btn.twitter { background: #000000; }
.social-btn.facebook { background: #1877F2; }
.social-btn.instagram { background: linear-gradient(45deg, #F56040, #FFDC80, #C13584, #405DE6); }
.social-btn.pinterest { background: #BD081C; }
.social-btn.linkedin { background: #0A66C2; }
.social-btn.reddit { background: #FF4500; }
.social-btn.whatsapp { background: #25D366; }
.social-btn.telegram { background: #0088CC; }

.social-icon {
    font-size: 1.2rem;
}

.link-copy-container {
    display: flex;
    gap: var(--space-md);
    margin: 1rem 0;
    max-width: 500px;
}

.link-copy-container input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    background: #f8f9fa;
}

.copy-success {
    color: #22c55e;
    font-weight: 500;
    margin-top: 0.5rem;
}

.email-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: var(--space-xl) 0;
}

.reason-card {
    background: white;
    padding: var(--space-lg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.reason-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: var(--space-xl) 0;
}

.tip-item {
    background: white;
    padding: var(--space-lg);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.thank-you-section {
    background: #f8f9fa;
    padding: var(--space-xl);
    border-radius: 12px;
    text-align: center;
    margin: var(--space-xl) 0;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: 1.5rem;
}

/* Mobile responsiveness for new pages */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-links {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .social-share-buttons {
        grid-template-columns: 1fr;
    }
    
    .link-copy-container {
        flex-direction: column;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Game Message */
.game-message {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    z-index: 1000;
    display: none;
    min-width: 200px;
    text-align: center;
}

/* How to Play Step-by-Step Guide Styles */
.gameplay-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
}

/* Force horizontal layout for letter tiles - highest priority */
.example-row,
.step-item .example-row,
.gameplay-steps .example-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.5rem !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
}

.example-tile,
.step-item .example-tile,
.gameplay-steps .example-tile {
    display: inline-flex !important;
    flex-direction: row !important;
    width: 50px !important;
    height: 50px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
}

.step-item {
    display: block;
    padding: var(--space-xl);
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #667eea;
    margin-bottom: var(--space-xl);
}

.step-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.step-content {
    flex: 1;
    position: relative;
}

.step-number {
    background: #667eea;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

.step-tip {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.feedback-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feedback-list li {
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid transparent;
}

.feedback-list li:first-child {
    border-left-color: #6aaa64;
}

.feedback-list li:nth-child(2) {
    border-left-color: #c9b458;
}

.feedback-list li:nth-child(3) {
    border-left-color: #787c7e;
}

.feedback-green { color: #6aaa64; font-weight: bold; }
.feedback-yellow { color: #c9b458; font-weight: bold; }
.feedback-gray { color: #787c7e; font-weight: bold; }

.strategy-points {
    list-style: none;
    padding-left: 0;
}

.strategy-points li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.strategy-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.gameplay-summary {
    background: #f8fafc;
    padding: var(--space-xl);
    border-radius: 12px;
    margin-top: var(--space-xl);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.summary-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.summary-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.summary-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Example Gameplay Styles */
.example-container {
    background: white;
    padding: var(--space-xl);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: var(--space-xl) 0;
}

.gameplay-example {
    margin: var(--space-xl) 0;
}

.attempt-example {
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.attempt-example h4 {
    color: #2c3e50;
    margin-bottom: var(--space-md);
}

.attempt-analysis {
    margin-top: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 6px;
    font-size: 0.9rem;
}

.attempt-analysis p {
    margin-bottom: 0.5rem;
}

.strategy-breakdown {
    background: #f0f9ff;
    padding: var(--space-lg);
    border-radius: 8px;
    margin-top: var(--space-xl);
}

.breakdown-list {
    list-style: none;
    padding: 0;
}

.breakdown-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.breakdown-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Advanced Gameplay Techniques */
.technique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: var(--space-xl) 0;
}

.technique-card {
    background: white;
    padding: var(--space-lg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #667eea;
}

.technique-card h3 {
    color: #2c3e50;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.word-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.word-tag {
    background: #667eea;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.technique-tip {
    font-style: italic;
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.technique-list {
    list-style: none;
    padding: 0;
}

.technique-list li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.technique-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.pattern-examples {
    margin: 1rem 0;
}

.pattern-item {
    background: #f8fafc;
    padding: 0.8rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Common Scenarios */
.scenario-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: var(--space-xl) 0;
}

.scenario-item {
    background: white;
    padding: var(--space-lg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #10b981;
}

.scenario-item h3 {
    color: #2c3e50;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.scenario-example {
    background: #f0fdf4;
    border: 1px solid #10b981;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Mobile Responsiveness for How-to-Play */
@media (max-width: 768px) {
    .step-item {
        padding: var(--space-lg);
        margin-bottom: 1.5rem;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .step-header h3 {
        margin: 0;
    }
    
    .technique-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .word-list {
        justify-content: center;
    }
    
    .example-row {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.3rem;
        justify-content: center;
    }
    
    .example-tile {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        display: inline-flex !important;
    }
    
    .feedback-list li {
        flex-direction: column;
        text-align: left;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .example-tile {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Enhanced FAQ Page Styles */
.faq-search {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-search input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
}

.category-btn:hover,
.category-btn.active {
    background: #667eea;
    border-color: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.faq-section {
    margin-bottom: 3rem;
}

.section-title {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: var(--space-xl);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: var(--space-md);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: var(--space-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
    border-bottom-color: #e5e7eb;
}

.faq-question h3 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.faq-icon {
    background: #667eea;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    display: none;
    color: #4b5563;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Color Examples Styling */
.color-examples {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: 1rem 0;
    background: #f8fafc;
    padding: var(--space-lg);
    border-radius: 8px;
}

.color-demo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 0.8rem;
    background: white;
    border-radius: 6px;
    border-left: 4px solid transparent;
}

.color-demo:nth-child(1) { border-left-color: #6aaa64; }
.color-demo:nth-child(2) { border-left-color: #c9b458; }
.color-demo:nth-child(3) { border-left-color: #787c7e; }

.demo-tile {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

/* Starting Words Styling */
.starting-words {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: var(--space-lg);
    border-radius: 12px;
    margin: 1rem 0;
    color: white;
}

.word-recommendation strong {
    display: block;
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
}

.word-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.word-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.word-tag.premium {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
}

/* Strategy Breakdown */
.strategy-breakdown {
    display: grid;
    gap: 1.5rem;
    margin: 1rem 0;
}

.strategy-step {
    background: #f8fafc;
    padding: var(--space-lg);
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.strategy-step h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Length Strategies */
.length-strategies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin: 1rem 0;
}

.length-strategy {
    background: white;
    padding: var(--space-lg);
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.length-strategy:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.length-strategy h4 {
    color: #667eea;
    margin-bottom: 0.8rem;
}

/* Improvement Tips */
.improvement-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0;
}

.tip-category {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: var(--space-lg);
    border-radius: 12px;
    color: white;
    text-align: center;
}

.tip-category h4 {
    margin-bottom: var(--space-md);
    font-size: 1.2rem;
}

/* Device Compatibility */
.device-compatibility {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: 1rem 0;
}

.device-type {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #10b981;
}

/* Feature Steps */
.feature-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0;
}

.step {
    text-align: center;
    background: white;
    padding: var(--space-lg);
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: #667eea;
    transform: translateY(-2px);
}

.step-number {
    background: #667eea;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem auto;
}

/* Educational Benefits */
.educational-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0;
}

.benefit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: var(--space-lg);
    border-radius: 12px;
    color: white;
    text-align: center;
}

.benefit h4 {
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
}

/* Advanced Challenges */
.advanced-challenges {
    display: grid;
    gap: var(--space-md);
    margin: 1rem 0;
}

.challenge-option {
    background: #f8fafc;
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

/* Rules List */
.rules-list {
    list-style: none;
    padding: 0;
}

.rules-list li {
    padding: 0.8rem;
    background: #f8fafc;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    border-left: 4px solid #10b981;
    position: relative;
    padding-left: 2rem;
}

.rules-list li:before {
    content: "✓";
    position: absolute;
    left: 0.8rem;
    color: #10b981;
    font-weight: bold;
}

/* Contact Section */
.faq-contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.faq-contact h3 {
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.faq-contact p {
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.contact-btn {
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Mobile Responsiveness for FAQ */
@media (max-width: 768px) {
    .faq-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .category-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .color-examples {
        padding: 1rem;
    }
    
    .color-demo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .word-tags {
        justify-content: center;
    }
    
    .improvement-tips,
    .educational-benefits,
    .length-strategies {
        grid-template-columns: 1fr;
    }
    
    .feature-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-contact {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .feature-steps {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
}

/* Instagram Modal Styles */
.instagram-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.instagram-modal .modal-content {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.instagram-modal h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.instagram-modal p {
    margin-bottom: var(--space-md);
    color: var(--gray-600);
}

.instagram-modal ol {
    text-align: left;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.instagram-modal ol li {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.instagram-modal button {
    margin-top: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Social share grid improvements */
.social-share-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
    .social-share-buttons {
        grid-template-columns: 1fr;
    }
    
    .instagram-modal .modal-content {
        padding: var(--space-lg);
        width: 95%;
    }
}

/* Privacy Policy Styles */
.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.privacy-summary {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 142, 83, 0.05) 100%);
    border-radius: 16px;
    padding: var(--space-xl);
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.summary-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.summary-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.summary-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.summary-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

.last-updated {
    text-align: center;
    margin: var(--space-xl) 0;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.privacy-sections {
    space-y: 3rem;
}

.privacy-section {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 16px;
    margin-bottom: var(--space-xl);
    box-shadow: 0 4px 20px rgba(45, 212, 191, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.privacy-section h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.highlight-box {
    background: rgba(255, 107, 53, 0.05);
    border-left: 4px solid var(--primary);
    padding: var(--space-lg);
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-category {
    margin-bottom: var(--space-xl);
}

.info-category h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
}

.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--gray-100);
}

.styled-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.usage-item {
    background: rgba(255, 107, 53, 0.05);
    padding: var(--space-lg);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.usage-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.usage-item p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookies-explanation {
    background: var(--gray-50);
    padding: var(--space-lg);
    border-radius: 12px;
    margin-top: 1rem;
}

.cookie-types {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.cookie-type {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.cookie-type h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cookie-type p {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.third-party-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.service-card {
    background: rgba(255, 107, 53, 0.05);
    padding: var(--space-lg);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.service-card h4 {
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    font-size: 1.2rem;
}

.service-card p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.service-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.service-card a:hover {
    text-decoration: underline;
}

.rights-container {
    margin-top: 1rem;
}

.rights-list {
    display: grid;
    gap: var(--space-md);
    margin-top: 1.5rem;
}

.right-item {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 107, 53, 0.05);
    padding: var(--space-lg);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.right-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.right-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.right-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

.children-policy {
    background: var(--gray-50);
    padding: var(--space-lg);
    border-radius: 12px;
    margin-top: 1rem;
}

.contact-info {
    margin-top: 1rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-option {
    background: rgba(255, 107, 53, 0.05);
    padding: var(--space-lg);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.contact-option h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-option p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.contact-option a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-option a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness for Privacy Policy */
@media (max-width: 768px) {
    .privacy-content {
        padding: 1rem;
    }
    
    .privacy-summary {
        padding: var(--space-lg);
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .privacy-section {
        padding: var(--space-lg);
    }
    
    .usage-grid,
    .third-party-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
}

/* Terms of Service Styles */
.terms-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-xl);
}

.terms-summary {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 142, 83, 0.05) 100%);
    border-radius: 16px;
    padding: var(--space-xl);
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.terms-summary h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
}

.terms-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.terms-section {
    background: white;
    border-radius: 12px;
    padding: var(--space-xl);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.terms-section h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
    padding-bottom: 0.5rem;
}

.terms-section h3 {
    color: var(--text-medium);
    margin-bottom: var(--space-md);
    font-size: 1.3rem;
}

.terms-section h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.terms-section p {
    line-height: 1.6;
    margin-bottom: var(--space-md);
    color: #555;
}

.service-description,
.service-commitment {
    margin-bottom: var(--space-xl);
}

.service-commitment {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 142, 83, 0.05) 100%);
    padding: var(--space-lg);
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
}

.responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.responsibility-item {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 142, 83, 0.05) 100%);
    padding: var(--space-lg);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    text-align: center;
}

.responsibility-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.responsibility-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.ip-explanation {
    margin-top: 1rem;
}

.ip-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.ip-category {
    background: white;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: var(--space-lg);
    transition: all 0.3s ease;
}

.ip-category:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ip-category h4 {
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
}

.ip-category p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.limitations-container {
    margin-top: 1rem;
}

.limitation-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.limitation-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 142, 83, 0.05) 100%);
    padding: var(--space-lg);
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
}

.limitation-icon {
    font-size: 1.5rem;
    min-width: 2rem;
    text-align: center;
}

.limitation-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.limitation-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.privacy-link-section {
    margin-top: 1rem;
}

.privacy-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.5rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 142, 83, 0.05) 100%);
    padding: var(--space-lg);
    border-radius: 12px;
}

.privacy-point {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #555;
    font-size: 0.95rem;
}

.privacy-emoji {
    font-size: 1.2rem;
    min-width: 1.5rem;
    text-align: center;
}

.privacy-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.privacy-cta:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.changes-policy {
    margin-top: 1rem;
}

.changes-policy h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.change-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.change-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: var(--space-lg);
    transition: all 0.3s ease;
}

.change-step:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.step-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.dispute-section {
    margin-top: 1rem;
}

.dispute-section h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.resolution-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.resolution-option {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 142, 83, 0.05) 100%);
    padding: var(--space-lg);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    text-align: center;
}

.resolution-option h4 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.resolution-option p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Mobile Responsiveness for Terms */
@media (max-width: 768px) {
    .terms-content {
        padding: 1rem;
    }
    
    .terms-summary {
        padding: var(--space-lg);
        margin-bottom: var(--space-xl);
    }
    
    .terms-section {
        padding: var(--space-lg);
    }
    
    .responsibilities-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .ip-categories {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .change-process {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .resolution-steps {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .limitation-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
}