/* Adjective Menu - Page-specific styles */

/* Page-specific styles */
        @media print {
            .category { page-break-inside: avoid; }
            .modal { display: none !important; }
        }

        body {
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
        }

        h1 {
            font-size: 36px;
        }

        .subtitle {
            font-size: 18px;
            margin-top: 15px;
        }

        .intro {
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .intro p {
            margin-bottom: 15px;
        }

        .categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .category {
            background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .category:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-color: #34495e;
        }

        .category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), transparent);
        }

        .category-header {
            margin-bottom: 20px;
        }

        .category-title {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .category-description {
            font-size: 14px;
            color: #7f8c8d;
            font-style: italic;
            line-height: 1.5;
        }

        .adjectives {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        .adjective {
            background: white;
            border: 1px solid #ddd;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            color: #555;
            transition: all 0.2s ease;
            cursor: pointer;
            position: relative;
        }

        .adjective::after {
            content: '👁';
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--accent-color);
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .adjective:hover::after {
            opacity: 1;
        }

        .category:hover .adjective {
            border-color: var(--accent-color);
            color: var(--accent-color);
        }

        .adjective:hover {
            background: var(--accent-color);
            color: white;
            border-color: var(--accent-color);
            transform: scale(1.05);
        }

        .custom-option {
            margin-top: 50px;
            padding: 30px;
            background: #ecf0f1;
            border-radius: 8px;
            text-align: center;
        }

        .custom-option h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .custom-option p {
            color: #7f8c8d;
            font-size: 15px;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 1000;
            overflow-y: auto;
            padding: 40px 20px;
        }

        .modal.active {
            display: block;
        }

        .modal-content {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            padding: 40px;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 32px;
            color: #95a5a6;
            cursor: pointer;
            background: none;
            border: none;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            background: #ecf0f1;
            color: #34495e;
        }

        .modal-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 3px solid var(--accent-color);
        }

        .modal-title {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .modal-category {
            font-size: 14px;
            color: #7f8c8d;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .pose-examples {
            display: grid;
            gap: 30px;
        }

        .pose-example {
            border-left: 4px solid var(--accent-color);
            padding-left: 20px;
        }

        .pose-type {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent-color);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .pose-description {
            font-size: 15px;
            line-height: 1.7;
            color: #555;
            margin-bottom: 12px;
        }

        .pose-note {
            font-size: 13px;
            color: #7f8c8d;
            font-style: italic;
            background: #f8f9fa;
            padding: 12px;
            border-radius: 6px;
            margin-top: 10px;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 28px;
            }

            .categories {
                grid-template-columns: 1fr;
            }

            .modal {
                padding: 20px 10px;
            }

            .modal-content {
                padding: 50px 20px 30px;
                border-radius: 8px;
                max-height: calc(100vh - 40px);
                overflow-y: auto;
            }

            .modal-close {
                top: 10px;
                right: 10px;
                font-size: 28px;
                width: 36px;
                height: 36px;
                background: rgba(0,0,0,0.05);
            }

            .modal-title {
                font-size: 24px;
            }

            .modal-header {
                margin-bottom: 20px;
                padding-bottom: 15px;
            }

            .pose-example {
                padding-left: 15px;
            }
        }
