/* Base Styles */
:root {
    --primary-color: #ff6b9d;
    --secondary-color: #c44569;
    --accent-color: #f8b500;
    --background-color: #fef7f0;
    --card-bg: rgba(255, 255, 255, 0.9);
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --border-radius: 20px;
    --box-shadow: 0 15px 35px rgba(255, 107, 157, 0.15);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --gradient-primary: linear-gradient(135deg, #ff6b9d, #c44569, #f8b500);
    --gradient-secondary: linear-gradient(135deg, #f093fb, #f5576c, #4facfe);
    --gradient-accent: linear-gradient(135deg, #43e97b, #38f9d7, #667eea);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    --gradient-hero: linear-gradient(135deg, #ff9a9e, #fecfef, #fecfef, #a8edea);
    --whimsical-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(45deg, #fef7f0, #fff5f5, #f0f9ff, #fef7f0);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 69, 105, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(248, 181, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

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

a:hover {
    color: var(--secondary-color);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background-image: url('https://images.unsplash.com/photo-1639322537228-f710d846310a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1932&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '✨';
    position: absolute;
    top: 10%;
    left: 10%;
    font-size: 3rem;
    animation: sparkle 4s ease-in-out infinite;
    z-index: 3;
}

.hero::after {
    content: '🌟';
    position: absolute;
    top: 20%;
    right: 15%;
    font-size: 2.5rem;
    animation: sparkle 3s ease-in-out infinite reverse;
    z-index: 3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.8), rgba(196, 69, 105, 0.8), rgba(248, 181, 0, 0.8));
    z-index: 1;
    animation: gradientAnimation 20s ease infinite;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 20%;
    left: 80%;
    animation: bubble1 8s ease-in-out infinite;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 30%;
    left: 10%;
    animation: bubble2 10s ease-in-out infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes sparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.3) rotate(180deg);
        opacity: 1;
    }
}

@keyframes bubble1 {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-30px) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes bubble2 {
    0%, 100% { 
        transform: translateX(0px) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translateX(20px) scale(0.9);
        opacity: 0.7;
    }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-2deg); }
    25% { transform: rotate(2deg); }
    50% { transform: rotate(-1deg); }
    75% { transform: rotate(1deg); }
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #fff, #ffeaa7, #fab1a0, #fd79a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wiggle 6s ease-in-out infinite;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: float 4s ease-in-out infinite;
}

.search-container {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.2);
    position: relative;
    animation: searchGlow 3s ease-in-out infinite;
}

.search-container::before {
    content: '🔍';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: searchFloat 4s ease-in-out infinite;
}

@keyframes searchGlow {
    0%, 100% { 
        box-shadow: 0 15px 40px rgba(255, 107, 157, 0.2);
    }
    50% { 
        box-shadow: 0 20px 50px rgba(248, 181, 0, 0.3);
    }
}

@keyframes searchFloat {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    50% { transform: translateY(-60%) rotate(10deg); }
}

.search-container input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    color: white;
    font-size: 1rem;
}

.search-container input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.search-container button {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 15px 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-container button:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Directory Controls */
.directory-controls {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 245, 245, 0.95));
    padding: 25px 0;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 107, 157, 0.1);
    position: relative;
}

.directory-controls::before {
    content: '🎛️';
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: controlsWiggle 3s ease-in-out infinite;
}

@keyframes controlsWiggle {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    25% { transform: translateY(-55%) rotate(5deg); }
    75% { transform: translateY(-45%) rotate(-5deg); }
}

.directory-controls .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filters {
    display: flex;
    gap: 15px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.filter-group select {
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid rgba(255, 107, 157, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 245, 245, 0.9));
    min-width: 160px;
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
    font-weight: 500;
}

.filter-group select:hover {
    border-color: var(--primary-color);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.2);
}

.filter-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.2);
    animation: selectGlow 0.6s ease;
}

@keyframes selectGlow {
    0% { box-shadow: 0 0 0 0px rgba(248, 181, 0, 0.4); }
    100% { box-shadow: 0 0 0 8px rgba(248, 181, 0, 0); }
}

.view-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-btn {
    padding: 12px;
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition);
    background: rgba(255, 107, 157, 0.1);
    position: relative;
    overflow: hidden;
}

.view-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.view-btn:hover::before {
    width: 40px;
    height: 40px;
}

.view-btn:hover, .view-btn.active {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
    animation: viewBtnDance 0.6s ease;
}

@keyframes viewBtnDance {
    0%, 100% { transform: scale(1.1) rotate(5deg); }
    25% { transform: scale(1.15) rotate(-3deg); }
    75% { transform: scale(1.08) rotate(8deg); }
}

.compare-toggle {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.compare-toggle input {
    margin-right: 5px;
}

/* Directory Listing */
.directory-listing {
    padding: 60px 0;
    position: relative;
}

.directory-listing::before {
    content: '🚀';
    position: absolute;
    top: 20px;
    right: 5%;
    font-size: 2rem;
    animation: rocket 8s linear infinite;
    z-index: 1;
}

.directory-listing::after {
    content: '⭐';
    position: absolute;
    bottom: 20px;
    left: 3%;
    font-size: 1.5rem;
    animation: twinkle 5s ease-in-out infinite;
    z-index: 1;
}

@keyframes rocket {
    0% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(50px) rotate(10deg); }
    50% { transform: translateX(0) rotate(0deg); }
    75% { transform: translateX(-30px) rotate(-5deg); }
    100% { transform: translateX(0) rotate(0deg); }
}

@keyframes twinkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.4) rotate(180deg);
        opacity: 1;
    }
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0;
    max-width: 1400px;
    margin: 0 auto;
    transform: none;
    rotate: 0deg;
    align-items: stretch;
    justify-items: stretch;
}

/* Generated Images */
.generated-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.generated-image .image-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.generated-image h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    margin: 0;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

/* Varying fonts for each product */
.fractal-id h2 {
    font-family: 'Georgia', serif;
    font-style: italic;
    transform: rotate(1deg);
    letter-spacing: 2px;
}

.polygon-id h2 {
    font-family: 'Courier New', monospace;
    font-weight: 900;
    transform: rotate(-3deg);
    text-transform: uppercase;
}

.tally h2 {
    font-family: 'Impact', sans-serif;
    transform: rotate(2deg);
    letter-spacing: 3px;
}

.snapshot h2 {
    font-family: 'Comic Sans MS', cursive;
    transform: rotate(-1deg);
    font-size: 2rem;
}

.hyperlane h2 {
    font-family: 'Times New Roman', serif;
    font-style: italic;
    transform: rotate(3deg);
    letter-spacing: 1px;
}

.axelar h2 {
    font-family: 'Arial Black', sans-serif;
    transform: rotate(-2deg);
    text-transform: lowercase;
}

.anchain h2 {
    font-family: 'Trebuchet MS', sans-serif;
    transform: rotate(1deg);
    font-weight: 800;
}

.quillshield h2 {
    font-family: 'Palatino', serif;
    font-style: italic;
    transform: rotate(-3deg);
    letter-spacing: 2px;
}

.socket h2 {
    font-family: 'Verdana', sans-serif;
    transform: rotate(2deg);
    font-weight: 900;
}

.spruceid h2 {
    font-family: 'Garamond', serif;
    transform: rotate(-1deg);
    letter-spacing: 3px;
}

.galxe h2 {
    font-family: 'Helvetica', sans-serif;
    font-weight: 300;
    transform: rotate(3deg);
    text-transform: uppercase;
}

.juicebox h2 {
    font-family: 'Brush Script MT', cursive;
    transform: rotate(-2deg);
    font-size: 2.2rem;
}

.aragon h2 {
    font-family: 'Lucida Console', monospace;
    transform: rotate(1deg);
    letter-spacing: 4px;
}

.squid h2 {
    font-family: 'Papyrus', fantasy;
    transform: rotate(-3deg);
    font-size: 2rem;
}

.trailofbits h2 {
    font-family: 'Century Gothic', sans-serif;
    transform: rotate(2deg);
    font-weight: 600;
}

.apillon h2 {
    font-family: 'Book Antiqua', serif;
    font-style: italic;
    transform: rotate(-1deg);
}

.uniblock h2 {
    font-family: 'Tahoma', sans-serif;
    transform: rotate(3deg);
    text-transform: capitalize;
}

.outerbridge h2 {
    font-family: 'Rockwell', serif;
    transform: rotate(-2deg);
    letter-spacing: 1px;
}

.disco h2 {
    font-family: 'Marker Felt', fantasy;
    transform: rotate(1deg);
    font-size: 2.1rem;
}

.trugard h2 {
    font-family: 'Optima', sans-serif;
    transform: rotate(-3deg);
    font-weight: 700;
}

.image-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}

/* Unique patterns for each tool */
.fractal-id {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.fractal-id .image-pattern {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.2) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
}

.polygon-id {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
}

.polygon-id .polygon-pattern {
    background-image: 
        linear-gradient(30deg, rgba(255,255,255,0.1) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.1) 87.5%, rgba(255,255,255,0.1)),
        linear-gradient(150deg, rgba(255,255,255,0.1) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.1) 87.5%, rgba(255,255,255,0.1));
    background-size: 80px 140px;
}

.tally {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
}

.tally .tally-pattern {
    background-image: 
        repeating-linear-gradient(45deg, rgba(255,255,255,0.1) 0px, rgba(255,255,255,0.1) 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(-45deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 20px);
}

.snapshot {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.snapshot .snapshot-pattern {
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2) 1px, transparent 1px);
    background-size: 25px 25px;
    animation: float 6s ease-in-out infinite;
}

.hyperlane {
    background: linear-gradient(135deg, #FA709A 0%, #FEE140 100%);
}

.hyperlane .hyperlane-pattern {
    background-image: 
        linear-gradient(90deg, rgba(255,255,255,0.1) 50%, transparent 50%),
        linear-gradient(rgba(255,255,255,0.05) 50%, transparent 50%);
    background-size: 20px 20px, 40px 40px;
}

.axelar {
    background: linear-gradient(135deg, #A8EDEA 0%, #FED6E3 100%);
}

.axelar .axelar-pattern {
    background-image: 
        conic-gradient(from 0deg at 50% 50%, rgba(255,255,255,0.1) 0deg, transparent 60deg, rgba(255,255,255,0.1) 120deg, transparent 180deg, rgba(255,255,255,0.1) 240deg, transparent 300deg);
    background-size: 60px 60px;
}

.anchain {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.anchain .anchain-pattern {
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.1) 75%);
    background-size: 30px 30px;
}

.quillshield {
    background: linear-gradient(135deg, #FD746C 0%, #FF9068 100%);
}

.quillshield .quillshield-pattern {
    background-image: 
        repeating-conic-gradient(from 0deg at 50% 50%, rgba(255,255,255,0.1) 0deg 30deg, transparent 30deg 60deg);
    background-size: 40px 40px;
}

.socket {
    background: linear-gradient(135deg, #36D1DC 0%, #5B86E5 100%);
}

.socket .socket-pattern {
    background-image: 
        radial-gradient(ellipse at center, rgba(255,255,255,0.15) 1px, transparent 1px),
        radial-gradient(ellipse at center, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 15px 15px, 45px 45px;
}

.spruceid {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.spruceid .spruceid-pattern {
    background-image: 
        linear-gradient(60deg, rgba(255,255,255,0.1) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,0.1) 75%, rgba(255,255,255,0.1)),
        linear-gradient(120deg, rgba(255,255,255,0.1) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,0.1) 75%, rgba(255,255,255,0.1));
    background-size: 50px 87px;
}

.galxe {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.galxe .galxe-pattern {
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.1), rgba(255,255,255,0.1) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.1) 1px, transparent 1px, transparent 40px);
}

.juicebox {
    background: linear-gradient(135deg, #FFA726 0%, #FB8C00 100%);
}

.juicebox .juicebox-pattern {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.2) 3px, transparent 3px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.15) 2px, transparent 2px);
    background-size: 60px 60px, 40px 40px;
}

.aragon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.aragon .aragon-pattern {
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.1) 50%, transparent 50%);
    background-size: 20px 20px;
}

.squid {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.squid .squid-pattern {
    background-image: 
        repeating-radial-gradient(circle at 0% 50%, transparent 0px, rgba(255,255,255,0.1) 10px, rgba(255,255,255,0.1) 20px, transparent 30px, transparent 40px),
        repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(255,255,255,0.05) 4px, rgba(255,255,255,0.05) 8px);
}

.trailofbits {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.trailofbits .trailofbits-pattern {
    background-image: 
        linear-gradient(135deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(225deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(315deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%);
    background-size: 40px 40px;
}

.apillon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.apillon .apillon-pattern {
    background-image: 
        repeating-conic-gradient(rgba(255,255,255,0.1) 0deg 15deg, transparent 15deg 30deg);
    background-size: 50px 50px;
}

.uniblock {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.uniblock .uniblock-pattern {
    background-image: 
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 25px 25px;
}

.outerbridge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.outerbridge .outerbridge-pattern {
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(255,255,255,0.1) 50%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255,255,255,0.1) 50%, transparent 50%);
    background-size: 30px 60px;
}

.disco {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.disco .disco-pattern {
    background-image: 
        repeating-linear-gradient(45deg, rgba(255,255,255,0.1) 0px, rgba(255,255,255,0.1) 2px, transparent 2px, transparent 12px),
        repeating-linear-gradient(-45deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 2px, transparent 2px, transparent 12px);
}

.trugard {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.trugard .trugard-pattern {
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.1) 26%, transparent 27%, transparent 74%, rgba(255,255,255,0.1) 75%, rgba(255,255,255,0.1) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.1) 26%, transparent 27%, transparent 74%, rgba(255,255,255,0.1) 75%, rgba(255,255,255,0.1) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Tool Card */
.tool-card {
    background: var(--gradient-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--whimsical-shadow);
    transition: var(--transition);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 107, 157, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform: none;
    rotate: 0deg;
}

.tool-card:nth-child(even) {
    transform: none;
    rotate: 0deg;
}

.tool-card:nth-child(3n) {
    transform: none;
    rotate: 0deg;
}

.tool-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 107, 157, 0.25);
    border-color: rgba(248, 181, 0, 0.4);
}

@keyframes floating {
    0%, 100% { 
        transform: translateY(0px); 
    }
    33% { 
        transform: translateY(0px); 
    }
    66% { 
        transform: translateY(0px); 
    }
}

.tool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.tool-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    animation: badgeShimmer 4s ease-in-out infinite;
}

.tool-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s linear infinite;
}

@keyframes badgeShimmer {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.tool-actions {
    display: flex;
    gap: 10px;
}

.compare-btn {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.compare-btn::before {
    content: '✨';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.compare-btn:hover {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
    animation: pulse 0.6s ease;
}

.compare-btn:hover::before {
    top: -15px;
    opacity: 1;
    animation: sparkleUp 0.6s ease;
}

@keyframes pulse {
    0% { transform: scale(1.1) rotate(5deg); }
    50% { transform: scale(1.2) rotate(-2deg); }
    100% { transform: scale(1.1) rotate(5deg); }
}

@keyframes sparkleUp {
    0% { transform: translateX(-50%) translateY(0px); opacity: 0; }
    50% { transform: translateX(-50%) translateY(-10px); opacity: 1; }
    100% { transform: translateX(-50%) translateY(-20px); opacity: 0; }
}

.tool-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.tool-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tool-card:hover .tool-image img {
    transform: scale(1.05);
}

.tool-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tool-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.tool-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.tool-summary {
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.6;
}

.tool-features {
    margin-bottom: 20px;
}

.tool-features h4, .tool-evaluation h4, .tool-pricing h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.tool-features ul, .pros ul, .cons ul, .tool-pricing ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.tool-features ul li, .pros ul li, .cons ul li, .tool-pricing ul li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 5px;
}

.tool-features ul li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.tool-evaluation {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.pros, .cons {
    flex: 1;
}

.pros h4 {
    color: #2ecc71;
}

.cons h4 {
    color: #e74c3c;
}

.pros ul li:before {
    content: "✓";
    color: #2ecc71;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.cons ul li:before {
    content: "✗";
    color: #e74c3c;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.tool-pricing {
    margin-bottom: 20px;
}

.tool-conclusion {
    margin-bottom: 20px;
}

.tool-conclusion p {
    font-style: italic;
    color: var(--text-color);
}

.tool-link {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: auto;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--whimsical-shadow);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.tool-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.tool-link:hover::before {
    left: 100%;
}

.tool-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.4);
    color: white;
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(-5px) scale(1.05); }
    40% { transform: translateY(-8px) scale(1.08); }
    60% { transform: translateY(-3px) scale(1.03); }
}

.tool-link i {
    margin-left: 5px;
    font-size: 0.9rem;
}

/* List View */
.tools-list .tool-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    grid-template-rows: auto;
}

.tools-list .tool-image {
    height: 100%;
    grid-row: span 2;
}

.tools-list .tool-header {
    grid-column: 2;
}

.tools-list .tool-content {
    grid-column: 2;
}

/* Comparison Modal */
.comparison-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.comparison-content {
    background: white;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--box-shadow);
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.comparison-header h2 {
    font-size: 1.5rem;
    color: var(--text-color);
}

.close-modal {
    font-size: 1.5rem;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: pointer;
}

.comparison-table-container {
    padding: 20px;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.tool-column {
    min-width: 200px;
}

/* EEAT/BIO Section */
.eeat-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffeaa7, #fab1a0, #fd79a8, #fdcb6e);
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    position: relative;
    overflow: hidden;
}

.eeat-section::before {
    content: '👩‍💻';
    position: absolute;
    top: 30px;
    right: 5%;
    font-size: 3rem;
    animation: authorFloat 7s ease-in-out infinite;
}

.eeat-section::after {
    content: '🎯 💡 🔮';
    position: absolute;
    bottom: 30px;
    left: 3%;
    font-size: 1.5rem;
    letter-spacing: 20px;
    animation: skillsRotate 8s linear infinite;
}

@keyframes authorFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-20px) rotate(10deg);
        opacity: 1;
    }
}

@keyframes skillsRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.eeat-image {
    flex: 0 0 300px;
}

.eeat-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.eeat-bio {
    flex: 1;
}

.eeat-bio h2 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.eeat-bio h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.eeat-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.eeat-bio p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.eeat-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.eeat-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.eeat-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
}

/* Transparency Notice */
.transparency-notice {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 245, 245, 0.9));
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.transparency-notice::before {
    content: '🤖';
    position: absolute;
    top: 20px;
    left: 3%;
    font-size: 2.5rem;
    animation: robotBlink 4s ease-in-out infinite;
}

.transparency-notice::after {
    content: '🧠 ⚡ 🔍';
    position: absolute;
    bottom: 20px;
    right: 5%;
    font-size: 1.3rem;
    letter-spacing: 15px;
    animation: brainPulse 5s ease-in-out infinite;
}

@keyframes robotBlink {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.3; }
}

@keyframes brainPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.1);
        opacity: 1;
    }
}

.transparency-notice h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.transparency-notice p {
    color: var(--text-light);
    line-height: 1.7;
    max-width: 900px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '💌';
    position: absolute;
    top: 20px;
    left: 10%;
    font-size: 3rem;
    animation: mailFloat 6s ease-in-out infinite;
}

.newsletter-section::after {
    content: '📬';
    position: absolute;
    bottom: 20px;
    right: 8%;
    font-size: 2.5rem;
    animation: mailboxWiggle 4s ease-in-out infinite;
}

@keyframes mailFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(-5deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-15px) rotate(5deg);
        opacity: 1;
    }
}

@keyframes mailboxWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    75% { transform: rotate(-3deg); }
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    background: white;
    color: var(--primary-color);
    padding: 15px 25px;
    border: none;
    font-weight: 500;
}

.newsletter-form button:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2d3748, #4a5568, #2d3748);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '🌙';
    position: absolute;
    top: 30px;
    right: 10%;
    font-size: 2rem;
    animation: moonGlow 8s ease-in-out infinite;
}

footer::after {
    content: '⭐ ✨ 🌟';
    position: absolute;
    top: 50px;
    left: 5%;
    font-size: 1rem;
    animation: starsFloat 10s ease-in-out infinite;
    letter-spacing: 20px;
}

@keyframes moonGlow {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.1);
        opacity: 1;
        filter: brightness(1.2);
    }
}

@keyframes starsFloat {
    0%, 100% { 
        transform: translateY(0px);
        opacity: 0.6;
    }
    33% { 
        transform: translateY(-10px);
        opacity: 0.9;
    }
    66% { 
        transform: translateY(-5px);
        opacity: 0.7;
    }
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: socialSpin 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px) scale(1.1);
    animation: socialBounce 0.8s ease;
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
}

@keyframes socialSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes socialBounce {
    0%, 100% { transform: translateY(-5px) scale(1.1); }
    25% { transform: translateY(-8px) scale(1.15) rotate(5deg); }
    75% { transform: translateY(-3px) scale(1.05) rotate(-3deg); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .eeat-content {
        flex-direction: column;
        text-align: center;
    }
    
    .eeat-image {
        flex: 0 0 auto;
        max-width: 250px;
        margin: 0 auto 30px;
    }
    
    .eeat-social {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-column {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 400px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .directory-controls .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .filters {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tool-evaluation {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 350px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .search-container {
        flex-direction: column;
        border-radius: var(--border-radius);
    }
    
    .search-container input {
        width: 100%;
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }
    
    .search-container button {
        width: 100%;
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }
    
    .filters {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-group select {
        width: 100%;
    }
    
    .tool-card {
        border-radius: var(--border-radius);
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
}

/* Whimsical Cursor Effects */
body {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="8" fill="%23ff6b9d" opacity="0.8"/><text x="10" y="14" text-anchor="middle" fill="white" font-size="10">✨</text></svg>'), auto;
}

a, button {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="8" fill="%23f8b500" opacity="0.9"/><text x="10" y="14" text-anchor="middle" fill="white" font-size="10">👆</text></svg>'), pointer;
}

/* Whimsical Section Dividers */
.directory-controls::after {
    content: '🎨 🔧 ⚡ 🌈';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    letter-spacing: 15px;
    animation: colorShift 6s ease-in-out infinite;
}

@keyframes colorShift {
    0%, 100% { filter: hue-rotate(0deg); }
    33% { filter: hue-rotate(120deg); }
    66% { filter: hue-rotate(240deg); }
}

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

.tool-card {
    animation: fadeIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.tools-grid .tool-card:nth-child(1) { animation-delay: 0.1s; }
.tools-grid .tool-card:nth-child(2) { animation-delay: 0.2s; }
.tools-grid .tool-card:nth-child(3) { animation-delay: 0.3s; }
.tools-grid .tool-card:nth-child(4) { animation-delay: 0.4s; }
.tools-grid .tool-card:nth-child(5) { animation-delay: 0.5s; }
.tools-grid .tool-card:nth-child(6) { animation-delay: 0.6s; }
.tools-grid .tool-card:nth-child(7) { animation-delay: 0.7s; }
.tools-grid .tool-card:nth-child(8) { animation-delay: 0.8s; }
.tools-grid .tool-card:nth-child(9) { animation-delay: 0.9s; }
.tools-grid .tool-card:nth-child(10) { animation-delay: 1.0s; }
.tools-grid .tool-card:nth-child(11) { animation-delay: 1.1s; }
.tools-grid .tool-card:nth-child(12) { animation-delay: 1.2s; }
.tools-grid .tool-card:nth-child(13) { animation-delay: 1.3s; }
.tools-grid .tool-card:nth-child(14) { animation-delay: 1.4s; }
.tools-grid .tool-card:nth-child(15) { animation-delay: 1.5s; }
.tools-grid .tool-card:nth-child(16) { animation-delay: 1.6s; }
.tools-grid .tool-card:nth-child(17) { animation-delay: 1.7s; }
.tools-grid .tool-card:nth-child(18) { animation-delay: 1.8s; }
.tools-grid .tool-card:nth-child(19) { animation-delay: 1.9s; }
.tools-grid .tool-card:nth-child(20) { animation-delay: 2.0s; }

   /* Hide tool titles */
   .tool-content h3 {
       display: none;
   }

/* Return Button */
.return-button {
    position: fixed;
    top: 2rem;
    left: 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    z-index: 100;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--whimsical-shadow);
}

.return-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 107, 157, 0.3);
    background: var(--gradient-secondary);
}

.return-button::before {
    content: '←';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.return-button:hover::before {
    transform: translateX(-3px);
}

@media (max-width: 768px) {
    .return-button {
        top: 1rem;
        left: 1rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}