:root {
    --primary: #FF6B9D;
    --secondary: #C06C84;
    --accent: #F67280;
    --bg: #FFF5F7;
    --card-bg: #FFFFFF;
    --text: #2D3436;
    --text-light: #636E72;
    --success: #00B894;
    --danger: #D63031;
    --border: #FFE0E8;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.tagline {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Screens */
.screen {
    display: none;
}

.screen.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

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

/* Cards */
.card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.15);
    margin-bottom: 30px;
}

.welcome h2 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.welcome p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Hero Section */
.hero-section {
    margin-bottom: 40px;
}

.emoji-header {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 30px;
}

/* How It Works */
.how-it-works {
    background: var(--bg);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
}

.how-it-works h3 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 20px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Gender Select */
.gender-select {
    display: grid;
    gap: 12px;
    margin: 25px 0;
}

.btn-gender {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 18px 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-gender:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.3);
}

.btn-gender:active {
    transform: translateY(0);
}

.btn-gender .emoji {
    font-size: 1.5rem;
}

.btn-gender .text {
    font-size: 1.1rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.trust-badges .badge {
    background: #E8F5E9;
    color: var(--success);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Quick Links / Category Grid */
.quick-links {
    margin: 40px 0;
}

.quick-links h3 {
    text-align: center;
    color: var(--text);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.category-card {
    background: white;
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
    border: 2px solid var(--border);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
    border-color: var(--primary);
}

.category-card .emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.category-card h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Swipe Screen Header */
.swipe-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-back {
    background: white;
    border: 2px solid var(--border);
    padding: 10px 20px;
    border-radius: 10px;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.btn-back:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Progress Indicator */
.progress-indicator {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.like-counter {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
}

.names-remaining {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Name Card */
.card-stack {
    perspective: 1000px;
    margin-bottom: 30px;
}

.name-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 25px;
    padding: 60px 30px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.3);
    transition: transform 0.3s ease;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
}

.name-card.flipped .name-meta,
.name-card.flipped #current-name {
    opacity: 0.3;
}

.name-card.flipped .name-meaning {
    display: block !important;
}

.name-card.swipe-left {
    animation: swipeLeft 0.3s ease-out;
}

.name-card.swipe-right {
    animation: swipeRight 0.3s ease-out;
}

@keyframes swipeLeft {
    to {
        transform: translateX(-150%) rotate(-20deg);
        opacity: 0;
    }
}

@keyframes swipeRight {
    to {
        transform: translateX(150%) rotate(20deg);
        opacity: 0;
    }
}

.card-corner {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.3;
}

.card-corner.top-left { top: 15px; left: 15px; }
.card-corner.top-right { top: 15px; right: 15px; }
.card-corner.bottom-left { bottom: 15px; left: 15px; }
.card-corner.bottom-right { bottom: 15px; right: 15px; }

.name-display {
    width: 100%;
}

#current-name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: opacity 0.3s ease;
}

.name-meta {
    display: flex;
    gap: 15px;
    justify-content: center;
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}

.name-meta span {
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 15px;
}

.name-meaning {
    display: none;
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
}

.name-meaning p {
    margin: 8px 0;
    font-size: 1rem;
}

.name-meaning strong {
    font-weight: 700;
}

.btn-flip {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.2s;
}

.btn-flip:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

/* Action Buttons */
.button-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.btn-action {
    flex: 1;
    border: none;
    padding: 18px 10px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-action .icon {
    font-size: 1.5rem;
}

.btn-action .text {
    font-size: 0.85rem;
}

.btn-dislike {
    background: #FFE5E5;
    color: var(--danger);
}

.btn-dislike:hover {
    background: #FFD0D0;
    transform: scale(1.05);
}

.btn-like {
    background: #FFE0E8;
    color: var(--primary);
}

.btn-like:hover {
    background: #FFD0DC;
    transform: scale(1.05);
}

.btn-undo {
    background: #FFF3E0;
    color: #F57C00;
}

.btn-undo:hover:not(:disabled) {
    background: #FFE0B2;
    transform: scale(1.05);
}

.btn-undo:active {
    transform: scale(0.95);
}

.btn-undo:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* Keyboard Hint */
.keyboard-hint {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 15px;
    padding: 10px;
    background: white;
    border-radius: 8px;
}

/* Favorites Preview */
.favorites-preview {
    background: linear-gradient(135deg, #FFF5F7, #FFE0E8);
    padding: 20px;
    border-radius: 15px;
    margin-top: 30px;
    border: 2px solid var(--primary);
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.1);
    animation: slideIn 0.3s ease-out;
}

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

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.preview-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.btn-clear-all {
    background: rgba(214, 48, 49, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-clear-all:hover {
    background: var(--danger);
    color: white;
}

.preview-names {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.preview-names span {
    background: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(255, 107, 157, 0.1);
    animation: popIn 0.2s ease-out;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.btn-remove {
    background: rgba(214, 48, 49, 0.1);
    border: none;
    color: var(--danger);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

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

/* View Results Button */
.btn-view-results {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
}

.btn-view-results:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.btn-view-results:active {
    transform: translateY(0);
}

/* Results */
.results-header {
    text-align: center;
    margin-bottom: 30px;
}

.results-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 15px;
}

.results-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.favorites-list {
    list-style: none;
    margin: 25px 0;
}

.favorites-list li {
    background: var(--bg);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.favorites-list .rank {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.favorites-list .name-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.favorites-list small {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
}

.btn-remove-result {
    background: rgba(214, 48, 49, 0.1);
    border: none;
    color: var(--danger);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-remove-result:hover {
    background: var(--danger);
    color: white;
    transform: scale(1.1);
}

.share-section {
    background: var(--bg);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    text-align: center;
}

.share-section h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.share-section p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.btn-share,
.btn-email {
    background: #25D366;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    margin: 5px;
}

.btn-share:hover {
    background: #1DA851;
    transform: translateY(-2px);
}

.btn-email {
    background: #4285F4;
}

.btn-email:hover {
    background: #3367D6;
    transform: translateY(-2px);
}

.btn-share .icon,
.btn-email .icon {
    font-size: 1.3rem;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.btn-secondary {
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

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

.btn-restart {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-restart:hover {
    opacity: 0.9;
}

.more-links {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px dashed var(--border);
    text-align: center;
}

.more-links h4 {
    color: var(--text);
    margin-bottom: 15px;
}

.more-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.more-links a:hover {
    text-decoration: underline;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.links-grid a {
    background: var(--bg);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.2s;
}

.links-grid a:hover {
    background: var(--primary);
    color: white;
}

/* SEO Content */
.seo-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.seo-content h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.seo-content h3 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.seo-content h4 {
    color: var(--text);
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

.seo-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.seo-content ul {
    margin-left: 20px;
}

.seo-content li {
    margin-bottom: 8px;
    color: var(--text-light);
}

/* SEO Article (for landing pages) */
.seo-article {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.seo-article h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.seo-article h3 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.seo-article h4 {
    color: var(--text);
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

.seo-article p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Name Columns */
.name-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.compact-list {
    background: var(--bg);
    padding: 20px 20px 20px 40px;
    border-radius: 12px;
    margin: 15px 0;
}

.compact-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.compact-list strong {
    color: var(--primary);
    font-size: 1.05rem;
}

/* Top Names */
.top-names {
    background: var(--bg);
    padding: 25px 25px 25px 45px;
    border-radius: 15px;
    margin: 20px 0;
}

.top-names li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.top-names strong {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Benefits List */
.benefits-list {
    background: linear-gradient(135deg, #FFF5F7, #FFE0E8);
    padding: 25px 25px 25px 45px;
    border-radius: 15px;
    margin: 20px 0;
    border-left: 4px solid var(--primary);
}

.benefits-list li {
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Tips List */
.tips-list {
    background: #E8F5E9;
    padding: 25px 25px 25px 45px;
    border-radius: 15px;
    margin: 20px 0;
    border-left: 4px solid var(--success);
}

.tips-list li {
    margin-bottom: 10px;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.tip-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.tip-card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.1);
}

.tip-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tip-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Trends List */
.trends-list {
    background: #E3F2FD;
    padding: 25px 25px 25px 45px;
    border-radius: 15px;
    margin: 20px 0;
    border-left: 4px solid #2196F3;
}

.trends-list li {
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Steps List */
.steps-list {
    background: var(--bg);
    padding: 20px 20px 20px 40px;
    border-radius: 12px;
    margin: 20px 0;
}

.steps-list li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.steps-list strong {
    color: var(--primary);
}

/* CTA Text */
.cta-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 30px 0;
}

/* Feature Badges */
.feature-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.badge {
    background: var(--bg);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Hint */
.hint {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* FAQ Section */
.faq {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
}

.faq h2 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Ad Container */
.ad-container {
    margin: 40px 0;
    padding: 20px;
    background: white;
    border-radius: 15px;
    min-height: 100px;
    text-align: center;
}

.ad-label {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.page-footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
    border-top: 2px solid var(--border);
    margin-top: 60px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 5px;
}

.footer-tagline {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.footer-nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

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

.copyright {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    #current-name {
        font-size: 2.5rem;
    }
    
    .card {
        padding: 30px 20px;
    }
    
    .name-card {
        min-height: 280px;
        padding: 40px 20px;
    }
    
    .seo-content,
    .seo-article {
        padding: 25px 20px;
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .name-columns {
        grid-template-columns: 1fr;
    }
    
    .top-names,
    .tips-list,
    .benefits-list,
    .trends-list {
        padding: 20px 20px 20px 35px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .emoji-header {
        font-size: 3rem;
    }
    
    .results-emoji {
        font-size: 3rem;
    }
    
    .swipe-header {
        flex-wrap: wrap;
    }
    
    .btn-back {
        order: 2;
        width: 100%;
    }
    
    .progress-indicator {
        order: 1;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .btn-action {
        padding: 15px 8px;
    }
    
    .btn-action .text {
        font-size: 0.75rem;
    }
    
    .btn-action .icon {
        font-size: 1.3rem;
    }
    
    .like-counter {
        font-size: 0.95rem;
        padding: 8px 18px;
    }
    
    .btn-view-results {
        font-size: 1.1rem;
        padding: 16px;
    }
    
    .btn-share,
    .btn-email {
        width: 100%;
        margin: 5px 0;
    }
}